/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores - Design Emocional e Caloroso */
    --green-deep: #1E6F5C;
    --green-light: #2A8F75;
    --green-soft: #E8F5F1;
    --beige-warm: #FFF7ED;
    --beige-light: #FFFBF5;
    --orange-vibrant: #FF6A00;
    --orange-dark: #E55A00;
    --black-soft: #1F2933;
    --gray-medium: #6B7280;
    --gray-light: #E5E7EB;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black-soft);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-soft);
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* 🚨 FAIXA DE URGÊNCIA NO TOPO */
.urgency-bar {
    background: var(--orange-vibrant);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.2);
}

.urgency-bar p {
    margin: 0;
    letter-spacing: 0.3px;
}

/* 🎯 HERO SECTION */
.hero {
    background: var(--beige-warm);
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--black-soft);
    letter-spacing: -0.8px;
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-medium);
    font-weight: 400;
    line-height: 1.5;
}

.micro-text {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-container {
    margin: 50px 0;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #000;
}

/* Wrapper específico para player HTML5 */
.html5-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.html5-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botão para ativar som */
.unmute-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 106, 0, 0.9);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.unmute-button:hover {
    background: rgba(255, 106, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.unmute-button:active {
    transform: translateY(0);
}

.unmute-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.unmute-button.hidden {
    display: none;
}

/* Estilos para mensagem de erro do vídeo */
.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 12px;
}

.video-error p {
    margin: 0;
    font-size: 1rem;
}

.fallback-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 500px;
}

.fallback-content svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--white);
    display: block;
}

.fallback-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.fallback-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.fallback-button {
    display: inline-block;
    background: var(--orange-vibrant);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
}

.fallback-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.2px;
}

.cta-primary {
    background: var(--orange-vibrant);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
    background: var(--orange-dark);
}

.cta-large {
    font-size: 1.3rem;
    padding: 22px 60px;
}

.cta-secondary {
    background: var(--gray-medium);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--black-soft);
}

.cta-middle {
    text-align: center;
    margin-top: 50px;
}

/* 😣 SEÇÃO: O PROBLEMA */
.pain-points {
    padding: 100px 0;
    background: var(--green-soft);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pain-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--green-deep);
}

.pain-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    width: 100%;
    height: 100%;
}

.pain-card h3 {
    font-size: 1.3rem;
    color: var(--black-soft);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pain-card p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* 📦 SEÇÃO: O QUE VOCÊ VAI RECEBER */
.what-you-get {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.product-card {
    background: var(--beige-warm);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--green-deep);
}

.product-card.bonus-tag {
    border: 2px solid var(--green-deep);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9F6 100%);
}

.bonus-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--green-deep);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--black-soft);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-card p {
    font-size: 1.05rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.urgency-box {
    text-align: center;
    padding: 20px;
    background: var(--orange-vibrant);
    color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1rem;
}

/* ⭐ BENEFÍCIOS */
.benefits {
    padding: 100px 0;
    background: var(--green-soft);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--green-deep);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    background: var(--green-deep);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: var(--black-soft);
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* 🎁 BÔNUS */
.bonuses {
    padding: 100px 0;
    background: var(--white);
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-soft);
    letter-spacing: -0.5px;
}

.bonus-single {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card-single {
    background: var(--beige-warm);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--black-soft);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 3px solid var(--green-deep);
}

.bonus-card-single:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bonus-badge-single {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-deep);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(30, 111, 92, 0.3);
}

.bonus-card-single h3 {
    font-size: 1.9rem;
    color: var(--black-soft);
    margin-bottom: 25px;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.3;
    text-align: center;
}

.bonus-main-desc {
    font-size: 1.15rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

.bonus-includes {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.bonus-includes h4 {
    font-size: 1.3rem;
    color: var(--black-soft);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.bonus-list li {
    font-size: 1.05rem;
    color: var(--black-soft);
    padding: 10px 0;
    line-height: 1.6;
    font-weight: 500;
}

.bonus-note-box {
    background: var(--green-soft);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--green-deep);
}

.bonus-note-box p {
    font-size: 0.95rem;
    color: var(--black-soft);
    margin-bottom: 8px;
    line-height: 1.6;
}

.bonus-note-box p:last-child {
    margin-bottom: 0;
}

.bonus-note-box strong {
    color: var(--green-deep);
    font-weight: 600;
}

/* 💰 SEÇÃO DE OFERTAS */
.offers {
    padding: 100px 0;
    background: var(--beige-warm);
}

.offers-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black-soft);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.offers-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 35px;
    font-weight: 400;
}

/* Barra de Escassez com Contador - Compacto */
.urgency-countdown-bar {
    background: linear-gradient(135deg, #FF6A00 0%, #FF4444 100%);
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-box {
    background: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-vibrant);
    line-height: 1;
    margin-bottom: 3px;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Guia Visual */
.scroll-guide {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.scroll-guide p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Âncora invisível para scroll */
#planos {
    scroll-margin-top: 80px;
    position: relative;
    top: -80px;
    visibility: hidden;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.offer-box {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-basic {
    border: 2px solid var(--gray-light);
}

.offer-premium {
    border: 5px solid var(--green-deep);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9F6 100%);
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(30, 111, 92, 0.25);
    z-index: 1;
}

.offer-premium:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 111, 92, 0.3);
}

.popular-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange-vibrant) 0%, #FF4444 100%);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.offer-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--black-soft);
    font-weight: 700;
    margin-top: 10px;
}

