:root {
    --primary: #FF9F1C;
    /* Laranja Geladinho */
    --secondary: #2EC4B6;
    /* Verde Água / Teal */
    --accent: #E71D36;
    /* Vermelho vibrante */
    --yellow: #FFD60A;
    /* Amarelo Sucesso */
    --text-dark: #2D1E17;
    /* Marrom para contornos/letras */
    --bg-light: #FFFFFF;
    --radius: 40px;
    /* Bordas bem arredondadas */
    --shadow-pop: 0 8px 0px #2D1E17;
    /* Sombra sólida para efeito 3D */
    --text-stroke: 2px 2px 0 #2D1E17, -2px -2px 0 #2D1E17, 2px -2px 0 #2D1E17, -2px 2px 0 #2D1E17;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 45px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary);
    background-image:
        radial-gradient(rgba(231, 29, 54, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    /* Simulação de padrão */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Drip */
.drip-header {
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    padding: 80px 0 140px;
    text-align: center;
    background: var(--secondary);
    color: #fff;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    /* Curva orgânica no topo/baixo */
}

.badge {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-pop);
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: var(--text-stroke), 0 10px 0 rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.highlight {
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--accent), -2px -2px 0 var(--accent), 2px -2px 0 var(--accent), -2px 2px 0 var(--accent), 4px 4px 0 var(--text-dark);
    display: inline-block;
}

.subheadline {
    font-size: 1.5rem;
    color: var(--yellow);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: var(--text-stroke);
    text-transform: uppercase;
}

/* Pain + Promise Section */
.pain-promise {
    padding: 100px 0;
    background: var(--primary);
    color: var(--text-dark);
}

.containerSmall {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 24px;
}

.pain-box {
    text-align: center;
    padding: 80px 50px;
    border-radius: var(--radius);
    background: #fff;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
}

.pain-box h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--accent);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.pain-box .muted {
    color: var(--accent);
    display: block;
    margin-top: 10px;
    font-weight: 900;
}

.pain-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.highlight-box {
    background: var(--secondary);
    padding: 30px;
    border-radius: 24px;
    border: 4px solid var(--text-dark);
    box-shadow: 6px 6px 0 var(--text-dark);
    margin-bottom: 40px;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--yellow);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-shadow: var(--text-stroke);
}

.section-title-small {
    font-size: 2.5rem;
    color: var(--yellow);
    margin: 60px 0 30px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: var(--text-stroke);
}

.recipe-label {
    font-size: 1.3rem;
    font-weight: 950;
    color: #000000 !important;
    margin-bottom: 12px;
    background: var(--yellow);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Video Wrapper */
.video-container {
    max-width: 800px;
    margin: 0 auto 50px;
    perspective: 1000px;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 4px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-pop);
    transition: transform 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--accent);
    margin-left: 8px;
}

/* Buttons */
.btn-main,
.btn-secondary {
    display: inline-block;
    padding: 24px 60px;
    background: #00FF00;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50px;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--text-stroke);
}

.btn-main:hover,
.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 255, 0, 0.4);
    filter: brightness(1.1);
}

.guarantee-text {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Proof Visuals */
.proof-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 5px;
}

.proof-frame {
    flex: 0 0 auto;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    border: 6px solid var(--warning);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    line-height: 0;
}

.proof-frame:hover {
    transform: rotate(2deg) scale(1.05);
}

.proof-frame img {
    max-height: 250px;
    width: auto;
    border-radius: 8px;
    display: block;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background-color: var(--primary);
    color: var(--text-dark);
}

.section-label {
    text-align: center;
    color: #000000 !important;
    background: var(--yellow);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 0 auto 20px;
    display: table;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #00FF00;
    text-shadow: var(--text-stroke);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 var(--text-dark);
}

.benefit-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #000000;
    /* Explicit black */
    text-transform: uppercase;
}

.benefit-card p {
    color: #000000;
    /* Explicit black */
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 120px 0;
    background: var(--secondary);
    color: #fff;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #e7f9ee;
    padding: 50px;
    border-radius: var(--radius);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
}

.guarantee-badge {
    position: relative;
    flex-shrink: 0;
}

