@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg-main: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    
    /* Neon Colors (Nexio Inspired) */
    --accent-neon: #ff007f;
    --accent-glow: rgba(255, 0, 127, 0.4);
    --accent-purple: #8a2be2;
    --accent-purple-glow: rgba(138, 43, 226, 0.2);
    
    /* LabDidatica Value Stack Colors */
    --success-green: #10b981;
    --success-bg: rgba(16, 185, 129, 0.1);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.page-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* ============================================================
   DOBRA 1.5 - BARRA DE AUTORIDADE PREMIUM (Lovable Dark Luxury)
   ============================================================ */
.authority-bar {
    background: #090610;
    border-top: 1px solid rgba(255, 0, 127, 0.15);
    border-bottom: 1px solid rgba(255, 0, 127, 0.15);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 45px rgba(0,0,0,0.6), inset 0 0 30px rgba(138,43,226,0.03);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    text-align: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* Divisor sutil entre os cards de métricas no desktop */
.metric-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 0 25px rgba(255, 0, 127, 0.35);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Adicionando glows infinitos ao body */
    background-image: 
        radial-gradient(circle at 15% 10%, rgba(255, 0, 127, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 60%, rgba(255, 0, 127, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 85%, rgba(138, 43, 226, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* BACKGROUND GLOWS */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.glow-purple {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    top: 50%;
    left: -200px;
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

/* GLASSMORPHISM CARDS */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255,255,255,0.25);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn-neon {
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-purple));
    color: white;
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-neon:hover {
    box-shadow: 0 12px 40px var(--accent-glow);
}

/* SECTION 1: HERO */
.hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.25; /* Opacidade baixa conforme solicitado */
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-main) 100%);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1100px !important;
}

.tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.br-desktop {
    display: inline;
}
.br-mobile {
    display: none;
}

.hero-headline {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.15em; /* Previne cortes de letras acentuadas sob efeito de linear-gradient clip text */
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 960px !important; /* Aumentamos para caber a frase inteira sem quebra */
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-subtitle span {
    display: block;
    white-space: nowrap; /* Garante exatamente duas linhas no desktop */
}

/* HERO MOCKUP (REMOVIDO DA HERO E ADICIONADO A OPECAO DE VIDEO) */


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* SECTION: TESTIMONIALS (BENTO GRID) */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
}

.testimonial-card p.quote {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f3f46, #18181b);
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-neon);
}

