/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores para Landing de Alta Conversão */
    --bg-dark: #1a1a1a;              /* Fundo escuro principal */
    --bg-section: #2a2a2a;           /* Fundo de seções alternadas */
    --text-primary: #FFFFFF;         /* Texto principal branco */
    --text-secondary: #F5F5F5;       /* Texto secundário cinza claro */
    --text-muted: #CCCCCC;           /* Texto auxiliar */
    
    /* Cores de Conversão */
    --cta-primary: #FFD700;          /* Dourado para CTA principal */
    --cta-hover: #FFC700;            /* Dourado mais escuro no hover */
    --accent: #CC5500;               /* Laranja queimado para destaques */
    --success: #28A745;              /* Verde para validações */
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;    /* Títulos com autoridade */
    --font-body: 'Montserrat', sans-serif;       /* Texto corrido legível */
    
    /* Espaçamentos */
    --container-max: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Efeitos */
    --transition: 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITÁRIOS ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: var(--cta-primary);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--cta-primary), var(--cta-hover));
    border-radius: 2px;
    animation: loading 3s ease-in-out;
}

@keyframes loading {
    0% { width: 0% }
    50% { width: 70% }
    100% { width: 100% }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===== SEÇÃO HERO - BLOCO DE ABERTURA ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.03) 0%, 
        transparent 50%, 
        rgba(204, 85, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--element-spacing);
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 3rem;
}

/* ===== BOTÃO CTA PRINCIPAL - OTIMIZADO 10/10 ===== */
.btn-primary-cta {
    background: #FFD700;                     /* Dourado exato conforme especificação */
    color: #1a1a1a;                         /* Texto escuro para máximo contraste */
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;                       /* Mais pesado para maior impacto */
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;                  /* Mais espaçado para legibilidade */
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    min-width: 380px;                       /* Ligeiramente maior */
    display: inline-block;
    border: 2px solid #FFC700;             /* Borda sutil para definição */
}

.btn-primary-cta:hover {
    background: #FFC700;                    /* Dourado mais escuro no hover */
    transform: translateY(-3px);           /* Elevação mais pronunciada */
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.5);  /* Sombra mais intensa */
    letter-spacing: 2px;                   /* Expansão no hover */
}

.btn-primary-cta:active {
    transform: translateY(0);
}

/* ===== SEÇÃO PROVA SOCIAL - GATILHO DE CONFIANÇA ===== */
.social-proof-section {
    padding: calc(var(--section-padding) * 0.75);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.08) 0%, 
        var(--bg-section) 100%);
}

.social-proof-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-container {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
}

.social-proof-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--cta-primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 0;
    position: relative;
    box-shadow: none;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--cta-primary);
    font-family: var(--font-heading);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.7;
}

.testimonial-attribution {
    font-size: 1.1rem;
    color: var(--cta-primary);
    font-weight: bold;
    font-family: var(--font-heading);
    font-style: normal;
    margin-top: 15px;
}

/* ===== SEÇÃO ARQUITETURA DA TRANSFORMAÇÃO ===== */
.transformation-pillars-section {
    padding: calc(var(--section-padding) * 1.2);
    background-image: linear-gradient(rgba(42, 42, 42, 0.85), rgba(42, 42, 42, 0.85)), url('../images/pillars-background-new.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.transformation-pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.02) 0%, 
        transparent 50%, 
        rgba(42, 42, 42, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(255, 215, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cta-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 40ch;
    margin: 0 auto;
}

/* ===== SEÇÃO PONTOS DE DOR ===== */
.pain-points-section {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.pain-points-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.pain-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cta-primary);
    transition: all var(--transition);
}

.pain-point-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.pain-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--cta-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.pain-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
}

/* ===== SEÇÃO DO MENTOR ===== */
.mentor-section {
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(26, 26, 26, 0.90), rgba(26, 26, 26, 0.90)), url('../images/strategic-work-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.mentor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.02) 0%, 
        transparent 50%, 
        rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mentor-image {
    text-align: center;
    position: relative;
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 480px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 199, 0, 0.05) 50%, 
        transparent 100%);
    border-radius: 25px;
    z-index: -1;
}

.mentor-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    border: 3px solid var(--cta-primary);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 30px rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

.mentor-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(255, 215, 0, 0.25);
    border-color: #FFC700;
}

.mentor-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cta-primary);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.mentor-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: left;
}

.mentor-description strong {
    color: var(--cta-primary);
    font-weight: 600;
}

