/* ========================================
   RESET E VARIÁVEIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-fundo: #0B0B0F;
    --cor-dourado: #C4A05A;
    --cor-lilas: #7C6CF3;
    --cor-branco: #FFFFFF;
    --cor-cinza: #B8B8B8;
    --cor-cinza-escuro: #1A1A1F;
    
    --font-titulo: 'Playfair Display', serif;
    --font-texto: 'Lato', sans-serif;
    
    --espacamento-section: 80px;
    --espacamento-mobile: 50px;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Playfair Display Fallback';
    src: local('Times New Roman');
    size-adjust: 115%;
    ascent-override: 90%;
    descent-override: 20%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Lato Fallback';
    src: local('Arial');
    size-adjust: 97%;
    ascent-override: 105%;
    descent-override: 25%;
    line-gap-override: 0%;
}

body {
    font-family: var(--font-texto);
    background-color: var(--cor-fundo);
    color: var(--cor-branco);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TIPOGRAFIA
======================================== */
.section-title {
    font-family: var(--font-titulo);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--cor-dourado);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.1) 0%, rgba(11, 11, 15, 1) 50%, rgba(196, 160, 90, 0.1) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--cor-fundo) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.hero-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-offer {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 900;
    color: var(--cor-dourado);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.2), rgba(168, 157, 245, 0.2));
    border-radius: 8px;
    border: 2px solid var(--cor-dourado);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(196, 160, 90, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(196, 160, 90, 0.8);
    }
}

.hero-title {
    font-family: var(--font-titulo);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--cor-branco);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--cor-dourado);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cor-cinza);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.8s both;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--cor-branco);
    text-align: left;
}

.check-icon {
    color: var(--cor-dourado);
    font-size: 1.2rem;
    line-height: 1.45;
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 1s both;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Imagem da Hero */
.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    aspect-ratio: 800 / 1000;
    border-radius: 25px;
    border: 3px solid var(--cor-dourado);
    box-shadow: 0 20px 60px rgba(196, 160, 90, 0.4);
    object-fit: cover;
}

.hero-logo {
    aspect-ratio: 600 / 300;
    height: auto;
}

/* ========================================
   BOTÕES CTA
======================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--cor-dourado), #D4B570);
    color: var(--cor-fundo);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 160, 90, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 160, 90, 0.5);
}

.cta-large {
    padding: 16px 40px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(196, 160, 90, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(196, 160, 90, 0.6);
    }
}

/* ========================================
   SEÇÃO DE DOR
======================================== */
.pain-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-cinza-escuro) 100%);
}

.pain-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.pain-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-image-wrapper {
    flex: 0 0 350px;
    order: 2;
}

.pain-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 2px solid rgba(196, 160, 90, 0.3);
    transition: all 0.3s ease;
}

.pain-image-wrapper img:hover {
    border-color: var(--cor-dourado);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(196, 160, 90, 0.3);
}

.pain-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--cor-lilas);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pain-item:hover {
    transform: translateX(10px);
    background: rgba(124, 108, 243, 0.1);
    border-left-color: var(--cor-dourado);
}

.pain-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.pain-item p {
    font-size: 1.1rem;
    color: var(--cor-branco);
    margin: 0;
}

.pain-conclusion {
    text-align: center;
    margin-top: 60px;
}

.highlight-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--cor-dourado);
    font-weight: 700;
    margin-bottom: 15px;
}

.conclusion-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cor-cinza);
}

/* ========================================
   SEÇÃO 2 - PALIATIVO
======================================== */
.palliative-section {
    padding: 70px 20px;
    background: radial-gradient(ellipse at center, rgba(124, 108, 243, 0.08) 0%, var(--cor-fundo) 75%);
    border-top: 1px solid rgba(196, 160, 90, 0.15);
    border-bottom: 1px solid rgba(196, 160, 90, 0.15);
    position: relative;
}

.palliative-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 31, 0.85) 0%, rgba(15, 15, 20, 0.95) 100%);
    border: 1px solid rgba(196, 160, 90, 0.25);
    border-left: 5px solid var(--cor-dourado);
    border-radius: 16px;
    padding: 45px 50px;
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.palliative-card:hover {
    box-shadow: 0 20px 50px rgba(196, 160, 90, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 160, 90, 0.4);
}