.price-box {
    text-align: center;
    margin-bottom: 15px;
    padding: 30px 25px;
    background: var(--beige-warm);
    border-radius: 16px;
}

.premium-price {
    background: linear-gradient(135deg, rgba(30, 111, 92, 0.12) 0%, rgba(42, 143, 117, 0.12) 100%);
    border: 2px solid var(--green-deep);
}

.price-old {
    display: block;
    font-size: 1.4rem;
    color: var(--gray-medium);
    text-decoration: line-through;
    margin-bottom: 10px;
    opacity: 0.6;
    font-weight: 500;
}

.price-new {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1;
    letter-spacing: -2px;
}

.price-microtext {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-weight: 500;
}

.offer-list {
    list-style: none;
    margin-bottom: 35px;
    min-height: 200px;
}

.offer-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--gray-light);
    line-height: 1.6;
}

.offer-list li:last-child {
    border-bottom: none;
}

.included {
    color: var(--green-deep);
    font-weight: 600;
}

.excluded {
    color: var(--gray-medium);
    text-decoration: line-through;
    opacity: 0.5;
}

.offer-box .cta-button {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
}

.offers-microcopy {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.offers-microcopy p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

/* ⭐ PROVA SOCIAL */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--beige-warm);
    padding: 35px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--green-deep);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--black-soft);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.testimonial-tag {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-deep);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
}

/* ❓ FAQ */
.faq {
    padding: 100px 0;
    background: var(--green-soft);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--black-soft);
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--green-deep);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin: 0;
}

/* 🔥 CTA FINAL */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-light) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    letter-spacing: -0.5px;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta .cta-button {
    font-size: 1.2rem;
    padding: 20px 60px;
}

.final-cta-guarantee {
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.final-cta-urgency {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* FOOTER */
.footer {
    background: var(--black-soft);
    color: var(--white);
    padding: 35px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer sup {
    font-size: 0.7em;
    vertical-align: super;
}

/* Responsividade - Mobile First */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .headline {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.25rem;
    }
    
    .video-container {
        margin: 40px 0;
    }
    
    .video-wrapper {
        border-radius: 16px;
    }
    
    .html5-video-wrapper {
        padding-bottom: 56.25%; /* Mantém 16:9 */
    }
    
    .unmute-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .unmute-button svg {
        width: 18px;
        height: 18px;
    }
    
    .fallback-content {
        padding: 30px 20px;
    }
    
    .fallback-content svg {
        width: 48px;
        height: 48px;
    }
    
    .fallback-content p {
        font-size: 1rem;
    }
    
    .fallback-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1.05rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-large {
        font-size: 1.15rem;
        padding: 18px 50px;
    }
    
    .offers-main-title {
        font-size: 2.2rem;
    }
    
    .offers-subtitle {
        font-size: 1.1rem;
    }
    
    .urgency-countdown-bar {
        padding: 15px 18px;
        margin-bottom: 15px;
    }
    
    .urgency-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
    
    .scroll-guide {
        margin-bottom: 25px;
    }
    
    .scroll-guide p {
        font-size: 0.85rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-premium {
        transform: scale(1);
    }
    
    .offer-premium:hover {
        transform: translateY(-8px);
    }
    
    .price-new {
        font-size: 2.8rem;
    }
    
    .offer-box {
        padding: 40px 30px;
    }
    
    .pain-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points,
    .what-you-get,
    .benefits,
    .bonuses,
    .offers,
    .testimonials,
    .faq,
    .final-cta {
        padding: 70px 0;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .price-new {
        font-size: 2.5rem;
    }
    
    .final-cta-title {
        font-size: 1.9rem;
    }
    
    .bonus-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .video-container {
        margin: 30px 0;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .html5-video-wrapper {
        padding-bottom: 56.25%; /* Mantém 16:9 */
    }
    
    .unmute-button {
        bottom: 12px;
        right: 12px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .unmute-button svg {
        width: 16px;
        height: 16px;
    }
    
    .unmute-button span {
        display: none; /* Esconder texto no mobile muito pequeno */
    }
    
    .fallback-content {
        padding: 25px 15px;
    }
    
    .fallback-content svg {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .fallback-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .fallback-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .urgency-bar {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .product-card,
    .bonus-card-single,
    .pain-card {
        padding: 30px 25px;
    }
    
    .offers-main-title {
        font-size: 1.9rem;
    }
    
    .offers-subtitle {
        font-size: 1rem;
    }
    
    .urgency-countdown-bar {
        padding: 12px 15px;
        margin-bottom: 12px;
    }
    
    .urgency-text {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .countdown-box {
        min-width: 55px;
        padding: 8px 12px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
    }
    
    .scroll-guide {
        margin-bottom: 20px;
    }
    
    .scroll-guide p {
        font-size: 0.8rem;
    }
    
    .offer-premium {
        transform: scale(1);
    }
    
    .offer-premium:hover {
        transform: translateY(-8px);
    }
    
    .offer-box {
        padding: 35px 25px;
    }
    
    .offer-box h3 {
        font-size: 1.7rem;
    }
    
    .price-new {
        font-size: 2.2rem;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .bonus-card-single h3 {
        font-size: 1.6rem;
    }
}