.mentor-info {
    text-align: center;
    margin-top: 2rem;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cta-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.mentor-specialty {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== SEÇÃO PROGRAMA E INVESTIMENTO ===== */
.program-investment-section {
    padding: calc(var(--section-padding) * 1.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

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

.program-header {
    text-align: center;
    margin-bottom: 4rem;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight-program {
    color: var(--cta-primary);
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.program-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefits-breakdown {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--cta-primary);
    transition: all var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.benefit-info {
    flex: 1;
    position: relative;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.benefit-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.benefit-value {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--cta-primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.investment-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.total-value {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-label {
    display: block;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.total-amount {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-decoration: line-through;
}

.special-offer {
    margin-bottom: 3rem;
}

.offer-badge {
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.offer-pricing {
    margin-bottom: 1.5rem;
}

.offer-label {
    display: block;
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.offer-price {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--cta-primary);
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.savings {
    background: rgba(40, 167, 69, 0.2);
    color: #28A745;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.bonus-qualification-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.bonus-qualification-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--cta-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.bonus-content {
    margin-bottom: 2.5rem;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.bonus-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.bonus-text strong {
    color: var(--cta-primary);
    font-weight: 700;
}

.qualification-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--cta-primary);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--cta-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.bonus-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.urgency-counter {
    background: rgba(204, 85, 0, 0.2);
    color: #FF6B35;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(204, 85, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ===== SEÇÃO DIAGNÓSTICO E QUALIFICAÇÃO ===== */
.diagnosis-qualification-section {
    padding: calc(var(--section-padding) * 1.3);
    background: var(--bg-section);
}

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

.qualification-header {
    text-align: center;
    margin-bottom: 4rem;
}

.qualification-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-free {
    color: var(--cta-primary);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.qualification-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.qualification-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--cta-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--cta-primary), #FFC700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all var(--transition);
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.process-step {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cta-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.process-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.qualification-value {
    text-align: center;
}

.value-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.value-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cta-primary);
}

.value-header i {
    font-size: 1.8rem;
    color: var(--cta-primary);
}

.value-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.value-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.value-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-heading);
}

.value-status {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cta-primary);
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.value-note {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.value-note strong {
    color: var(--cta-primary);
    font-weight: 700;
}

.access-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(40, 167, 69, 0.2);
    color: #28A745;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(40, 167, 69, 0.3);
    margin-top: 1.5rem;
}

.access-note i {
    font-size: 1.3rem;
}

/* ===== SEÇÃO CHAMADA FINAL ===== */
.final-cta-section {
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(42, 42, 42, 0.88), rgba(42, 42, 42, 0.88)), url('../images/victory-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 50%, 
        rgba(204, 85, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.final-cta-button {
    margin-top: 2rem;
}

.cta-reassurance {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* ===== RODAPÉ DISCRETO ===== */
.footer-section {
    padding: 3rem 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

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

.footer-link {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--cta-primary);
    transform: translateY(-2px);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .transformation-pillars-section {
        background-position: center top;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .qualification-process {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .benefit-value {
        position: static;
        margin-top: 1rem;
    }
}

/* Responsividade para testemunhos em desktop */
@media (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: center top;
        min-height: 90vh;
    }
    
    .mentor-section {
        background-position: center center;
    }
    
    .final-cta-section {
        background-position: center center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mentor-photo {
        width: 280px;
        height: 360px;
    }
    
    .mentor-name {
        font-size: 1.5rem;
    }
    
    .mentor-specialty {
        font-size: 1rem;
    }
    
    .pain-point-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pain-text {
        text-align: center;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .transformation-pillars-section {
        background-position: center center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillar-card {
        padding: 2rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .qualification-process {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .program-title {
        font-size: 2.2rem;
    }
    
    .qualification-title {
        font-size: 2.2rem;
    }
    
    .offer-price {
        font-size: 3rem;
    }
    
    .investment-summary {
        padding: 2rem;
    }
    
    .qualification-steps {
        gap: 0.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.5rem 1rem;
    }
    
    .bonus-qualification-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-position: center top;
        min-height: 85vh;
        padding: 3rem 0;
    }
    
    .mentor-section {
        background-position: center top;
    }
    
    .final-cta-section {
        background-position: center center;
    }
    
    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
        word-break: keep-all;
    }
    
    .btn-primary-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 250px;
        min-height: 44px;
    }
    
    .mentor-photo {
        width: 220px;
        height: 280px;
    }
    
    .mentor-name {
        font-size: 1.3rem;
    }
    
    .mentor-specialty {
        font-size: 0.9rem;
    }
    
    .mentor-info {
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .program-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .qualification-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .investment-summary {
        padding: 1.5rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-price {
        font-size: 2.5rem;
    }
    
    .value-box {
        padding: 2rem;
    }
    
    .testimonial-container {
        padding: 20px;
        margin-top: 1.5rem;
    }
    
    .cta-reassurance {
        font-size: 0.75rem;
        margin-top: 8px;
    }
    
    /* Espaçamento vertical otimizado para mobile */
    .social-proof-section,
    .transformation-pillars-section,
    .pain-points-section,
    .mentor-section,
    .program-investment-section,
    .diagnosis-qualification-section,
    .final-cta-section {
        padding: 3rem 0;
    }
}