.author-info h4 {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--success-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* PROBLEM AWARENESS */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

.problem-card:hover img {
    opacity: 0.6 !important;
}

.problem-card .icon-box, .problem-card h4 {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.problem-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,0,127,0.1);
    color: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* WHY OTHERS FAIL */
.fail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.fail-item h3 {
    color: #ef4444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fail-item p {
    color: var(--text-secondary);
}

/* AUTHORITY */
.authority-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.authority-img {
    height: 100%;
}

.authority-img img {
    border-radius: 24px;
    border: 1px solid var(--border-card);
    filter: contrast(1.1) grayscale(20%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    border-top: 1px solid var(--border-card);
    padding-top: 32px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent-neon);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VALUE STACK (LABDIDATICA CLONE) */
.value-stack-wrapper {
    position: relative;
    margin-top: 80px;
}

.floating-assets {
    width: 100%;
    max-width: 700px;
    margin: 0 auto -60px; /* Reduzido e puxado para dentro do card, removido o absolute */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    /* Removida a animação de flutuar */
}

.floating-assets img {
    max-width: 100%;
    /* Removing box shadow here since the SVG is already clean and transparent */
}

.stack-card {
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 24px;
    padding: 100px 40px 60px; /* Top padding to accommodate floating assets */
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.stack-header {
    text-align: center;
    margin-bottom: 40px;
}

.stack-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

.stack-header h3 em {
    font-style: italic;
    color: var(--text-secondary);
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.stack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stack-item:last-child {
    border-bottom: none;
}

.stack-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--success-green);
}

.stack-item-left span {
    font-size: 1.1rem;
    font-weight: 500;
}

.pill {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pill.price {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.pill.free {
    background: var(--success-bg);
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pill.bonus {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stack-pricing {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-furion {
    display: inline-block;
    width: 100%;
    padding: 24px;
    text-align: center;
    background: linear-gradient(90deg, #0d2a1c 0%, #22c55e 100%);
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.2), inset 0 0 20px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-furion::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
    mix-blend-mode: overlay;
}

.btn-furion:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.4), inset 0 0 20px rgba(255,255,255,0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.stack-pricing-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stack-pricing-big .installments {
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.stack-pricing-big .currency {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e; /* Verde neon vibrante do CTA */
}

.stack-pricing-big .value {
    font-size: 6rem;
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -2px;
    color: #22c55e; /* Verde neon vibrante do CTA */
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.45);
}

.stack-pricing-big .cents {
    font-size: 3.5rem;
    font-weight: 700;
    color: #22c55e; /* Verde neon vibrante do CTA */
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.45);
}

.stack-pricing-small {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

.guarantee-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.guarantee-card {
    text-align: center;
    padding: 24px;
}

.guarantee-card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.guarantee-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* RESULTS SECTION (Ao Adquirir Hoje) - VERDE */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.result-item {
    display: flex;
    gap: 16px;
    background: rgba(0, 255, 127, 0.02); /* Verde muito sutil */
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 127, 0.1); /* Borda verde suave */
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(0, 255, 127, 0.08);
    border-color: rgba(0, 255, 127, 0.3);
}

.result-item-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.result-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SHIELD SECTION IMPROVEMENTS */
.shield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.shield-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 24px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.shield-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(255,255,255,0.05);
}

.shield-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.shield-card:hover .shield-icon-wrapper {
    transform: scale(1.1);
    color: var(--accent-neon);
    background: rgba(255, 0, 127, 0.1);
    box-shadow: 0 0 40px rgba(255,0,127,0.4);
}

/* FAQ SECTION */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    margin-top: 16px;
    max-height: 200px;
    opacity: 1;
}

.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-card);
    margin-top: 80px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FILM GRAIN */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.10;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    p {
        text-align: justify !important;
    }
    .center-header, .center-header h2, .center-header p {
        text-align: center !important;
    }
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
    .section-header p {
        text-align: justify !important;
    }
    /* Equalizar o H3 do Problem Awareness no celular com o H2 da Camila */
    .problem-title {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }
    .hero {
        min-height: 76vh !important; /* Calibração perfeita para ocupar 76% da viewport móvel */
        padding: 40px 0 10px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .tagline {
        margin-bottom: 16px !important; /* Calibração sutil para subir os elementos */
    }
    .br-desktop {
        display: none !important;
    }
    .br-mobile {
        display: inline !important;
    }
    .hero-headline { 
        font-size: 2.2rem !important; 
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        padding-right: 0 !important;
    }
    .hero-subtitle {
        font-size: 1.0rem !important;
        line-height: 1.45 !important;
        max-width: 100% !important;
        margin: 0 auto 24px !important;
    }
    .authority-bar {
        padding: 10px 0 20px !important;
        min-height: 14vh !important; /* Calibração de 14% da viewport para fechar exatamente o viewport horizontal do mobile em ~90vh */
        display: flex;
        align-items: center;
    }
    .metrics-grid {
        gap: 16px !important;
        width: 100%;
    }
    .metric-card {
        gap: 4px !important;
    }
    .metric-number {
        font-size: 1.9rem !important;
    }
    .metric-label {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
    }
    .testimonials-grid, .problem-grid, .shield-grid, .authority-layout, .guarantee-badges, .results-grid {
        grid-template-columns: 1fr;
    }
    .authority-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .stat-item span.stat-number {
        font-size: 1.5rem !important;
    }
    .stat-item span.stat-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
    }
    .floating-assets {
        margin: 0 auto -20px !important;
    }
    .stack-card { 
        padding: 50px 20px 40px !important; 
    }
    /* Eliminar vácuo preto (gap) enorme entre benefícios e a stack de oferta no mobile */
    section[style*="padding-top: 80px"] {
        padding-top: 15px !important;
    }
    section[style*="padding-top: 40px"] {
        padding-bottom: 15px !important;
    }
    h1 {
        font-size: 2.5rem;
    }
    
    .stack-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 20px;
    }
    .stack-item-left {
        width: 100%;
        align-items: flex-start;
    }
    .stack-item-left span {
        font-size: 1rem;
        line-height: 1.4;
    }
    .stack-item .pill {
        align-self: flex-start;
        margin-left: 40px; /* Alinha com o texto após o ícone de check */
    }
    
    .stack-pricing-big {
        flex-wrap: wrap;
        justify-content: center;
    }
    .stack-pricing-big .value {
        font-size: 4.5rem;
    }
    .stack-pricing-big .cents {
        font-size: 2.5rem;
    }
    .stack-pricing-big .currency {
        font-size: 2rem;
    }
    .stack-pricing-big .installments {
        font-size: 1.5rem;
    }
    
    .mobile-cta-wrapper {
        display: block;
    }
    
    body {
        padding-bottom: 80px; /* Espaço para a CTA flutuante fixa */
    }

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    
    .metric-card:not(:last-child)::after {
        display: none;
    }
    
    .metric-number {
        font-size: 1.5rem !important;
        text-shadow: 0 0 15px rgba(255, 0, 127, 0.3) !important;
    }
    
    .metric-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }

    /* BOTÕES CTA MOBILES LINEARES E ACHATADOS */
    .btn-primary, .btn-furion {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.82rem !important;
        padding: 14px 16px !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 50px !important;
    }

    .mobile-cta-wrapper {
        display: block !important;
        transform: translateY(100px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
    }
    
    .mobile-cta-wrapper.visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Otimização de Gaps de Vácuo no Mobile (V4.7) */
    #testimonials {
        padding-bottom: 25px !important;
    }
    #problem-awareness {
        padding-top: 25px !important;
        padding-bottom: 50px !important; /* Aumentado para respiro ideal sob o CTA */
    }
    #why-others-fail {
        padding-top: 50px !important; /* Aumentado para respiro ideal sob o CTA */
        padding-bottom: 25px !important;
    }
    #jouber-profile {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    #shield-section {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    /* Margens laterais da seção Jouber no mobile — display block sem zerar o padding do container */
    .authority-layout {
        display: block !important;
        gap: 0 !important;
        /* NÃO zerar padding aqui — .authority-layout é também o .container (padding: 0 24px) */
    }
    .authority-img {
        width: 100% !important;
        margin-bottom: 32px !important;
    }
    .authority-img img {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    .authority-text {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .authority-text p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Calibragem de quebra de linha suave do H3 da Oferta */
    .stack-header h3 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
}

.mobile-cta-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: linear-gradient(to top, rgba(5,5,5,1) 50%, rgba(5,5,5,0));
    z-index: 9999;
}