.palliative-text {
    font-family: var(--font-titulo);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: var(--cor-branco);
    line-height: 1.55;
    margin: 0 0 18px 0;
    font-weight: 500;
}

.palliative-consequence {
    font-family: var(--font-texto);
    font-size: clamp(1.1rem, 2.1vw, 1.35rem);
    color: var(--cor-dourado);
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   APRESENTAÇÃO DO PRODUTO
======================================== */
.product-intro {
    padding: var(--espacamento-section) 20px;
    background: var(--cor-fundo);
}

.product-description {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cor-cinza);
    max-width: 900px;
    margin: 0 auto 30px;
}

.product-description-highlight {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: var(--cor-branco);
    font-weight: 700;
    margin-bottom: 25px;
}

.product-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 0 auto 35px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
}

.product-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loom-facade {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 800px;
    margin: 0 auto 35px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.loom-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    display: block;
}

@media (max-width: 768px) {
    .loom-facade-thumb {
        object-fit: cover;
    }
}

.loom-facade-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(196, 160, 90, 0.95);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.loom-facade-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 26px solid #0B0B0F;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}

.loom-facade:hover .loom-facade-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #C4A05A;
}

.product-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.2), rgba(196, 160, 90, 0.1));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    border: 2px solid rgba(196, 160, 90, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: var(--cor-dourado);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-number {
    font-family: var(--font-titulo);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cor-dourado);
    line-height: 1;
}

.step-item p {
    font-size: 1.1rem;
    color: var(--cor-branco);
    font-weight: 600;
}

.step-arrow {
    font-size: 2rem;
    color: var(--cor-dourado);
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

/* ========================================
   CONTEÚDO DA BLACK BOX
======================================== */
.content-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-cinza-escuro) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    border-color: var(--cor-dourado);
    transform: translateY(-10px);
    background: rgba(196, 160, 90, 0.1);
}

.card-icon {
    margin-bottom: 0;
    width: 100%;
    display: block;
}

.card-icon picture {
    display: block;
    width: 100%;
}

.card-icon img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px 15px 0 0;
}

.content-card h3 {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--cor-dourado);
    margin-bottom: 15px;
    padding: 0 25px;
    margin-top: 25px;
}

.content-card p {
    color: var(--cor-cinza);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 25px 30px;
}

.content-footer {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.2), rgba(196, 160, 90, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--cor-dourado);
}

.content-footer p {
    font-size: 1.1rem;
    color: var(--cor-branco);
    font-weight: 600;
}

/* ========================================
   BENEFÍCIOS EXCLUSIVOS
======================================== */
.benefits-section {
    padding: var(--espacamento-section) 20px;
    background: var(--cor-fundo);
}

.benefits-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.benefits-image-wrapper {
    flex: 0 0 350px;
    order: 1;
}

.benefits-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 2px solid rgba(124, 108, 243, 0.3);
    transition: all 0.3s ease;
}

.benefits-image-wrapper img:hover {
    border-color: var(--cor-lilas);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(124, 108, 243, 0.3);
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 2;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--cor-lilas);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(124, 108, 243, 0.1);
    transform: translateX(10px);
    border-left-color: var(--cor-dourado);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-dourado);
}

.benefit-icon svg {
    stroke: var(--cor-dourado);
}

.benefit-content h3,
.benefit-content h4 {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    color: var(--cor-dourado);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--cor-cinza);
    font-size: 1rem;
    margin: 0;
}

.benefits-conclusion {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.2), rgba(196, 160, 90, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--cor-dourado);
}

.benefits-conclusion p {
    font-size: 1.2rem;
    color: var(--cor-branco);
    font-weight: 600;
}

/* ========================================
   RESULTADOS REAIS
======================================== */
.results-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-cinza-escuro) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.result-item:hover {
    background: rgba(196, 160, 90, 0.1);
    transform: translateY(-10px);
    border-color: var(--cor-dourado);
}

.result-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.result-item p {
    font-size: 1.1rem;
    color: var(--cor-branco);
    font-weight: 500;
    padding: 25px 20px;
    margin: 0;
}

.results-footer {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.2), rgba(196, 160, 90, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--cor-dourado);
}

