:root {
    /* Branding Colors */
    --color-primary: #0B5FFF;
    --color-primary-hover: #004ad9;
    --color-bg: #050a14;
    /* Darker, deeper black/blue */
    --color-surface: rgba(17, 24, 39, 0.7);
    /* Glassy default */
    --color-surface-hover: rgba(31, 41, 55, 0.8);
    --color-text: #FFFFFF;
    --color-text-muted: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-bg: radial-gradient(circle at 50% 0%, #1a2c4e 0%, #050a14 60%);
    --gradient-primary: linear-gradient(135deg, #0B5FFF 0%, #004ad9 100%);
    --gradient-glow: radial-gradient(circle, rgba(11, 95, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-width: 1000px;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;

    /* Effects */
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(11, 95, 255, 0.25);
    --blur-md: 12px;
    --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Critical to prevent blob/content spill */
    width: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Double lock */
    width: 100%;
    position: relative;
}

/* Global Centering */
.center-all .container {
    text-align: center;
}

.center-all .container > * {
    margin-left: auto;
    margin-right: auto;
}

.center-all .btn {
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
}

.center-all .grid-cards,
.center-all .qualify-grid,
.center-all .steps-grid,
.center-all .objection-grid,
.center-all .prints-grid {
    justify-items: center;
}

a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
        /* Increased padding for better centering/breathing room */
    }

    .btn {
        white-space: normal;
        /* Allow text wrapping on narrow screens */
        padding: 1rem 1.5rem;
        /* Reduce padding slightly */
        min-width: 0;
        /* Prevent flex rigidness */
    }
}

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

.text-muted {
    color: var(--color-text-muted);
}

.hidden {
    display: none !important;
}

/* Spacing Utilities */
.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.py-lg {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

/* Animation Classes (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays handled in CSS for up to 6 items */
.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Background Blobs (Signature Element) */
.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 95, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.blob-2 {
    top: 40%;
    right: -200px;
    width: 800px;
    height: 800px;
    opacity: 0.5;
}

.blob-3 {
    bottom: 10%;
    left: -200px;
}

@keyframes float {
    0% {
        transform: translate(-50%, 0px);
    }

    50% {
        transform: translate(-50%, 20px);
    }

    100% {
        transform: translate(-50%, 0px);
    }
}

/* "Halo" Signature Ring */
.halo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(11, 95, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: spin 30s linear infinite;
}

.halo-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #bad0f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    font-size: 1rem;
    white-space: nowrap;
    /* Default for desktop */
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(11, 95, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: #fff;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    margin: 0 1rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-btn {
    color: #fff;
}

/* Mobile Optimization: Hide Header Nav/Buttons & Just Show Logo if needed, or completely simplify */
@media (max-width: 899px) {
    .header {
        border-bottom: none;
        background: transparent;
        backdrop-filter: none;
        position: absolute;
        width: 100%;
    }

    .header-content {
        justify-content: center;
    }

    /* Center logo */
    .header-actions {
        display: none;
    }

    /* Hide CTA and Menu on mobile */
    .logo {
        display: none;
    }

    /* User requested "Neutral", maybe just removed? Or keep logo subtle? Request said "FOTO (acima do headline)" as first visual. Let's hide sticky header bar content on mobile to avoid noise. */
}

@media (min-width: 900px) {
    .desktop-nav {
        display: block;
    }

    .menu-btn {
        display: none;
    }

    .logo {
        display: block;
    }
}

/* Mobile Menu - Removed for simpler mobile funnel as requested */
.mobile-menu {
    display: none !important;
}


/* HERO Section */
.hero {
    padding: 6rem 0 4rem 0;
    /* Standard desktop padding */
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    width: 100%;
}

@media (max-width: 768px) {

    /* Ultra compact for mobile above-fold CTA visibility */
    .hero {
        padding-top: 1rem;
        /* Very minimal top padding on mobile */
        padding-bottom: 2rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }
}

/* Hero Background Image Container */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #050a14;
}

/* Placeholder for the actual image file to be added later */
.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('../Imagens/hero_background_gold.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    /* Slightly reduced opacity for gold background readability */
    /* removed mix-blend-mode to ensure the premium gold colors show correctly */
}

/* Dark Overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 10, 20, 0.6) 0%, rgba(5, 10, 20, 0.92) 100%);
    z-index: 1;
}

/* Hero Portrait Layer (Behind Text) */
.hero-portrait-layer {
    position: absolute;
    top: 150px;
    /* Pushed down on desktop too, to match mobile "badges on black" look */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    /* Constrain width so it doesn't splay on ultrawide */
    z-index: 1;
    /* Above background/blobs (0), below content (2) */
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom */
}

.hero-portrait-img {
    height: 100%;
    /* Fill height */
    width: auto;
    object-fit: cover;
    opacity: 1;
    /* Full opacity as requested for sharpness */
    /* MASK UPDATE: 
       - Top: Fade from transparent (0%) to black (15%) to hide the "white part" at the top without cutting heads.
       - Bottom: Fade out at very bottom (85-100%) for smooth scroll blend. 
    */
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Mobile specific portrait adjustment */
@media (max-width: 768px) {
    .hero-portrait-layer {
        align-items: flex-start;
        justify-content: center;
        top: 220px;
        /* Pushed down to clear the top 3 lines (badges) so faces don't overlap them */
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .hero-portrait-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top center;
        opacity: 0.6;
        /* Mobile gradient: standard */
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    }
}

/* Animated Particles (Signature Element) */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 95, 255, 0.4);
    box-shadow: 0 0 10px rgba(11, 95, 255, 0.2);
    animation: float-particle 15s infinite linear;
}

.p1 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    opacity: 0.5;
}

