/* CSS FINAL V3 - Atualizado com Gamificação */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    /* Evitar scroll horizontal nas animações */
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.white {
    color: #fff !important;
}

.text-center {
    text-align: center;
}

.bold-green {
    color: #28a745;
    font-weight: 900;
}

.highlight-text {
    color: #ff0000;
    font-size: 1.5rem;
    margin-top: 20px;
    title-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.mt-40 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.small-text {
    font-size: 0.85rem;
    color: #666;
}

/* GAMIFICATION: Animações e Efeitos */
@keyframes pulse-gamified {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes float-y {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shine-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* GAMIFICATION: Barra de Progresso */
.scarcity-bar-container {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    padding: 0 20px;
}

.scarcity-label {
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.progress-track {
    background-color: #e0e0e0;
    border-radius: 20px;
    height: 25px;
    width: 100%;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    outline: 2px solid #ff0000;
    /* Borda externa vibrante */
    position: relative;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #ff8c00, #ff0000);
    height: 100%;
    border-radius: 20px;
    width: 87%;
    /* Valor fixo para urgência */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    position: relative;
}

/* Efeito listrado animado na barra */
.progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent);
    z-index: 1;
    background-size: 30px 30px;
    animation: shine-move 1s linear infinite;
}

/* New Big Headline */
.big-headline-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #ff0000;
    /* Mais estilo */
}

.big-headline {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    color: #333;
}

.highlight-red {
    color: #fff;
    background: #ff0000;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    transform: rotate(-2deg);
    /* Leve inclinação para destaque */
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-white {
    background-color: #fff;
}

.section-gray {
    background-color: #f7f7f7;
}

.section-dark {
    background-color: #1a1a1a;
    color: #fff;
}

/* Darker gray, not pure black */
.section-pricing {
    background-color: #f0f0f0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Decoração embaixo dos títulos */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Hero */
.section-hero {
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(circle, #ffffff 0%, #f0f0f0 100%);
    border-bottom: 5px solid #ff0000;
}

.hero-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #666;
    text-transform: lowercase;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-img-box {
    margin: 0 auto;
    max-width: 600px;
    animation: float-y 4s ease-in-out infinite;
    /* Efeito flutuante na imagem principal */
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Box */
.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.video-thumb-img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid #fff;
    /* Moldura */
    transition: transform 0.3s;
}

.video-thumb-img:hover {
    transform: scale(1.02);
}

/* Flavors Grid */
.flavors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.ebook-cover-small {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s;
}

.ebook-cover-small:hover {
    transform: scale(1.05) rotate(2deg);
}

.flavor-item {
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.flavor-item:hover {
    transform: translateY(-10px);
}

/* Levanta ao passar o mouse */

.flavor-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    /* Mais arredondado */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    border: 3px solid transparent;
    transition: border-color 0.3s;
}

.flavor-item:hover img {
    border-color: #ff0000;
    /* Borda vermelha no hover */
}

.flavor-item h3 {
    font-size: 1rem;
    color: #444;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* About Image */
.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Scarcity Text */
.scarcity-text {
    color: #ff0000;
    font-weight: 700;
}

/* Modules Box - GAMIFIED */
.modules-box {
    max-width: 600px;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    border: 3px solid #333;
    /* Borda sólida */
    box-shadow: 8px 8px 0px #333;
    /* Sombra sólida estilo HQ/Pop */
    padding: 30px;
    background: #fff;
    width: 100%;
    border-radius: 10px;
    position: relative;
}

.clean-list {
    list-style: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.clean-list li {
    padding: 10px 0;
    border-bottom: 2px dashed #eee;
}

.clean-list li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.testi-img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    transition: transform 0.3s;
}

.testi-img:hover {
    transform: scale(1.05);
    z-index: 2;
}

/* Bonuses Grid - GAMIFIED CARDS */
.bonuses-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.bonuses-grid img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.3, 1.275);
    /* Efeito elástico */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
}

.bonuses-grid img:hover {
    transform: scale(1.1) rotate(2deg);
    border-color: #ffd700;
    /* Dourado */
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    /* Brilho dourado */
    z-index: 10;
}

/* Certificate */
.certificate-box {
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #fff;
}

/* Guarantee */
.guarantee-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #ff0000;
    border-radius: 15px;
    padding: 40px;
    background: #fff;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.g-icon img {
    width: 150px;
    margin-right: 30px;
    margin-bottom: 20px;
}

/* Pricing - GAMIFIED TABLES */
.pricing-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: flex-end;
    /* Alinha pela base */
}

.pricing-col {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
    position: relative;
    transition: transform 0.3s;
}

.pricing-col.featured {
    border: 3px solid #ff0000;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
    background: #fff;
    z-index: 2;
    padding-top: 50px;
    /* Espaço para ribbon */
    margin-top: -20px;
    /* Levemente deslocado para cima */
    transform: scale(1.05);
    /* Maior sempre */
}

.pricing-col:hover {
    transform: translateY(-5px);
}

.pricing-col.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.ribbon {
    background: #ff0000;
    color: #fff;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
}

.price-val {
    font-size: 3.5rem;
    color: #000;
    margin: 10px 0;
    font-weight: 900;
    letter-spacing: -2px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.offer-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #bbb;
    font-size: 0.95rem;
}

/* Button - GAMIFIED */
.btn-buy {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: #fff;
    padding: 18px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    /* Redondo estilo app */
    font-size: 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 0 #1e7e34, 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Sombra 3D */
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho passando no botão */
.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(4px);
    /* Aperta o botão */
    box-shadow: 0 2px 0 #1e7e34, 0 5px 10px rgba(0, 0, 0, 0.2);
    /* Remove o pulse no hover para não conflitar */
    animation: none;
}

.pricing-col.featured .btn-buy {
    animation: pulse-gamified 2s infinite;
    /* Só o botão premium pulsa */
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff0000;
    font-weight: 700;
}

/* Footer */
footer {
    background: #232323;
    padding: 40px 20px;
    color: #999;
    border-top: 5px solid #ff0000;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

/* Whatsapp Footer */
.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-footer:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    section {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
        width: 100%;
    }

    /* Headings */
    /* Headings */
    h1,
    h2,
    h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .big-headline {
        font-size: 1.15rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-intro {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .highlight-red {
        display: inline;
        white-space: normal;
        padding: 2px 5px;
        /* Menor padding lateral */
    }

    /* Small Mobile Specifics (Galaxy S8+, iPhone SE, etc) */
    @media (max-width: 400px) {
        .hero-title {
            font-size: 1.25rem !important;
        }

        .big-headline {
            font-size: 1rem !important;
        }

        .section-title {
            font-size: 1.2rem !important;
        }

        .container {
            padding: 0 10px !important;
        }

        .pricing-col {
            padding: 15px 10px !important;
        }

        .alert-headline {
            font-size: 1.4rem !important;
        }
    }

    /* Grids & Flex */
    .flavors-grid,
    .bonuses-grid,
    .testimonials-wrapper {
        gap: 20px;
    }

    .flavor-item {
        width: 100%;
        max-width: 100%;
    }

    .flavor-item img {
        height: auto;
        max-height: 250px;
        width: 100%;
    }

    /* Guarantee */
    .guarantee-wrapper {
        text-align: center;
        padding: 20px 15px;
        flex-direction: column;
    }

    .g-icon img {
        margin: 0 auto 15px auto;
        display: block;
        width: 100px;
    }

    /* Pricing */
    .pricing-row {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .pricing-col {
        width: 100%;
        max-width: 100%;
        padding: 25px 15px;
    }

    .pricing-col.featured {
        transform: scale(1);
        margin-top: 0;
        border-width: 2px;
    }

    .price-val {
        font-size: 2.8rem;
    }

    /* Modules Box */
    .modules-box {
        padding: 20px 15px;
        width: 100%;
    }

    .clean-list {
        font-size: 0.95rem;
    }

    .clean-list li {
        word-break: break-word;
    }

    /* Images */
    .ebook-cover-small {
        max-width: 180px;
    }

    .testi-img {
        width: 100%;
        max-width: 100%;
    }

    .highlight-red {
        transform: rotate(0deg);
        display: inline-block;
        margin-bottom: 5px;
        white-space: normal;
    }

    /* Progress Bar on Mobile */
    .progress-fill {
        width: 87%;
        font-size: 0.7rem;
    }

    /* Button Text Fix */
    .btn-buy {
        font-size: 1.1rem;
        padding: 15px;
        white-space: normal;
        line-height: 1.2;
    }

    /* Upgrade Page Specifics override via style.css if needed */
    .upgrade-container {
        margin: 20px 10px !important;
        padding: 20px 15px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .price-val {
        font-size: 2.2rem;
    }

    .btn-buy {
        font-size: 1rem;
    }

    .alert-headline {
        font-size: 1.5rem !important;
    }
}