.results-footer p {
    font-size: 1.2rem;
    color: var(--cor-branco);
    font-weight: 600;
}

/* ========================================
   PARA QUEM É
======================================== */
.target-section {
    padding: var(--espacamento-section) 20px;
    background: var(--cor-fundo);
}

.target-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--cor-dourado);
    transition: all 0.3s ease;
}

.target-item:hover {
    background: rgba(196, 160, 90, 0.1);
    transform: translateX(10px);
}

.bullet-icon {
    color: var(--cor-dourado);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.target-item p {
    font-size: 1.2rem;
    color: var(--cor-branco);
    font-weight: 500;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.testimonials-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-cinza-escuro) 100%);
}

.testimonials-single {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.testimonials-single img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Grid de depoimentos (mantido para compatibilidade) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-image-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(196, 160, 90, 0.3);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-dourado);
    box-shadow: 0 15px 40px rgba(196, 160, 90, 0.3);
}

.testimonial-image-card img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Manter os estilos antigos para compatibilidade */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid var(--cor-dourado);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-titulo);
    font-size: 5rem;
    color: rgba(196, 160, 90, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(124, 108, 243, 0.1);
    border-top-color: var(--cor-lilas);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--cor-branco);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: var(--cor-dourado);
    font-weight: 700;
    font-size: 1rem;
}

/* ========================================
   OFERTA BLACK FRIDAY
======================================== */
.offer-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.1) 0%, var(--cor-fundo) 50%, rgba(196, 160, 90, 0.1) 100%);
}

.offer-box {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--cor-dourado);
    box-shadow: 0 20px 60px rgba(196, 160, 90, 0.3);
}

.offer-highlight {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.2), rgba(168, 157, 245, 0.2));
    border-radius: 15px;
}

.offer-highlight h3 {
    font-family: var(--font-titulo);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--cor-dourado);
    margin: 0;
    font-weight: 800;
}

.offer-package-title {
    text-align: center;
    margin-bottom: 25px;
}

.offer-package-title h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--cor-branco);
    font-weight: 700;
    margin: 0;
}

.offer-package-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.package-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: rgba(196, 160, 90, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(196, 160, 90, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-item:hover {
    transform: translateY(-5px);
    border-color: var(--cor-dourado);
    background: rgba(196, 160, 90, 0.15);
    box-shadow: 0 10px 30px rgba(196, 160, 90, 0.3);
}

.package-image {
    width: 100%;
    margin: 0;
}

.package-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.package-item .package-name {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--cor-branco);
    font-weight: 700;
    margin: 20px 15px 15px;
    line-height: 1.3;
    padding: 0 10px;
}

.package-item .package-value {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--cor-dourado);
    font-weight: 800;
    margin: 0 15px 20px;
    padding: 0 10px;
}

.total-original {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}

.total-original p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cor-branco);
    font-weight: 700;
    margin: 0;
}

.strikethrough-value {
    text-decoration: line-through;
    color: #ff6b6b;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
}

.offer-present {
    text-align: center;
    margin-bottom: 20px;
}

.offer-present h3 {
    font-family: var(--font-titulo);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--cor-dourado);
    margin-bottom: 10px;
    font-weight: 800;
}

.from-to {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cor-cinza);
    margin: 0;
}

.offer-price-main {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.3), rgba(168, 157, 245, 0.3));
    border-radius: 15px;
    border: 2px solid var(--cor-dourado);
}

.price-large {
    font-family: var(--font-titulo);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cor-dourado);
    font-weight: 900;
    margin-bottom: 10px;
}

.price-installment {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--cor-branco);
    margin: 0;
    font-weight: 600;
}

.savings-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 15px;
    border: 2px solid #22c55e;
}

.savings-box p {
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    color: var(--cor-branco);
    font-weight: 800;
    margin: 5px 0;
}