.p2 {
    width: 4px;
    height: 4px;
    top: 60%;
    right: 100%;
    animation-duration: 25s;
    opacity: 0.3;
    animation-delay: 2s;
}

.p3 {
    width: 8px;
    height: 8px;
    bottom: 10%;
    left: 30%;
    animation-duration: 18s;
    opacity: 0.2;
    animation-delay: 5s;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}


.hero-container {
    max-width: 900px;
    width: 100%;
    /* Ensure full width availability */
    position: relative;
    z-index: 2;
    /* Above bg */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    /* Ensure centering */
    padding: 0 0.5rem;
    /* Prevent edge touching but maximize width */
}


/* HERO badges wrapper */
.hero-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

@media (max-width: 899px) {
    /* Removed .hero-photo-mobile styling as requested */

    .hero-badges {
        order: 0;
        margin-bottom: 1rem;
    }

    h1 {
        order: 1;
        margin-bottom: 0.75rem;
        font-size: 1.6rem;
        line-height: 1.25;
        width: 100%;
        text-align: center;
    }

    .hero-sub {
        order: 2;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        width: 100%;
        text-align: center;
    }

    /* Mobile Bullets removed from prompt request, replaced by Badges strategy */
    .hero-bullets {
        display: none;
    }

    .hero-cta-group {
        order: 4;
        margin-top: 0.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 350px;
        padding: 1rem;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(11, 95, 255, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(11, 95, 255, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 95, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(11, 95, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 95, 255, 0);
    }
}

.hero-sub {
    font-family: 'Poppins', sans-serif;
    /* Switched to Poppins for premium look */
    font-size: 1.35rem;
    font-weight: 500;
    /* Increased weight for visibility */
    color: #ffffff;
    /* Pure white for max contrast */
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    /* Stronger text shadow for pop against image */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
    /* Ensure it's above image layer (which is z-1) */
    letter-spacing: 0.01em;
    /* Slight spacing for definition */
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    font-weight: 500;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
}

.check-icon {
    width: 22px;
    height: 22px;
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}


/* Nav Block - "Continue Navegando" */
.section-nav-block {
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0.8;
}

.nav-questions {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.nav-sep {
    color: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}


/* Bridge "Então você precisa..." */
.section-bridge {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.bridge-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bridge-text {
    font-size: 1.2rem;
    margin-bottom: 0;
}


/* Qualification Grid */
.section-qualify {
    padding: 5rem 0;
    position: relative;
}

.qualify-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .qualify-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.qualify-box {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.qualify-box:hover {
    transform: translateY(-5px);
}

.qualify-box.yes {
    background: linear-gradient(135deg, rgba(11, 95, 255, 0.05) 0%, rgba(10, 15, 31, 0.6) 100%);
    border-color: rgba(11, 95, 255, 0.2);
}

.qualify-box.no {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(10, 15, 31, 0.6) 100%);
    border-color: rgba(239, 68, 68, 0.15);
}

.qualify-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qualify-box ul {
    list-style: none;
    padding: 0;
}

.qualify-box li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    color: #d1d5db;
}

.qualify-box.yes li::before {
    content: '✓';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.qualify-box.no li::before {
    content: '×';
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    top: -2px;
}


/* Objective Process */
.section-objective {
    padding: 6rem 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Abstract bg decoration */
.section-objective::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b5fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


/* Credibility Cards & Prints */
.section-credibility {
    padding: 6rem 0;
}

.grid-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Grid of Prints */
.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.proof-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.proof-item.large {
    flex: 2;
    min-width: 300px;
    max-width: 800px;
}

.proof-item.mobile {
    flex: 1;
    min-width: 250px;
}

.print-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.print-img:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 95, 255, 0.3);
}

.print-img-16-9 {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .proof-feature {
        flex-direction: column;
        gap: 2rem;
    }

    .proof-item.large,
    .proof-item.mobile {
        width: 100%;
        flex: auto;
    }
}

.print-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(11, 95, 255, 0.3);
}

.print-placeholder::after {
    content: 'Print ' attr(data-index);
    font-weight: 500;
}


/* Reasons - Deep Dive */
.section-reasons {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-reasons .btn {
        width: 100%;
        max-width: 360px;
        white-space: normal;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.reason-block {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 5rem auto;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .reason-block {
        flex-direction: column;
        gap: 1rem;
    }
}

.reason-num {
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    line-height: 0.8;
    flex-shrink: 0;
}

.reason-content {
    padding-top: 1rem;
}

.reason-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.reason-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.reason-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 1rem;
}

.reason-bullets li::before {
    content: "→";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Mentor Section */
.section-mentor {
    padding: 6rem 0;
    background: linear-gradient(90deg, #050a14 0%, #0a1120 100%);
    position: relative;
}

.section-mentor::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(11, 95, 255, 0.08) 0%, transparent 70%);
}

.mentor-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 900px) {
    .mentor-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }

    .section-mentor .mentor-intro {
        text-align: left;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
        max-width: 520px;
    }

    .section-mentor .mentor-gallery {
        width: 100%;
        max-width: 520px;
        margin-left: 0;
        margin-right: 0;
    }

    .section-mentor .mentor-bio {
        text-align: left;
        margin-left: auto;
        margin-right: 0;
        max-width: 420px;
    }
}

.mentor-intro {
    text-align: left;
}

.mentor-intro h2 {
    margin-bottom: 1rem;
}

.mentor-intro p {
    max-width: 560px;
}

/* Gallery Replacement Styles */
.mentor-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.gallery-img:hover {
    transform: translateY(-5px);
}

.mentor-bio {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.mentor-bio .reason-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1.5rem;
}

.mentor-bio h2 {
    margin-bottom: 1.5rem;
}



/* Diagnostic Session Steps */
.section-steps {
    padding: 6rem 0;
    background-color: rgba(10, 15, 31, 0.5);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }
}