.guarantee-badge img {
    width: 110px;
    filter: hue-rotate(240deg);
    /* Adjusting standard icon to purple-ish */
}

.guarantee-badge .days {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    width: 100%;
    text-shadow: var(--text-stroke);
}

.guarantee-content .label {
    color: var(--accent);
    /* Change from primary to accent for better visibility */
    font-weight: 950;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
    /* Removed text-stroke to fix blurred look */
}

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 600px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* For Whom Section */
.for-whom {
    padding: 120px 0;
    background: var(--primary);
    color: var(--text-dark);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 4px solid var(--text-dark);
    box-shadow: 6px 6px 0 var(--text-dark);
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.audience-item .check {
    font-size: 1.5rem;
}

.audience-item p {
    font-weight: 900;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0;
}

.final-push {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 60px;
    background: var(--secondary);
    border-radius: 32px;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
}

.final-push p {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.final-push h3 {
    font-size: 2.5rem;
    color: var(--yellow);
    font-weight: 900;
    text-shadow: var(--text-stroke);
    text-transform: uppercase;
}

/* Identifying Pains Section */
.identifying-pains {
    padding: 120px 0;
    background: var(--secondary);
    color: #fff;
}

.identifying-pains .section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--accent);
    text-shadow: var(--text-stroke);
}

.pains-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    border-left: 8px solid var(--danger);
    transition: all 0.3s ease;
    border: 4px solid var(--text-dark);
    box-shadow: 6px 6px 0 var(--text-dark);
}

.pain-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.pain-item .cross {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pain-item p {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    text-align: center;
    background: var(--secondary);
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: var(--shadow-pop);
    position: relative;
    border: 4px solid var(--text-dark);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: var(--secondary);
    line-height: 1;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .user {
    display: flex;
    flex-direction: column;
}

.testimonial-card .user strong {
    color: var(--primary);
}

.testimonial-card .user span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0;
    text-align: center;
    background: #000;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* What You Will Receive Redesign */
.what-you-receive {
    margin-top: 80px;
    padding: 0;
}

.receive-title {
    text-align: center;
    color: var(--yellow);
    margin-bottom: 35px;
    font-size: 2.22rem;
    font-weight: 900;
    text-shadow: var(--text-stroke);
    text-transform: uppercase;
}

.receive-free-today {
    text-align: center;
    padding: 60px 0 120px;
    /* Reduzi o padding superior de 120px para 60px */
    background: var(--primary);
    color: var(--text-dark);
}

.receive-free-today h2 {
    font-size: 3rem;
    color: #00FF00;
    /* Verde Vibrante */
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    animation: pulse 2s infinite ease-in-out;
    text-shadow:
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 8px 30px rgba(0, 0, 0, 0.4);
}

.bonus-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bonus-card-visual {
    flex: 1;
    max-width: 500px;
    min-width: 320px;
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
}

.bonus-card-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 var(--text-dark);
}

.free-subtitle {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 950;
    height: auto;
    /* Permite que o card encolha se o texto for curto */
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    margin-top: 5px;
}

.free-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 500;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.receive-card {
    background: #fff;
    padding: 25px 20px;
    /* Reduzi o padding para o card ficar mais justo */
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
    transition: all 0.2s ease;
}

.receive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 var(--text-dark);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    background: var(--secondary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.receive-card h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 950;
}

.receive-card p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 600;
}

.receive-image {
    width: 100%;
    max-width: 180px;
    height: 200px;
    /* Altura fixa para permitir o corte */
    object-fit: cover;
    /* Faz o "crop" da imagem */
    object-position: top;
    /* Mantém o topo e corta a parte de baixo */
    border-radius: 20px;
    margin-top: 0;
    /* Removendo qualquer margem superior para colar no topo */
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 35px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(247, 37, 133, 0.3);
}