.discount-percent {
    font-size: clamp(1rem, 2.2vw, 1.3rem) !important;
    color: #86efac !important;
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-small {
    padding: 12px 20px;
    background: rgba(168, 157, 245, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(168, 157, 245, 0.3);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--cor-branco);
    font-weight: 600;
    text-align: center;
}

.benefit-small.benefit-highlight {
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.25) 0%, rgba(168, 157, 245, 0.25) 100%);
    border: 2px solid var(--cor-dourado);
    box-shadow: 0 0 20px rgba(196, 160, 90, 0.3);
    transform: scale(1.05);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 700;
    position: relative;
    animation: pulse-highlight 2s ease-in-out infinite;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 0 20px rgba(196, 160, 90, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(196, 160, 90, 0.5);
    }
}

.urgency-text {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ff6b6b;
    font-weight: 900;
    margin-top: 20px;
    padding: 15px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 10px;
    border: 2px solid #ff6b6b;
    animation: pulse 2s infinite;
}

.price-comparison {
    text-align: center;
    margin-bottom: 30px;
}

.original-value {
    font-size: 1.3rem;
    color: var(--cor-cinza);
}

.strikethrough {
    text-decoration: line-through;
    color: #ff6b6b;
}

.bonus-list {
    background: rgba(124, 108, 243, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.bonus-list h3 {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--cor-dourado);
    margin-bottom: 20px;
}

.bonus-list ul {
    list-style: none;
}

.bonus-list li {
    font-size: 1.1rem;
    color: var(--cor-branco);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.total-value {
    text-align: center;
    margin-bottom: 30px;
}

.total-value p {
    font-size: 1.4rem;
    color: var(--cor-branco);
}

.big-value {
    font-family: var(--font-titulo);
    font-size: 2rem;
    color: var(--cor-dourado);
    font-weight: 700;
}

.offer-price {
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.2), rgba(124, 108, 243, 0.2));
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.offer-price h3 {
    font-family: var(--font-titulo);
    font-size: 2rem;
    color: var(--cor-dourado);
    margin-bottom: 30px;
}

.price-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.price-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-label {
    font-size: 1rem;
    color: var(--cor-cinza);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-titulo);
    font-size: 2.5rem;
    color: var(--cor-dourado);
    font-weight: 700;
}

.price-divider {
    font-size: 1.5rem;
    color: var(--cor-cinza);
}

.price-details {
    font-size: 1rem;
    color: var(--cor-cinza);
    font-style: italic;
}

.offer-footer {
    text-align: center;
    margin-bottom: 40px;
}

.offer-footer p {
    font-size: 1.1rem;
    color: var(--cor-cinza);
    margin-bottom: 10px;
}

.offer-footer strong {
    color: var(--cor-dourado);
    font-weight: 700;
}

.offer-box .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    padding: 22px 50px;
    font-weight: 900;
    margin-top: 30px;
    margin-bottom: 25px;
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.5);
    border: 3px solid #16a34a;
}

.offer-box .cta-button:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.7);
}

.bonus-aluno-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cor-dourado);
    font-weight: 600;
    margin-top: 20px;
    padding: 15px;
    background: rgba(196, 160, 90, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(196, 160, 90, 0.3);
}

/* ========================================
   BONUS SECTION
======================================== */
.bonus-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.05) 0%, var(--cor-fundo) 50%, rgba(124, 108, 243, 0.05) 100%);
}

.bonus-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--cor-dourado);
}

.bonus-intro {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-intro p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cor-cinza);
    font-weight: 600;
}

.bonus-section .bonus-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(196, 160, 90, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(196, 160, 90, 0.3);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateX(10px);
    background: rgba(196, 160, 90, 0.15);
    border-color: var(--cor-dourado);
}

.bonus-item.bonus-super {
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.25) 0%, rgba(168, 157, 245, 0.25) 100%);
    border: 2px solid var(--cor-dourado);
    box-shadow: 0 0 30px rgba(196, 160, 90, 0.4);
    position: relative;
    padding: 30px;
    animation: pulse-super-bonus 3s ease-in-out infinite;
}

.bonus-item.bonus-super:hover {
    transform: scale(1.03) translateX(10px);
    box-shadow: 0 0 40px rgba(196, 160, 90, 0.6);
}

.bonus-super-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cor-dourado), #e5c16f);
    color: var(--cor-fundo);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 160, 90, 0.5);
}

.bonus-item.bonus-super .bonus-icon {
    font-size: 3.5rem;
}