.step-card {
    flex: 1;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-header {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}


/* Pre-Apply Objections */
.section-objections {
    padding: 5rem 0;
}

.objection-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .objection-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.objection-item {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.objection-q {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.objection-a {
    color: #94a3b8;
    font-size: 0.95rem;
}


/* Application Overlay */
.section-apply {
    padding: 6rem 0;
    position: relative;
}

.apply-box {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}


/* FAQ */
.section-faq {
    padding: 6rem 0 8rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f1f5f9;
    font-weight: 500;
    font-size: 1.15rem;
}

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


/* Footer */
.footer {
    padding: 4rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    border-top: 1px solid var(--color-border);
    background: #02040a;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #fff;
}


/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 20px));
    /* Safe area for iPhone home bar */
    background: rgba(5, 10, 20, 0.95);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-cta .btn {
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 15px rgba(11, 95, 255, 0.4);
    font-size: 1rem;
    padding: 1rem;
}

.sticky-cta.translate-y-full {
    transform: translateY(110%);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ========== Lead Popup (Aplicação) ========== */
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lead-popup.is-open {
    opacity: 1;
    visibility: visible;
}
.lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}
.lead-popup__box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #0a1628 0%, #050a14 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
}
.lead-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lead-popup__close:hover {
    opacity: 1;
}
.lead-popup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.lead-popup__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.lead-popup__brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}
.lead-popup__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 20px;
    text-align: center;
    line-height: 1.35;
}
.lead-popup__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lead-popup__section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 16px 0 4px;
}
.lead-popup__section-label:first-of-type {
    margin-top: 0;
}
.lead-popup__label {
    display: block;
}
.lead-popup__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.lead-popup__input::placeholder {
    color: #6b7280;
}
.lead-popup__input:focus {
    outline: none;
    border-color: var(--color-primary);
}
.lead-popup__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.lead-popup__radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.lead-popup__radio-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}
.lead-popup__submit {
    margin-top: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lead-popup__submit:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}