@media (max-width: 650px) {
    .receive-grid {
        grid-template-columns: 1fr;
    }

    .receive-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .receive-card h4 {
        margin-bottom: 5px;
    }

    .card-badge {
        top: 10px;
        right: -25px;
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Pricing Offer Section */
.pricing-offer {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #29B6A8 100%);
    text-align: center;
    color: #fff;
}

.cta-transition-text {
    color: var(--yellow);
    font-size: 2rem;
    font-weight: 950;
    text-transform: uppercase;
    text-shadow: var(--text-stroke);
    margin-bottom: 10px;
    display: block;
}

.arrow-down {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.pricing-card {
    background: #fff;
    padding: 80px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-pop);
    border: 6px solid var(--text-dark);
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-dark);
}

.product-title {
    font-size: 1.8rem;
    color: #0F0920;
    /* Garantir que fique escuro no card branco */
    margin-bottom: 30px;
    font-weight: 800;
}

.pricing-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 20px auto 40px;
    /* Increased bottom margin */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.check-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #000000;
    /* Preto Puro */
    font-weight: 700;
}

.check-list li span {
    margin-right: 10px;
}

.price-box {
    background: #F8F9FA;
    padding: 50px 30px;
    border-radius: 32px;
    margin-bottom: 30px;
    position: relative;
    border: 4px solid #E9ECEF;
}

.price-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 950;
    white-space: nowrap;
    box-shadow: var(--shadow-pop);
    border: 3px solid var(--text-dark);
    text-shadow: var(--text-stroke);
}

.old-price {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    opacity: 0.7;
}

.old-price span {
    text-decoration: line-through;
}

.installments {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: var(--text-stroke);
}

.cash-price {
    font-size: 1.4rem;
    color: #00FF00;
    font-weight: 900;
    margin-top: 10px;
    text-shadow: var(--text-stroke);
}

.pricing-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1rem;
    }
}

.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card .user strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.testimonial-card .user span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sticky-timer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(220, 53, 69);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-pop);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 5px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 0px var(--text-dark);
}

/* Sales Notification Popup */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    border: 3px solid var(--text-dark);
    box-shadow: 6px 6px 0px var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.sales-notification.active {
    transform: translateX(0);
}

.sales-notification .notif-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid var(--text-dark);
}

.sales-notification .notif-content {
    display: flex;
    flex-direction: column;
}

.sales-notification .notif-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000 !important;
    margin: 0;
}

.sales-notification .notif-time {
    display: none !important;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    :root {
        --radius: 20px;
    }

    body {
        padding-top: 50px;
        /* Slightly more space for sticky timer */
    }

    .container,
    .containerSmall {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 80px;
        clip-path: ellipse(200% 100% at 50% 0%);
    }

    .headline {
        font-size: 1.8rem !important;
        margin-bottom: 20px;
    }

    .subheadline {
        font-size: 0.9rem !important;
        margin-bottom: 30px;
    }

    .video-container {
        margin-bottom: 30px;
    }

    .btn-main,
    .btn-secondary {
        padding: 18px 30px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    /* Pain Box */
    .pain-box {
        padding: 30px 20px;
    }

    .pain-box h2 {
        font-size: 1.4rem;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-box p {
        font-size: 1rem;
    }

    .section-title-small {
        font-size: 1.6rem;
    }

    /* Grids to Single Column */
    .receive-grid,
    .benefits-grid,
    .audience-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .receive-card {
        flex-direction: column !important;
        /* Stack image and text */
        text-align: center !important;
    }

    .receive-image {
        max-width: 140px;
        height: 160px;
    }

    /* Bonus Section */
    .receive-free-today {
        padding: 40px 0 80px;
    }

    .receive-free-today h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .bonus-card-visual {
        max-width: 100%;
        min-width: 100%;
    }

    .free-subtitle {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }

    .pricing-offer {
        padding: 80px 0;
    }

    .cta-transition-text {
        font-size: 1.5rem !important;
        padding: 0 20px;
    }

    /* Pricing Card */
    .pricing-card {
        padding: 40px 20px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .installments {
        font-size: 2.2rem;
    }

    .price-label {
        font-size: 1rem;
        padding: 10px 20px;
    }

    /* Guarantee Section */
    .guarantee-section {
        padding: 60px 0;
    }

    .guarantee-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .guarantee-badge img {
        width: 80px;
    }

    .guarantee-content h2 {
        font-size: 1.5rem;
    }

    .guarantee-content p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }

    /* FAQ */
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    /* Sales Notification */
    .sales-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
}