.bonus-item.bonus-super .bonus-details h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.7rem);
    background: linear-gradient(135deg, var(--cor-dourado), #e5c16f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-item.bonus-super .bonus-value {
    font-size: 1.3rem;
    font-weight: 800;
}

@keyframes pulse-super-bonus {
    0%, 100% {
        box-shadow: 0 0 30px rgba(196, 160, 90, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(196, 160, 90, 0.6);
    }
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-dourado);
}

.bonus-icon svg {
    stroke: var(--cor-dourado);
}

.bonus-details h3 {
    font-family: var(--font-titulo);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--cor-branco);
    margin-bottom: 10px;
    font-weight: 700;
}

.bonus-value {
    font-size: 1.1rem;
    color: var(--cor-dourado);
    font-weight: 600;
}

.bonus-total {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(196, 160, 90, 0.2), rgba(168, 157, 245, 0.2));
    border-radius: 15px;
    border: 2px solid var(--cor-dourado);
}

.bonus-total p {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--cor-branco);
    font-weight: 700;
    margin: 0;
}

.bonus-total-value {
    font-family: var(--font-titulo);
    color: var(--cor-dourado);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
}

/* ========================================
   FAQ
======================================== */
.faq-section {
    padding: var(--espacamento-section) 20px;
    background: var(--cor-fundo);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(196, 160, 90, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cor-dourado);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--cor-dourado);
    background: rgba(196, 160, 90, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--cor-branco);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--cor-dourado);
}

.faq-question-text {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--cor-dourado);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--cor-cinza);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--cor-branco);
    font-weight: 700;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--cor-cinza);
}

.faq-answer ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--cor-dourado);
    font-weight: bold;
}

.faq-closing {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.1), rgba(196, 160, 90, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(196, 160, 90, 0.3);
    text-align: center;
}

.faq-closing p {
    color: var(--cor-cinza);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-closing p:last-child {
    margin-bottom: 0;
    color: var(--cor-dourado);
    font-weight: 600;
}

/* Responsivo - Offer Section */
@media (max-width: 1024px) {
    .offer-package-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .offer-box {
        padding: 30px 20px;
    }
    
    .offer-package-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .package-item .package-name {
        font-size: 0.95rem;
        margin: 15px 10px 10px;
    }
    
    .package-item .package-value {
        font-size: 1.2rem;
        margin: 0 10px 15px;
    }
    
    .offer-benefits {
        grid-template-columns: 1fr;
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .offer-box .cta-button {
        font-size: 1rem;
        padding: 20px 35px;
    }
}

/* Responsivo - Bonus Section */
@media (max-width: 768px) {
    .bonus-box {
        padding: 25px 20px;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .bonus-item:hover {
        transform: translateY(-5px);
    }
    
    .bonus-item.bonus-super {
        padding: 25px 20px;
        padding-top: 35px;
    }
    
    .bonus-item.bonus-super:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .bonus-super-badge {
        font-size: 0.75rem;
        padding: 5px 15px;
        top: -10px;
    }
    
    .bonus-item.bonus-super .bonus-icon {
        font-size: 3rem;
    }
    
    .bonus-item.bonus-super .bonus-details h3 {
        font-size: 1.3rem;
    }
    
    .bonus-icon {
        font-size: 2.5rem;
    }
    
    .bonus-details h3 {
        font-size: 1.1rem;
    }
    
    .bonus-total {
        padding: 20px;
    }
}

/* Responsivo - FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--espacamento-mobile) 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-closing {
        padding: 25px 20px;
    }
    
    .faq-closing p {
        font-size: 1rem;
    }
}

/* ========================================
   GARANTIA
======================================== */
.guarantee-section {
    padding: var(--espacamento-section) 20px;
    background: var(--cor-fundo);
}

.guarantee-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--cor-lilas);
}

.guarantee-badge {
    font-size: 4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-dourado);
}

.guarantee-badge svg {
    stroke: var(--cor-dourado);
}

.guarantee-box .section-title {
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.3rem;
    color: var(--cor-branco);
    margin-bottom: 15px;
    font-weight: 600;
}

.guarantee-subtext {
    font-size: 1.1rem;
    color: var(--cor-cinza);
    margin-bottom: 25px;
}

.guarantee-footer {
    font-size: 1.2rem;
    color: var(--cor-dourado);
    font-weight: 600;
}