.lead-popup__security {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 16px 0 0;
}

/* Leads salvos - tabela */
.leads-salvos__empty {
    margin: 0;
}
.leads-salvos__table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}
.leads-salvos__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.leads-salvos__table th,
.leads-salvos__table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.leads-salvos__table th {
    background: rgba(11, 95, 255, 0.15);
    color: var(--color-text);
    font-weight: 600;
}
.leads-salvos__table td {
    color: var(--color-text-muted);
}
.leads-salvos__table tbody tr:last-child td {
    border-bottom: none;
}
.leads-salvos__table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 640px) {
    .leads-salvos__table th,
    .leads-salvos__table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

/* ========== Thank You Popup (pós-envio) ========== */
.thankyou-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.thankyou-popup.is-open {
    opacity: 1;
    visibility: visible;
}
.thankyou-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    animation: thankyou-fadeIn 0.4s ease forwards;
}
.thankyou-popup.is-open .thankyou-popup__backdrop {
    animation: thankyou-fadeIn 0.4s ease forwards;
}
.thankyou-popup__box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, #0a1628 0%, #050a14 100%);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--color-border);
    text-align: center;
    transform: scale(0.85) translateY(20px);
    opacity: 0;
}
.thankyou-popup.is-open .thankyou-popup__box {
    animation: thankyou-boxIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}
.thankyou-popup__icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}
.thankyou-popup__check {
    width: 100%;
    height: 100%;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.thankyou-popup__circle {
    stroke: var(--color-primary);
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
}
.thankyou-popup__path {
    stroke: var(--color-primary);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}
.thankyou-popup.is-open .thankyou-popup__circle {
    animation: thankyou-drawCircle 0.6s ease 0.3s forwards;
}
.thankyou-popup.is-open .thankyou-popup__path {
    animation: thankyou-drawPath 0.5s ease 0.6s forwards;
}
.thankyou-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 16px;
}
.thankyou-popup__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0 0 12px;
}
.thankyou-popup__sub {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.9;
    margin: 0 0 24px;
}
.thankyou-popup__btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.thankyou-popup__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
@keyframes thankyou-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes thankyou-boxIn {
    from {
        transform: scale(0.85) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
@keyframes thankyou-drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes thankyou-drawPath {
    to { stroke-dashoffset: 0; }
}