:root {
    --primary-color: #fbad41;
    --text-color: #333;
    --bg-color: #fff;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background-color: #1b1311;
    color: white;
    padding: 1rem 1rem;
    text-align: center;
}

header h1{
    font-size: 2rem;
    font-weight: bold;
}

video {
    max-width: 400px;
}

.highlight {
    color: var(--primary-color);
}

.hero {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-card {
    max-width: 600px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.player-card img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(147, 157, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

footer {
    color: white;
    padding: 2rem 1rem;
    background-color: #1b1311;
    background-image: url("assets/images/grade.svg");
    background-position: center;
    padding-top: 64px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    color: var(--text-color);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        display: inline-block;
        padding: 0.1em;
        margin: 15px;
        line-height: 35px;
    }

    .footer-links a{
        padding: 0.4em;
    }

    .disclaimer {
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    .price-card {
        width: 100%;
        max-width: 340px;
    }
    
    .price-card.featured {
        transform: scale(1.05); /* Mantém o scale mesmo em mobile */
        margin: 20px 0; /* Adiciona margem para evitar sobreposição */
    }
    .guarantee-section {
        padding: 3rem 1rem;
    }

    .guarantee-seal img{
        max-width: 400px;
    }

    .guarantee-content h2 {
        font-size: 2rem;
    }

    .guarantee-content p {
        font-size: 1rem;
    }
    .order-now {
        padding: 1.5rem 2rem !important;
    }
}

@media (max-width: 480px) {
    .play-button {
        padding: 0.5rem 1rem;
    }

    .play-button h2 {
        font-size: 1rem;
    }
}

/* section hide */


.offer-section {
    padding: 40px 20px;
    background-color: #fff;
}

.special-offer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.special-offer h2 {
    color: #ef4c23;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.special-offer .subtitle {
    color: #555;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0; /* Adiciona padding para evitar corte do card featured */
    position: relative; /* Importante para o z-index funcionar */
}

.price-card {
    width: 340px;
    background-color: #FFF8F3;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    border: 2px solid transparent; /* Borda inicial invisível */
    transition: transform 0.8s ease, border-color 0.8s ease; /* Transição suave pra borda e escala */
    position: relative; /* Importante para o z-index funcionar */
    cursor: pointer;
}

.price-card:hover {
    border: 2px solid #ef4c23;
}

.price-card.featured {
    border: 2px solid #ef4c23;
    transition: transform 0.8s ease; /* Suavidade na transição */
}

.price-card.featured:hover {
    border: 2px solid #ef4c23;
    transform: scale(1.05);
    z-index: 1; /* Garante que o card featured fique sobre os outros */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Opcional: adiciona sombra para mais destaque */
}


.card-header {
    background-color: #fbad41;
    color: white;
    padding: 5px 15px;
    font-size: 2rem;
    font-weight: 600;
}

.price-card.featured .card-header {
    background-color: #ef4c23;
}

.price-card h3 {
    font-size: 2.5em;
    margin: 20px 0;
}

.best-value {
    color: #00A300;
}

.product-image {
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.price-info {
    padding: 20px;
    text-align: center;
}

.regular-price {
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.strikethrough {
    text-decoration: line-through;
    color: #000;
    text-decoration-color: red;
    font-weight: bold;
}

.current-price {
    margin: 15px 0;
}

.current-price .price {
    font-size: 3rem;
    font-weight: bold;
    
}

.current-price .per {
    color: #666;
    font-size: 1.5rem;
}

.total {
    margin: 10px 0;
    font-size: 1.25rem;
}

.shipping {
    margin: 10px 0;
    font-size: 1.25rem;
}

.shipping .plus {
    color: #eb8e21;
    font-weight: bold;
    font-size: 1.25rem;
}

.shipping .free {
    color: #00A300;
    font-weight: bold;
}


.add-to-cart {
    background: none;
    border: none;
    padding: 0;
    margin: 20px auto;
    width: 80%;
    display: block;
}

.add-to-cart img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.8s ease; /* Suavidade na transição */
}

.add-to-cart img:hover {
    transform: scale(1.05);
    z-index: 1; /* Garante que o card featured fique sobre os outros */
}

.payment-methods {
    padding: 10px 20px;
}

.payment-methods img {
    max-width: 100%;
    height: auto;
}

/* Responsividade */
@media (max-width: 1100px) {
    .pricing-cards {
        gap: 10px;
    }
    
    .price-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .price-card {
        width: 100%;
        max-width: 340px;
    }
    
    .price-card.featured {
        transform: none;
    }
}



/* Seção de Garantia */
.guarantee-section {
    margin-top: 150px;
    background-color: #ef4c23;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    background-image: linear-gradient(rgba(211, 211, 211, 0.1) 2px, transparent 1px),
                      linear-gradient(90deg, rgba(211, 211, 211, 0.1) 2px, transparent 1px);
    background-size: 35px 45px;
}

.guarantee-seal {
    margin: 0 auto;
    position: relative;
}

.guarantee-seal img {
    margin-top: -190px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    line-height: 60px;
    text-transform: uppercase;
}

.guarantee-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-now {
    background: #00c853;
    color: white;
    border: none;
    padding: 1.5rem 8rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    transition: background 0.3s;
    transition: transform 0.3s ease; /* Adiciona transição suave */
    position: relative; /* Importante para o z-index funcionar */
}

.order-now:hover {
    background: #00b34a;
    transform: scale(1.05); /* Mantém o scale mesmo em mobile */
}





.bonus-section {
    background-color: #eb8e21;
    padding: 4rem 2rem;
}

.bonus-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.bonus-title .bottles {
    text-decoration: underline;
}

.bonus-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-card {
    border-radius: 10px;
    width: 100%;
    max-width: 580px;
    overflow: hidden;
}

.bonus-image {
    background: white;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.bonus-image img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.bonus-name {
    background: #ef4c23;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.bonus-pricing {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.2rem;
}

.rrp {
    color: #414141;
    font-weight: bold;
    font-size: 1.5rem;
}

.rrp span {
    text-decoration: line-through;
    text-decoration-color: red;
}

.today {
    font-weight: bold;
}

.today span {
    color: #00a651;
}

.bonus-description {
   
    color:rgba(255, 255, 255, .7960784314);
    line-height: 1.6;
    font-size: 1.25rem;
    
}

/* Responsividade */
@media (max-width: 768px) {
    .bonus-section {
        padding: 2rem 1rem;
    }

    .bonus-title {
        font-size: 2rem;
    }

    .bonus-card {
        margin: 0 auto;
    }

    .bonus-image {
        min-height: auto;
        padding: 1rem;
    }

    .bonus-pricing {
        padding: 1rem;
    }

    .bonus-description {
        padding: 0 1rem 1rem;
        font-size: 1rem;
    }
}

/* Seção FAQ */
.faq-section {
    background-color: #fff8ef;
    padding: 4rem 2rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-section h2{
    color: #ef4c23;
    font-size: 2.5rem;
}


details {
    background: white;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    border: 1px solid #fbad41;
}

details img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
}

summary {
    font-weight: bold;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    font-size: 1.5rem;
}

summary:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

details[open] summary:after {
    content: '-';
}

.faq-content {
    padding: 1rem 0;
    color: #666;
    font-size: 1.125rem;
}

.guarantee-text {
    color: #666;
    margin-top: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .bonus-card {
        margin: 0 1rem;
    }
    
    .guarantee-section,
    .bonus-section,
    .faq-section {
        padding: 2rem 1rem;
    }
}