/* ========================================
   SUA MENTORA
======================================== */
.mentor-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-cinza-escuro) 100%);
}

.mentor-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-image-wrapper {
    flex: 0 0 400px;
}

.mentor-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 160, 90, 0.3);
}

.mentor-info {
    flex: 1;
}

.mentor-name {
    font-family: var(--font-titulo);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--cor-dourado);
    margin-bottom: 30px;
    font-weight: 700;
}

.mentor-credentials {
    margin: 0;
}

.mentor-credentials p {
    font-size: 1.1rem;
    color: var(--cor-cinza);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ========================================
   FECHAMENTO INSPIRACIONAL
======================================== */
.closing-section {
    padding: var(--espacamento-section) 20px;
    background: linear-gradient(135deg, rgba(124, 108, 243, 0.1) 0%, var(--cor-fundo) 50%, rgba(196, 160, 90, 0.1) 100%);
    text-align: center;
}

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

.closing-text {
    font-family: var(--font-titulo);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--cor-branco);
    margin-bottom: 10px;
    line-height: 1.4;
}

.closing-highlight {
    font-family: var(--font-titulo);
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--cor-dourado);
    margin: 30px 0;
    font-weight: 700;
}

.closing-final {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cor-cinza);
    margin-bottom: 50px;
}

/* ========================================
   SEÇÃO VOLTAR AO SITE
======================================== */
.back-to-site-section {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.back-to-site-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.back-to-site-button {
    display: inline-block;
    background-color: #2d7a2d;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 14px 60px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-to-site-button:hover {
    background-color: #225e22;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--cor-cinza-escuro);
    padding: 50px 20px 40px;
    text-align: center;
    border-top: 2px solid var(--cor-dourado);
}

.footer-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.footer-copyright {
    color: var(--cor-branco);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-address {
    color: var(--cor-cinza);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 250px;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
    }
    
    .footer-address {
        font-size: 0.85rem;
    }
}

/* ========================================
   ANIMAÇÕES
======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   RESPONSIVIDADE
======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-wrapper {
        gap: 40px;
    }
    
    .hero-logo {
        max-width: 110px;
    }
    
    .hero-image-placeholder {
        max-width: 400px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-single {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --espacamento-section: var(--espacamento-mobile);
    }
    
    .hero {
        padding: 50px 20px 60px;
        min-height: auto;
    }
    
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        display: contents;
    }
    
    .hero-badge {
        order: 1;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-logo {
        max-width: 100px;
        margin: 0 auto;
    }
    
    .hero-offer {
        font-size: 0.85rem;
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .hero-image {
        order: 2;
        margin-bottom: 20px;
    }
    
    .hero-title {
        order: 3;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        order: 4;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-description {
        order: 5;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-benefits {
        order: 6;
        width: 100%;
        max-width: 480px;
        margin: 0 auto 20px;
    }
    
    .hero .cta-button {
        order: 7;
        text-align: center;
        align-self: center;
    }
    
    .hero-image-placeholder {
        max-width: 400px;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .palliative-section {
        padding: 50px 20px;
    }
    
    .palliative-card {
        padding: 30px 22px;
        border-radius: 12px;
        border-left-width: 4px;
    }
    
    .palliative-text {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .palliative-consequence {
        font-size: 1.05rem;
        line-height: 1.45;
    }
    
    .pain-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .pain-image-wrapper {
        flex: 1;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .pain-list {
        order: 2;
    }
    
    .pain-item {
        padding: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-image-wrapper {
        flex: 1;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .benefits-list {
        order: 2;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-single {
        padding: 0 10px;
    }
    
    .testimonials-single img {
        border-radius: 15px;
    }
    
    .testimonial-image-card {
        max-width: 100%;
        min-height: 350px;
    }
    
    .testimonial-image-card img {
        min-height: 350px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .bonus-list {
        padding: 20px;
    }
    
    .offer-price {
        padding: 25px 15px;
    }
    
    .price-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-divider {
        display: none;
    }
    
    .bonus-aluno-text {
        font-size: 1rem;
        padding: 12px;
    }
    
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .mentor-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .mentor-image-wrapper {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .mentor-credentials p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 0.9rem;
    }
    
    .cta-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 90px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
    }
    
    .testimonials-single img {
        border-radius: 10px;
    }
    
    .testimonial-image-card {
        min-height: 300px;
    }
    
    .testimonial-image-card img {
        min-height: 300px;
    }
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   BOTÃO FLUTUANTE DO WHATSAPP
======================================== */
.whatsapp-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2147483647;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Overlay do Popup WhatsApp */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

/* Container do Popup WhatsApp */
.popup-container {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Botão Fechar Popup */
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #333;
}

/* Header do Popup WhatsApp */
.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.popup-header-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.popup-header h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.popup-header p {
    font-size: 14px;
    color: #666;
}

/* Formulário WhatsApp */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.submit-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mensagem de Status WhatsApp */
.status-message {
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsividade WhatsApp */
@media (max-width: 480px) {
    .whatsapp-float-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .popup-container {
        padding: 25px;
    }

    .popup-header h2 {
        font-size: 20px;
    }
}

/* ========================================
   POPUP MAILCHIMP CHECKOUT
======================================== */
.mailchimp-popup {
    max-width: 600px;
    width: 90%;
}

.mailchimp-popup .popup-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.mailchimp-popup .popup-header h2 {
    color: var(--cor-dourado);
    font-family: var(--font-titulo);
    font-size: 26px;
    margin-bottom: 8px;
}

.mailchimp-popup .popup-header p {
    color: #666;
    font-size: 15px;
}

#mc_embed_shell {
    width: 100%;
}

#mc_embed_signup {
    background: transparent !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
}

#mc_embed_signup_scroll {
    padding: 0;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

#mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 20px;
    width: 100%;
}

#mc_embed_signup .mc-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

#mc_embed_signup .mc-field-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

#mc_embed_signup .mc-field-group input:focus {
    border-color: var(--cor-dourado);
    box-shadow: 0 0 0 3px rgba(196, 160, 90, 0.1);
}

#mc_embed_signup .clear {
    clear: both;
    margin-top: 20px;
    width: 100%;
}

#mc_embed_signup .button {
    background: linear-gradient(135deg, var(--cor-dourado), #D4B570);
    color: var(--cor-fundo);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#mc_embed_signup .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 160, 90, 0.4);
}

#mc_embed_signup #mce-responses {
    margin-top: 15px;
}

#mc_embed_signup .response {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}

#mc_embed_signup #mce-error-response {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#mc_embed_signup #mce-success-response {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Status Message Checkout */
#checkoutStatusMessage {
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

#checkoutStatusMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#checkoutStatusMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .mailchimp-popup {
        width: 95%;
        max-width: 95%;
    }

    .mailchimp-popup .popup-header h2 {
        font-size: 22px;
    }

    #mc_embed_signup .button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ========================================
   DROPDOWN DE AULAS
======================================== */
.course-dropdown {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 160, 90, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-title {
    font-family: var(--font-titulo);
    font-size: 1.1rem;
    color: var(--cor-dourado);
    padding: 15px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.dropdown-title::-webkit-details-marker {
    display: none;
}

.dropdown-title::after {
    content: '▼';
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.course-dropdown[open] .dropdown-title::after {
    transform: rotate(180deg);
}

.dropdown-title:hover {
    background: rgba(196, 160, 90, 0.1);
}

.dropdown-content {
    padding: 20px;
    background: rgba(11, 11, 15, 0.5);
    text-align: left;
}

.module-section {
    margin-bottom: 20px;
}

.module-section:last-child {
    margin-bottom: 0;
}

.module-section h4 {
    font-family: var(--font-titulo);
    font-size: 1rem;
    color: var(--cor-lilas);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(124, 108, 243, 0.3);
}

.module-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.module-section li {
    color: var(--cor-cinza);
    font-size: 0.95rem;
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.module-section li:hover {
    color: var(--cor-branco);
    padding-left: 25px;
}

.module-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cor-dourado);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .dropdown-title {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .dropdown-content {
        padding: 15px;
    }

    .module-section h4 {
        font-size: 0.95rem;
    }

    .module-section li {
        font-size: 0.9rem;
        padding: 5px 0 5px 18px;
    }

    .module-section li:hover {
        padding-left: 21px;
    }
}

