/**
 * MhSys SaaS - Public Landing Pages (LPs), Lead Capture & Front-Facing Pages Stylesheet
 * Modificado: 2026-08-22 23:07:38
 */

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

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 1)
   ======================================================== */
.lp-maintenance-top-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #ef4444 50%, #b91c1c 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.animate-pulse {
    animation: pulse-warn 1.5s infinite;
}
        @keyframes pulse-warn {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
        }

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 2)
   ======================================================== */
:root {
        --effect-scale: 1;
        --backdrop-blur: 16px;
        --cor-principal-rgb: 99, 102, 241;
    }

    /* --- SEÇÃO GRADE DE ÍCONES (LINKS E ATALHOS) --- */
    
    .grade-card {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid var(--border) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    
    .grade-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: var(--primary, #0284c7) !important;
        box-shadow: 0 20px 35px -10px rgba(var(--cor-principal-rgb, 99, 102, 241), 0.35) !important;
    }

    .grade-card-title {
        color: var(--text-light) !important;
    }
    
    .grade-card p, .grade-card span, .grade-card small {
        color: var(--text-muted) !important;
    }
    
    .grade-card-icon-wrapper {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    
    .grade-card:hover .grade-card-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }
    
    /* Efeito de Pulso Hover (Hover Pulse) */
    .grade-card-pulse:hover {
        animation: cardPulseEffect 1.5s infinite alternate;
    }
    
    @keyframes cardPulseEffect {
        0% {
            box-shadow: 0 0 0 0 rgba(var(--cor-principal-rgb), 0.4);
            transform: scale(1);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(var(--cor-principal-rgb), 0);
            transform: scale(1.02);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(var(--cor-principal-rgb), 0);
            transform: scale(1);
        }
    }

    /* --- BASE ENGINE DE TRANSIÇÃO DO HERO --- */
    .main-viewport, .hero-section {
        perspective: 1000px;
    }

    #hero-animated-bg-canvas, .hero-slideshow-container {
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                    filter 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* --- REGRAS DE MOUSE OVER (HOVER STATES) --- */
    .hero-hover-zoom-in:hover #hero-animated-bg-canvas,
    .hero-hover-zoom-in:hover .hero-slideshow-container {
        transform: scale(calc(1.08 * var(--effect-scale, 1))) !important;
    }
    
    .hero-hover-zoom-out:hover #hero-animated-bg-canvas,
    .hero-hover-zoom-out:hover .hero-slideshow-container {
        transform: scale(calc(0.92 * var(--effect-scale, 1))) !important;
    }
    
    .hero-hover-blur:hover #hero-animated-bg-canvas,
    .hero-hover-blur:hover .hero-slideshow-container {
        filter: blur(calc(6px * var(--effect-scale, 1))) !important;
    }
    
    .hero-hover-hue:hover #hero-animated-bg-canvas,
    .hero-hover-hue:hover .hero-slideshow-container {
        filter: hue-rotate(calc(90deg * var(--effect-scale, 1))) !important;
    }
    
    :root {
        --bg-dark: #fdfcff;
        --bg-card: rgba(255, 255, 255, 0.92);
        --bg-card-hover: #ffffff;
        --primary: #6366f1;
        --cyber-violet: #6366f1;
        --text-light: #0f172a;
        --text-muted: #475569;
        --border: rgba(0, 0, 0, 0.08);
        --border-hover: rgba(0, 0, 0, 0.16);
        --btn-radius: 50px;
        --footer-bg: #030712;
        --accordion-btn-color: #0f172a;
        --accordion-active-bg: rgba(99, 102, 241, 0.08);
        --bg-glass: rgba(255, 255, 255, 0.85);
    }

    :root[data-theme="dark"] {
        --bg-dark: #070a12;
        --bg-card: rgba(15, 23, 42, 0.75);
        --bg-card-hover: rgba(15, 23, 42, 0.95);
        --primary: #6366f1;
        --cyber-violet: #6366f1;
        --text-light: #ffffff;
        --text-muted: #cbd5e1;
        --border: rgba(255, 255, 255, 0.12);
        --border-hover: rgba(255, 255, 255, 0.35);
        --footer-bg: #030712;
        --accordion-btn-color: #ffffff;
        --accordion-active-bg: rgba(99, 102, 241, 0.18);
        --bg-glass: rgba(15, 23, 42, 0.8);
    }

    .badge-accent {
        background: rgba(var(--cor-principal-rgb, 255, 107, 0), 0.15) !important;
        color: var(--primary, #ff6b00) !important;
        border: 1px solid rgba(var(--cor-principal-rgb, 255, 107, 0), 0.35) !important;
        font-weight: 700 !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.08em !important;
        border-radius: 50px !important;
        box-shadow: 0 2px 10px rgba(var(--cor-principal-rgb, 255, 107, 0), 0.2) !important;
        display: inline-block;
    }

    :root[data-theme="light"] {
        --bg-dark: #ffffff;
        --bg-card: rgba(255, 255, 255, 0.92);
        --bg-card-hover: #ffffff;
        --text-light: #0f172a;
        --text-muted: #475569;
        --border: rgba(0, 0, 0, 0.08);
        --border-hover: rgba(0, 0, 0, 0.16);
        --footer-bg: #f8fafc;
        --accordion-btn-color: #0f172a;
        --accordion-active-bg: rgba(99, 102, 241, 0.08);
        --bg-glass: rgba(255, 255, 255, 0.85);
    }

    /* Forçamento de Largura Máxima Fluida nas Seções & Containment Inteligente */
    .lp-section-fluid {
        width: 100%;
        max-width: 100%;
        padding: clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 4vw, 5rem);
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden; /* Evita margens negativas de .row do Bootstrap transbordarem */
    }

    /* Centralização de Conteúdo para Telas Ultragrandes (Ultra-wide / 4K) */
    .lp-section-fluid > .container-fluid,
    .lp-section-fluid > .container,
    .hero-section > .container-fluid,
    .hero-section > .container,
    .navbar-glass > .container-fluid,
    .footer-lp-dynamic > .container-fluid {
        max-width: 1520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    html {
        scroll-behavior: smooth !important;
        scroll-padding-top: 90px;
        width: 100%;
        max-width: 100%;
        overflow-x: clip !important;
        box-sizing: border-box;
    }

    *, *::before, *::after {
        box-sizing: border-box;
    }

    section, .hero-section, .service-section, .sobre-section, .prova-social-section, .whatsapp-section, .simulador-section, .uploads-section, .faq-section, .video-section, .grade-icones-section, .texto-livre-section, .cacador-leads-section, .lp-section-fluid, [id] {
        scroll-margin-top: 90px;
    }

    body {
        background-color: var(--bg-dark) !important;
        color: var(--text-light) !important;
        font-family: var(--font-family-base, 'Outfit', 'Inter', sans-serif) !important;
        letter-spacing: -0.01em;
        -webkit-font-smoothing: antialiased;
        min-height: 100vh;
        overflow-x: clip !important;
        position: relative;
        width: 100%;
        max-width: 100%;
        transition: background-color 0.5s ease, color 0.5s ease;
    }

    /* Pilar A: Aurora Glow Effect (Blurs de Fundo) */
    .accent-blur-1, .accent-blur-2 {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        filter: blur(150px);
        transition: opacity 0.5s ease;
    }

    .accent-blur-1 {
        background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        top: -150px;
        left: -150px;
    }

    .accent-blur-2 {
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        bottom: 200px;
        right: -100px;
    }

    :root[data-theme="dark"] .accent-blur-1,
    :root[data-theme="dark"] .accent-blur-2 {
        opacity: 0.15;
    }

    :root[data-theme="light"] .accent-blur-1,
    :root[data-theme="light"] .accent-blur-2 {
        opacity: 0.05;
    }

    /* Glassmorphism Header */
    .navbar-glass {
        background: var(--bg-glass) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding-top: 1.5rem !important; /* Respiro expandido inicial */
        padding-bottom: 1.5rem !important;
        transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
    }

    /* Correção Premium da Altura de Rolagem (Evita Menu Pequeno Demais) */
    .navbar-glass.header-scrolled {
        padding-top: 1.0rem !important; /* Altura corrigida e proporcional */
        padding-bottom: 1.0rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .navbar-glass.header-scrolled .lp-logo-img {
        max-height: 46px; /* Ajuste sutil na logo para acompanhar a proporção */
    }
    .navbar-glass.header-scrolled .logo-container-flutuante .lp-logo-img {
        max-height: 54px !important;
    }

    :root[data-theme="dark"] .navbar-glass.header-scrolled {
        background: rgba(4, 9, 20, 0.95) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    :root[data-theme="light"] .navbar-glass.header-scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .lp-logo-link {
        display: inline-flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .lp-logo-link:hover {
        transform: scale(1.02);
    }

    .lp-logo-img {
        max-height: 54px;
        width: auto;
        object-fit: contain;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    }

    :root[data-theme="dark"] .lp-logo-img {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    }

    :root[data-theme="light"] .lp-logo-img {
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.04));
    }

    .navbar-glass.header-scrolled .lp-logo-img {
        max-height: 46px; /* Ajuste sutil na logo para acompanhar a proporção */
    }

    .footer-logo-img {
        max-height: 48px;
        width: auto;
        object-fit: contain;
        transition: all 0.3s ease;
        filter: grayscale(1) opacity(0.7);
    }

    :root[data-theme="dark"] .footer-logo-img {
        filter: grayscale(1) brightness(1.6) opacity(0.7);
    }

    .footer-logo-img:hover {
        filter: none;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .lp-logo-img {
            max-height: 40px !important;
        }
        .navbar-glass {
            padding-top: 0.75rem !important;
            padding-bottom: 0.75rem !important;
        }
    }

    .nav-link-lp {
        color: var(--text-muted);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 6px 0;
    }

    .nav-link-lp:hover {
        color: var(--text-light);
    }

    .nav-link-lp::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-link-lp:hover::after {
        width: 100%;
    }

    .btn-theme-toggle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-light);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        font-size: 1.15rem;
    }

    .btn-theme-toggle:hover {
        transform: scale(1.08);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary);
        box-shadow: 0 0 12px var(--primary-glow);
    }

    .hero-section {
        padding: clamp(90px, 12vh, 140px) 0 clamp(60px, 8vh, 90px) 0;
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    @media (min-width: 992px) {
        .hero-section.hero-full-height,
        .hero-section[style*="min-height: 100vh"],
        .hero-section[style*="min-height:100vh"],
        .hero-section[style*="min-height: 100%"],
        .hero-section[style*="min-height:100%"] {
            min-height: 100vh !important;
            min-height: 100dvh !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            padding-top: clamp(80px, 10vh, 120px) !important;
            padding-bottom: clamp(50px, 6vh, 80px) !important;
        }

        .lp-section-full-height,
        .lp-section-fluid[style*="min-height: 100vh"],
        .lp-section-fluid[style*="min-height:100vh"],
        section[style*="min-height: 100vh"],
        section[style*="min-height:100vh"] {
            min-height: 100vh !important;
            min-height: 100dvh !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
        }
    }

    /* Badge Premium */
    .hero-badge {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 24px;
        border-radius: 100px;
        font-size: 0.88rem;
        font-weight: 600;
        margin-bottom: 30px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    /* A. Gradiente Animado e Efeitos de Animação do Título da Hero */
    @keyframes moving-gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .gradient-text-animated {
        background: linear-gradient(90deg, var(--accent), var(--cyber-violet), var(--primary), var(--accent));
        background-size: 300% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: moving-gradient 6s infinite linear;
        display: inline-block;
        position: relative;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5.2vw, 4.25rem);
        font-weight: 950;
        line-height: 1.12;
        margin-bottom: clamp(16px, 2.5vw, 28px);
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
        word-break: break-word;
        overflow-wrap: break-word;
        position: relative;
        will-change: transform, opacity;
    }

    /* 1. Nenhum (Estático) */
    .hero-title.hero-title-anim-none .gradient-text-animated,
    .hero-title.hero-title-anim-estatico .gradient-text-animated {
        animation: none !important;
        background-position: 0% 50% !important;
    }

    /* 2. Gradiente Cromático Dinâmico (Padrão) */
    .hero-title.hero-title-anim-moving-gradient .gradient-text-animated {
        animation: moving-gradient 6s infinite linear;
    }

    /* 3. Fade In Suave */
    @keyframes heroTitleFadeIn {
        0% {
            opacity: 0;
            transform: translateY(16px) scale(0.98);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    .hero-title.hero-title-anim-fade-in {
        animation: heroTitleFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-title.hero-title-anim-fade-in .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 4. Slide Up (De baixo para cima) */
    @keyframes heroTitleSlideUp {
        0% {
            opacity: 0;
            transform: translateY(45px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .hero-title.hero-title-anim-slide-up {
        animation: heroTitleSlideUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-title.hero-title-anim-slide-up .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 5. Zoom In (Aproximação Elástica) */
    @keyframes heroTitleZoomIn {
        0% {
            opacity: 0;
            transform: scale3d(0.72, 0.72, 0.72);
        }
        70% {
            opacity: 1;
            transform: scale3d(1.04, 1.04, 1.04);
        }
        100% {
            opacity: 1;
            transform: scale3d(1, 1, 1);
        }
    }
    .hero-title.hero-title-anim-zoom-in {
        animation: heroTitleZoomIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .hero-title.hero-title-anim-zoom-in .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 6. Typewriter (Máquina de Escrever) */
    @keyframes heroTitleTypewriterReveal {
        0% {
            clip-path: inset(0 100% 0 0);
            opacity: 0.5;
        }
        100% {
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    @keyframes heroTitleTypewriterCursor {
        0%, 100% {
            border-right-color: transparent;
        }
        50% {
            border-right-color: var(--primary, #FF5500);
        }
    }
    .hero-title.hero-title-anim-typewriter {
        display: inline-block;
        max-width: 100%;
        animation: heroTitleTypewriterReveal 2.2s steps(40, end) forwards;
    }
    .hero-title.hero-title-anim-typewriter .gradient-text-animated {
        padding-right: 6px;
        border-right: 3px solid var(--primary, #FF5500);
        animation: moving-gradient 6s infinite linear, heroTitleTypewriterCursor 0.8s infinite step-end;
    }

    /* 7. Glitch / Cyber Effect (Efeito Digital Futurista) */
    @keyframes heroGlitchSkew {
        0%, 100% { transform: translate(0); }
        20% { transform: translate(-2px, 2px); }
        40% { transform: translate(-2px, -2px); }
        60% { transform: translate(2px, 2px); }
        80% { transform: translate(2px, -2px); }
    }
    @keyframes heroGlitchAnim1 {
        0%, 100% { clip-path: inset(40% 0 61% 0); transform: skew(0.3deg); }
        20% { clip-path: inset(92% 0 1% 0); transform: skew(-0.5deg); }
        40% { clip-path: inset(10% 0 85% 0); transform: skew(0.8deg); }
        60% { clip-path: inset(70% 0 20% 0); transform: skew(-0.3deg); }
        80% { clip-path: inset(25% 0 58% 0); transform: skew(0.5deg); }
    }
    @keyframes heroGlitchAnim2 {
        0%, 100% { clip-path: inset(25% 0 58% 0); transform: skew(-0.4deg); }
        20% { clip-path: inset(70% 0 15% 0); transform: skew(0.6deg); }
        40% { clip-path: inset(5% 0 80% 0); transform: skew(-0.7deg); }
        60% { clip-path: inset(85% 0 5% 0); transform: skew(0.3deg); }
        80% { clip-path: inset(35% 0 45% 0); transform: skew(-0.2deg); }
    }
    .hero-title.hero-title-anim-glitch {
        position: relative;
        animation: heroGlitchSkew 3.5s infinite linear alternate-reverse;
    }
    .hero-title.hero-title-anim-glitch .gradient-text-animated {
        position: relative;
        display: inline-block;
    }
    .hero-title.hero-title-anim-glitch .gradient-text-animated::before,
    .hero-title.hero-title-anim-glitch .gradient-text-animated::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        pointer-events: none;
    }
    .hero-title.hero-title-anim-glitch .gradient-text-animated::before {
        left: 2px;
        text-shadow: -2px 0 #00ffff;
        color: #00ffff;
        -webkit-text-fill-color: #00ffff;
        animation: heroGlitchAnim1 2.5s infinite linear alternate-reverse;
        opacity: 0.75;
    }
    .hero-title.hero-title-anim-glitch .gradient-text-animated::after {
        left: -2px;
        text-shadow: 2px 0 #ff0055;
        color: #ff0055;
        -webkit-text-fill-color: #ff0055;
        animation: heroGlitchAnim2 2s infinite linear alternate-reverse;
        opacity: 0.75;
    }

    /* 8. Bounce In (Elástico) */
    @keyframes heroTitleBounceIn {
        0% {
            opacity: 0;
            transform: translateY(-40px) scale(0.9);
        }
        50% {
            opacity: 1;
            transform: translateY(12px) scale(1.03);
        }
        70% {
            transform: translateY(-6px) scale(0.99);
        }
        85% {
            transform: translateY(3px) scale(1.01);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    .hero-title.hero-title-anim-bounce-in {
        animation: heroTitleBounceIn 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }
    .hero-title.hero-title-anim-bounce-in .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 9. Flip 3D (Giro em Perspectiva) */
    @keyframes heroTitleFlip3D {
        0% {
            opacity: 0;
            transform: perspective(900px) rotateX(75deg) translateZ(-60px);
        }
        60% {
            opacity: 1;
            transform: perspective(900px) rotateX(-12deg) translateZ(15px);
        }
        80% {
            transform: perspective(900px) rotateX(6deg);
        }
        100% {
            opacity: 1;
            transform: perspective(900px) rotateX(0deg) translateZ(0);
        }
    }
    .hero-title.hero-title-anim-flip-3d {
        perspective: 900px;
        transform-style: preserve-3d;
        animation: heroTitleFlip3D 1.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    .hero-title.hero-title-anim-flip-3d .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 10. Blur to Sharp (Desfoque Revelador) */
    @keyframes heroTitleBlurSharp {
        0% {
            opacity: 0;
            filter: blur(24px) brightness(1.7);
            transform: scale(1.08);
        }
        65% {
            opacity: 0.9;
            filter: blur(4px) brightness(1.2);
            transform: scale(1.02);
        }
        100% {
            opacity: 1;
            filter: blur(0) brightness(1);
            transform: scale(1);
        }
    }
    .hero-title.hero-title-anim-blur-sharp {
        animation: heroTitleBlurSharp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    .hero-title.hero-title-anim-blur-sharp .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* 11. Wave / Letter Float (Flutuação de Letras) */
    @keyframes heroTitleWaveFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        25% {
            transform: translateY(-8px) rotate(0.4deg);
        }
        50% {
            transform: translateY(-2px) rotate(-0.3deg);
        }
        75% {
            transform: translateY(-10px) rotate(-0.5deg);
        }
    }
    .hero-title.hero-title-anim-wave-float {
        display: inline-block;
        animation: heroTitleWaveFloat 5.5s ease-in-out infinite;
    }
    .hero-title.hero-title-anim-wave-float .gradient-text-animated {
        animation: moving-gradient 6s infinite linear;
    }

    /* 12. Shine & Neon Glow (Brilho Radiante) */
    @keyframes heroTitleShineGlow {
        0%, 100% {
            filter: drop-shadow(0 0 4px rgba(255, 85, 0, 0.25));
            text-shadow: 0 0 10px rgba(255, 85, 0, 0.2);
        }
        50% {
            filter: drop-shadow(0 0 20px rgba(255, 85, 0, 0.85)) drop-shadow(0 0 35px rgba(255, 42, 0, 0.6));
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 85, 0, 0.9);
        }
    }
    .hero-title.hero-title-anim-shine-glow {
        animation: heroTitleShineGlow 3.5s ease-in-out infinite;
    }
    .hero-title.hero-title-anim-shine-glow .gradient-text-animated {
        animation: moving-gradient 4s infinite linear;
    }

    /* 13. Tracking In (Expansão de Espaçamento) */
    @keyframes heroTitleTrackingIn {
        0% {
            letter-spacing: -0.06em;
            opacity: 0;
            filter: blur(10px);
            transform: translateY(10px);
        }
        50% {
            opacity: 0.7;
            filter: blur(2px);
        }
        100% {
            letter-spacing: normal;
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }
    }
    .hero-title.hero-title-anim-tracking-in {
        animation: heroTitleTrackingIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }
    .hero-title.hero-title-anim-tracking-in .gradient-text-animated {
        animation: moving-gradient 8s infinite linear;
    }

    /* Suporte a Acessibilidade (Redução de Movimento) */
    @media (prefers-reduced-motion: reduce) {
        .hero-title,
        .hero-title .gradient-text-animated,
        .hero-title.hero-title-anim-glitch .gradient-text-animated::before,
        .hero-title.hero-title-anim-glitch .gradient-text-animated::after {
            animation: none !important;
            transform: none !important;
            filter: none !important;
            clip-path: none !important;
            text-shadow: none !important;
        }
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.25vw + 0.35rem, 1.25rem);
        color: var(--text-muted);
        max-width: min(780px, 92%);
        margin: 0 auto clamp(24px, 3vw, 40px) auto;
        line-height: 1.6;
        word-break: break-word;
    }

    /* Pilar C: Micro-Interações nos CTAs (Efeito Cromado) */
    /* Pilar C: Micro-Interações & Configuração Global de Botões (CTAs) */
    .btn-premium,
    .hero-section .btn-premium,
    .lp-btn-cta,
    .btn-header-cta {
        background: var(--lp-btn-bg, linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%)) !important;
        border: var(--lp-btn-border, 1px solid rgba(255, 255, 255, 0.15)) !important;
        color: var(--lp-btn-color, #ffffff) !important;
        font-weight: var(--lp-btn-font-weight, 700) !important;
        text-transform: var(--lp-btn-transform, uppercase) !important;
        letter-spacing: var(--lp-btn-letter-spacing, 0.05em);
        padding: 16px 40px !important;
        border-radius: var(--btn-radius, 50rem) !important;
        position: relative;
        overflow: hidden;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: var(--lp-btn-shadow, 0 0 0 1px var(--primary-glow), 0 8px 30px rgba(0, 0, 0, 0.08));
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        backdrop-filter: var(--lp-btn-backdrop, none);
        -webkit-backdrop-filter: var(--lp-btn-backdrop, none);
        text-decoration: none !important;
    }

    .btn-premium i,
    .hero-section .btn-premium i,
    .lp-btn-cta i,
    .btn-header-cta i {
        color: var(--lp-btn-color, #ffffff) !important;
        transition: transform 0.3s ease;
    }

    .btn-premium:hover i,
    .hero-section .btn-premium:hover i,
    .lp-btn-cta:hover i,
    .btn-header-cta:hover i {
        transform: translateX(3px);
    }

    /* Efeitos de Hover Dinâmicos */
    .lp-btn-hover-lift:hover,
    .btn-premium:hover {
        transform: translateY(-3px);
        box-shadow: var(--lp-btn-hover-shadow, 0 0 0 4px var(--primary-glow), 0 15px 35px var(--primary-glow));
        border-color: rgba(255, 255, 255, 0.35) !important;
    }

    .lp-btn-hover-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px var(--lp-btn-glow, rgba(var(--primary-rgb), 0.75)) !important;
    }

    .lp-btn-hover-pulse {
        animation: lp-btn-pulse-wave 2.2s infinite ease-in-out;
    }

    @keyframes lp-btn-pulse-wave {
        0%, 100% { transform: scale(1); box-shadow: var(--lp-btn-shadow, 0 4px 15px rgba(0,0,0,0.2)); }
        50% { transform: scale(1.035); box-shadow: 0 0 25px var(--lp-btn-glow, rgba(var(--primary-rgb), 0.6)); }
    }

    /* Feixe de Luz Shimmer Metálico */
    .btn-premium::after,
    .lp-btn-hover-shine::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 30%;
        height: 200%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
        transform: rotate(25deg);
        transition: all 0.85s ease;
        pointer-events: none;
    }

    .btn-premium:hover::after,
    .lp-btn-hover-shine:hover::after {
        left: 140%;
    }

    /* Seção de Serviços e Pilar B (Glassmorphism de Alta Fidelidade) */
    .card-service {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--border) !important;
        padding: 50px 35px;
        border-radius: 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card-service:hover {
        transform: translateY(-4px);
        border-color: var(--border-hover) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 25px var(--accent-glow) !important;
        background: var(--bg-card-hover) !important;
    }

    .service-icon-wrapper {
        width: 54px;
        height: 54px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.6rem;
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }

    .card-service:hover .service-icon-wrapper {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent);
        border-color: var(--accent);
        box-shadow: 0 0 15px var(--accent-glow);
    }

    /* Espaçamento Confortável para Títulos/Textos dos Cards */
    .card-service h4 {
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: -0.015em;
    }

    /* CSS Complementar das Novas Seções Corporativas */
    .secao-titulo-estilizado {
        font-size: clamp(1.6rem, 3.2vw, 2.65rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: clamp(10px, 1.8vw, 18px);
        word-break: break-word;
    }

    /* Premium Dynamic Footer Styles */
    .footer-lp-dynamic {
        padding: 5rem 6% 3rem 6%;
        border-top: 1px solid var(--footer-border-color, var(--border)) !important;
        transition: all 0.5s ease;
        position: relative;
        z-index: 10;
        color: var(--footer-txt-muted, var(--text-muted)) !important;
    }
    .footer-lp-dynamic p,
    .footer-lp-dynamic span,
    .footer-lp-dynamic li,
    .footer-lp-dynamic label,
    .footer-lp-dynamic .text-muted {
        color: var(--footer-txt-muted, var(--text-muted)) !important;
    }
    .footer-lp-dynamic h1,
    .footer-lp-dynamic h2,
    .footer-lp-dynamic h3,
    .footer-lp-dynamic h4,
    .footer-lp-dynamic h5,
    .footer-lp-dynamic h6,
    .footer-lp-dynamic .footer-widget-title {
        color: var(--footer-txt-main, var(--text-light)) !important;
    }
    .footer-widget-title {
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.05em;
    }
    .footer-lp-dynamic .footer-link-item {
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--footer-txt-muted, var(--text-muted)) !important;
        text-decoration: none;
        margin-bottom: 0.6rem;
    }
    .footer-lp-dynamic .footer-link-item:hover {
        color: var(--primary) !important;
        transform: translateX(3px);
    }
    .footer-lp-dynamic .footer-sub-bar {
        border-top: 1px solid var(--footer-border-color, var(--border)) !important;
        padding-top: 2rem;
        margin-top: 3rem;
    }

    /* B. Frase de Impacto Monolítica */
    .frase-impacto-section {
        padding: 80px 0;
        position: relative;
        z-index: 10;
    }

    .frase-monolith-card {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--border) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
        border-radius: 24px;
        padding: 60px 40px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .frase-monolith-card:hover {
        border-color: var(--border-hover) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 30px var(--accent-glow) !important;
        transform: translateY(-2px);
    }

    .frase-texto-mono {
        font-size: clamp(1.35rem, 2.8vw, 2.2rem);
        font-weight: 850;
        line-height: 1.4;
        letter-spacing: -0.02em;
        text-align: center;
        background: linear-gradient(135deg, var(--text-light) 60%, var(--primary) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        word-break: break-word;
    }

    /* C. Grid de Prova Social e Resultados */
    .prova-social-section {
        padding: 80px 0;
        position: relative;
        z-index: 10;
    }

    .card-prova {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--border) !important;
        padding: 40px 30px;
        border-radius: 20px;
        height: 100%;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .card-prova:hover {
        transform: translateY(-4px);
        border-color: var(--border-hover) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px var(--primary-glow) !important;
    }

    .prova-num-wrapper {
        display: flex;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 10px;
    }

    .prova-num {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.03em;
    }

    .prova-sufixo {
        color: var(--accent) !important;
        text-shadow: 0 0 10px var(--accent-glow);
        font-size: 2.2rem;
        font-weight: 800;
        margin-left: 2px;
    }

    /* D. Simulador Interativo Reativo (ROI Engine) */
    .simulador-section {
        padding: 100px 0;
        position: relative;
        z-index: 10;
    }

    .sim-container {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--accent) !important;
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 0 30px var(--accent-glow) !important;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sim-container:hover {
        border-color: var(--primary) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 35px var(--primary-glow) !important;
    }

    .sim-slider-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .sim-slider-val {
        color: var(--accent) !important;
        font-weight: 700;
        font-size: 1.15rem;
        text-shadow: 0 0 10px var(--accent-glow);
    }

    .sim-range {
        width: 100%;
        height: 6px;
        background: var(--border);
        border-radius: 5px;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
transition: background 0.3s ease;
        margin-bottom: 30px;
    }

    .sim-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--accent);
        cursor: pointer;
        box-shadow: 0 0 10px var(--accent-glow);
        transition: transform 0.1s ease;
    }

    .sim-range::-webkit-slider-thumb:hover {
        transform: scale(1.25);
    }

    .sim-result-box {
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sim-result-title {
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 15px;
    }

    .sim-result-value {
        font-size: 3rem;
        font-weight: 900;
        color: var(--primary) !important;
        text-shadow: 0 0 15px var(--primary-glow);
        transition: opacity 0.12s ease-out;
    }

    .sobre-texto-estilo {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    /* WhatsApp High Conversion */
    .wa-monolith-card {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--primary) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px var(--primary-glow) !important;
        border-radius: 24px;
        padding: 55px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .wa-monolith-card:hover {
        border-color: var(--accent) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 35px var(--accent-glow) !important;
        transform: translateY(-2px);
    }

    .btn-wa-premium {
        background: #10b981 !important; /* Cor oficial do Whatsapp */
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 16px 40px !important;
        border-radius: var(--btn-radius) !important;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-wa-premium:hover {
        background: #059669 !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }

    /* Diferenciais / Valores */
    .card-valor {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--border) !important;
        padding: 40px 30px;
        border-radius: 20px;
        height: 100%;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .card-valor:hover {
        transform: translateY(-4px);
        border-color: var(--border-hover) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 20px var(--accent-glow) !important;
        background: var(--bg-card-hover) !important;
    }

    .valor-icon-wrapper {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.4rem;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .card-valor:hover .valor-icon-wrapper {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 0 10px var(--primary-glow);
    }

    /* FAQ Acordeão Dark Mode */
    .faq-accordion .accordion-item {
        background: var(--bg-card) !important;
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border: 1px solid var(--border) !important;
        border-radius: 12px !important;
        margin-bottom: 12px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-accordion .accordion-item:hover {
        transform: translateY(-2px);
        border-color: var(--border-hover) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), 0 0 15px var(--accent-glow) !important;
    }

    .faq-accordion .accordion-button {
        background: transparent !important;
        color: var(--accordion-btn-color) !important;
        font-weight: 600;
        border: none !important;
        box-shadow: none !important;
        padding: 20px 25px;
        transition: all 0.3s ease;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        color: var(--primary) !important;
        border-bottom: 1px solid var(--border) !important;
        background: var(--accordion-active-bg) !important;
    }

    /* Force arrows to align in Light/Dark mode correctly */
    :root[data-theme="dark"] .faq-accordion .accordion-button::after {
        filter: invert(1);
    }

    :root[data-theme="light"] .faq-accordion .accordion-button::after {
        filter: none;
    }

    .faq-accordion .accordion-body {
        color: var(--text-muted);
        line-height: 1.6;
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.01);
    }

    /* Footer Premium */
    .footer-lp {
        padding: 50px 0;
        background: var(--footer-bg) !important;
        border-top: 1px solid var(--border);
        position: relative;
        z-index: 10;
        transition: background 0.5s ease, border-color 0.5s ease;
    }

    /* Text Colors overrides for theme consistency */
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-light);
    }
    p, span, li, label, .text-muted {
        color: var(--text-muted);
    }
    .text-theme-main {
        color: inherit;
    }

    /* Garantia de Legibilidade em Cards & Elementos de Bloco */
    .card-service h3,
    .card-service h4,
    .card-valor h3,
    .card-valor h4,
    .sim-container label,
    .sim-container .sim-slider-label,
    .sim-result-box .sim-result-title,
    .wa-monolith-card h2,
    .wa-monolith-card h3 {
        color: var(--text-light) !important;
    }
    
    .card-service p,
    .card-service span:not(.badge),
    .card-valor p,
    .card-valor span:not(.badge),
    .card-prova p,
    .sim-container .text-muted,
    .sim-result-box .text-muted,
    .wa-monolith-card p {
        color: var(--text-muted) !important;
    }

    .faq-accordion .accordion-body {
        color: var(--text-light) !important;
        opacity: 0.94;
        font-size: 1rem;
        line-height: 1.7;
    }

    ::placeholder, .form-control::placeholder {
        color: rgba(255, 255, 255, 0.55) !important;
        opacity: 1 !important;
    }
    :root[data-theme="light"] ::placeholder,
    :root[data-theme="light"] .form-control::placeholder {
        color: rgba(15, 23, 42, 0.45) !important;
    }

    .card-prova .prova-num {
        color: var(--primary) !important;
    }
    .card-prova .prova-sufixo {
        color: var(--accent) !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .card-service, .card-valor {
            padding: 35px 25px;
        }
        .wa-monolith-card {
            padding: 35px 25px;
        }
        .lp-section-fluid {
            padding: 3.5rem 4%;
        }
    }

    /* Animações Cinéticas por Scroll (Scroll Reveal Premium) */
    .scroll-reveal-fade {
        opacity: 0 !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity;
    }
    .scroll-reveal-fade.reveal-active {
        opacity: 1 !important;
    }
    .scroll-reveal-slideup {
        opacity: 0 !important;
        transform: translateY(60px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-slideup.reveal-active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .scroll-reveal-zoomin {
        opacity: 0 !important;
        transform: scale(0.95) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-zoomin.reveal-active {
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    .scroll-reveal-slideleft {
        opacity: 0 !important;
        transform: translateX(-80px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-slideleft.reveal-active {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    .scroll-reveal-slideright {
        opacity: 0 !important;
        transform: translateX(80px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-slideright.reveal-active {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    .scroll-reveal-flipx {
        opacity: 0 !important;
        transform: perspective(1000px) rotateX(-45deg) translateY(30px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-flipx.reveal-active {
        opacity: 1 !important;
        transform: perspective(1000px) rotateX(0deg) translateY(0) !important;
    }
    .scroll-reveal-bouncein {
        opacity: 0 !important;
        transform: scale(0.7) translateY(40px) !important;
        transition: opacity 0.8s ease-out, transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-bouncein.reveal-active {
        opacity: 1 !important;
        transform: scale(1) translateY(0) !important;
    }
    .scroll-reveal-rotatein {
        opacity: 0 !important;
        transform: rotate(-5deg) scale(0.92) translateY(40px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-rotatein.reveal-active {
        opacity: 1 !important;
        transform: rotate(0deg) scale(1) translateY(0) !important;
    }
    .scroll-reveal-blurin {
        opacity: 0 !important;
        filter: blur(14px) !important;
        transform: scale(1.04) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, filter, transform;
    }
    .scroll-reveal-blurin.reveal-active {
        opacity: 1 !important;
        filter: blur(0px) !important;
        transform: scale(1) !important;
    }
    .scroll-reveal-scaleup {
        opacity: 0 !important;
        transform: scale(0.85) translateY(50px) !important;
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        will-change: opacity, transform;
    }
    .scroll-reveal-scaleup.reveal-active {
        opacity: 1 !important;
        transform: scale(1) translateY(0) !important;
    }

    /* ==========================================================================
       RETACHING PREMIUM: LOGO GRANDE FLUTUANTE SEM MOLDURA (NO-FRAME UX)
       ========================================================================== */
    .logo-container-flutuante {
        position: absolute !important;
        top: 0 !important;
        left: 5% !important;
        z-index: 1050;
        padding: 0 !important;
        background: transparent !important; /* Destrói a caixa rígida antiga */
        border: none !important;            /* Elimina a moldura visual */
        box-shadow: none !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        /* Camadas de sombra orgânica contornando a transparência Alpha do PNG */
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28)) 
                drop-shadow(0 20px 45px var(--primary-glow));
        will-change: transform, filter;
    }

    .logo-container-flutuante .lp-logo-img {
        max-height: 90px !important; /* Altura imersiva expandida */
        width: auto;
        object-fit: contain;
        display: block;
        transform-origin: top center;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Micro-Interação ao Passar o Mouse (Hover Proximity) */
    .logo-container-flutuante:hover {
        filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4)) 
                drop-shadow(0 0 35px var(--accent-glow));
    }
    .logo-container-flutuante:hover .lp-logo-img {
        transform: scale(1.03) translateY(3px);
    }

    /* SOLUÇÃO DE SOBREPOSIÇÃO: REAFASTAMENTO E MARGEM DO MENU DESKTOP */
    .navbar-glass {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    @media (min-width: 992px) {
        /* Desloca a barra de links (<nav>) de forma fluida sem espremer o menu */
        .navbar-glass .lp-nav-menu {
            
                margin-left: max(1rem, 120px) !important; 
            
                margin-left: 1rem !important;
            
            flex: 1 1 auto;
            min-width: 0;
            justify-content: center;
            transition: margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
    }

    /* COMPORTAMENTO INTELIGENTE NO SCROLL DE PÁGINA (DOCKING RETRACTION) */
    .navbar-glass.header-scrolled .logo-container-flutuante {
        top: 8px !important;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    }
    .navbar-glass.header-scrolled .logo-container-flutuante .lp-logo-img {
        max-height: 54px !important;
    }
    @media (min-width: 992px) {
        .navbar-glass.header-scrolled .lp-nav-menu {
            
                margin-left: max(1rem, 80px) !important;
            
                margin-left: 1rem !important;
            
        }
    }

    /* SEGURANÇA E RESPONSIVIDADE MOBILE (Mobile Guard Reset) */
    @media (max-width: 991.98px) {
        .logo-container-flutuante {
            position: relative !important; /* Abandona o absoluto para integrar-se ao fluxo flex nativo */
            top: auto !important;
            left: auto !important;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
        }
        .logo-container-flutuante .lp-logo-img {
            max-height: 42px !important; /* Dimensão protegida para viewports de smartphones */
            transform: none !important;
        }
        .logo-container-flutuante:hover .lp-logo-img {
            transform: none !important;
        }
    }

    /* ==========================================================================
       MOTOR DE MICRO-ANIMAÇÕES DA LOGO (KEYFRAMES CONFIGURÁVEIS)
       ========================================================================== */
    
    /* Efeito 1: Pulso Suave */
    .logo-fx-pulse .lp-logo-img {
        animation: lpPulseFx 3s infinite ease-in-out;
    }
    @keyframes lpPulseFx {
        0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255,255,255,0.1)); }
        50% { transform: scale(1.04); filter: drop-shadow(0 0 15px var(--primary-glow)); }
    }

    /* Efeito 2: Flutuação Contínua */
    .logo-fx-float .lp-logo-img {
        animation: lpFloatFx 4s infinite ease-in-out;
    }
    @keyframes lpFloatFx {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    /* Efeito 3: Brilho Metálico Cromado (Shimmer Overlay) */
    .logo-fx-shimmer {
        position: relative;
        overflow: hidden;
    }
    .logo-fx-shimmer::after {
        content: '';
        position: absolute;
        top: -50%; left: -60%; width: 30%; height: 200%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
        transform: rotate(25deg);
        animation: lpShimmerFx 3.5s infinite ease-in-out;
    }
    @keyframes lpShimmerFx {
        0% { left: -60%; }
        100% { left: 140%; }
    }

    /* Base Navbar Styles */
    .navbar-glass {
        position: sticky;
        background: var(--bg-glass);
        width: 100% !important;
        left: 0 !important;
    }
    .navbar-glass.header-scrolled {
        background: var(--bg-glass) !important;
    }
    .navbar-glass a, .navbar-glass span {
        color: var(--text-light);
        font-family: var(--font-family-base, 'Outfit', 'Inter', sans-serif) !important;
    }
    .nav-link-lp {
        color: var(--text-muted);
        font-family: var(--font-family-base, 'Outfit', 'Inter', sans-serif) !important;
    }
    
    
        .nav-link-lp::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            box-shadow: 0 0 8px var(--primary);
        }
        .nav-link-lp:hover::after {
            width: 100%;
        }
        .nav-link-lp:hover {
            color: var(--primary) !important;
        }
    
        .nav-link-lp {
            transition: transform 0.2s ease, color 0.2s ease !important;
        }
        .nav-link-lp:hover {
            transform: scale(1.08);
            color: var(--accent, var(--primary)) !important;
        }
    

    @media (min-width: 992px) {
        
            .navbar-glass nav.lp-nav-menu {
                position: absolute !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        
            .navbar-glass nav.lp-nav-menu {
                margin-left: auto !important;
                margin-right: 1.5rem !important;
            }
        
    }

    /* ==========================================================================
       ENGENHARIA DE INTELECTO DE TELA MOBILE (Adaptive UX Grid & Smart Collapse)
       ========================================================================== */

    /* ==========================================================================
       PRIORITY+ NAV ENGINE - OTIMIZAÇÃO TIPOGRÁFICA & DENSIDADE DE MENU
       ========================================================================== */

    /* Menu Geral */
    .lp-nav-menu {
        display: flex;
        align-items: center;
        gap: 0.5rem !important;
        max-width: 100%;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        flex: 1 1 auto;
        min-width: 0;
    }

    .lp-nav-links-visible {
        gap: 0.25rem !important;
        flex-wrap: nowrap !important;
        overflow: visible;
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    /* Links do Menu - Tipografia e Paddings Ajustados para Alta Densidade */
    .nav-link-lp {
        font-size: clamp(11px, 0.85vw, 13px) !important;
        font-weight: 600 !important;
        padding: 5px 8px !important;
        white-space: nowrap !important;
        border-radius: 8px;
        position: relative;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        flex-shrink: 0;
    }

    /* Dropdown de Transbordo (Mais ▾) */
    .lp-nav-overflow-dropdown .dropdown-menu {
        background: var(--bg-card, rgba(15, 23, 42, 0.96)) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        min-width: 200px;
        max-height: 380px;
        overflow-y: auto;
    }

    .lp-nav-overflow-dropdown .dropdown-item {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: var(--text-light, #f8fafc) !important;
        padding: 8px 14px !important;
        border-radius: 6px !important;
        transition: all 0.2s ease !important;
    }

    .lp-nav-overflow-dropdown .dropdown-item:hover {
        background: rgba(99, 102, 241, 0.12) !important;
        color: var(--primary, #6366f1) !important;
        transform: translateX(3px);
    }

    /* Ajustes para telas médias (Notebooks / 992px a 1200px) */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        .nav-link-lp {
            font-size: 12px !important;
            padding: 5px 8px !important;
        }
    }

    /* Hamburger Menu Button */
    .lp-menu-toggler {
        background: transparent;
        color: var(--text-light, #f8fafc) !important;
        cursor: pointer;
        outline: none;
        border: none;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1100;
        transition: transform 0.2s ease;
    }
    .lp-menu-toggler:hover {
        transform: scale(1.05);
    }
    .lp-menu-toggler:active {
        transform: scale(0.95);
    }

    /* COMPORTAMENTO INTELIGENTE ADAPTATIVO (Móbile Guard Protection) */
    @media (max-width: 991.98px) {
        .navbar-glass .container-fluid {
            flex-wrap: nowrap !important;
        }

        .lp-menu-toggler {
            display: flex !important;
        }
        
        .lp-nav-menu {
            display: none !important;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--bg-card, rgba(15, 23, 42, 0.98)) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            flex-direction: column;
            align-items: stretch !important;
            padding: 1.5rem 2rem !important;
            gap: 1rem !important;
            z-index: 1000;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .lp-nav-links-visible {
            flex-direction: column !important;
            align-items: stretch !important;
            width: 100% !important;
            gap: 0.5rem !important;
            overflow: visible !important;
        }

        .lp-nav-menu.active {
            display: flex !important;
            animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        
        .lp-nav-menu .nav-link-lp,
        .lp-nav-menu a {
            display: flex !important;
            align-items: center;
            width: 100%;
            padding: 10px 12px !important;
            font-size: 0.95rem !important;
            font-weight: 600 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
        }
        
        .lp-nav-menu .nav-link-lp:last-child,
        .lp-nav-menu a:last-child {
            border-bottom: none;
        }
        
        @keyframes slideDownMenu {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ==========================================================================
           OTIMIZAÇÃO PROPORCIONAL DOS BOTÕES DE HEADER (LOJA VIRTUAL & DESTAQUE)
           ========================================================================== */

        .navbar-glass .btn-header-action {
            font-size: 12.5px !important;
            font-weight: 700 !important;
            padding: 7px 16px !important;
            line-height: 1.2 !important;
            border-radius: var(--btn-radius, 100px) !important;
            white-space: nowrap !important;
            letter-spacing: 0.02em !important;
            display: inline-flex;
            align-items: center !important;
            gap: 6px !important;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
            text-decoration: none !important;
        }

        @media (max-width: 991.98px) {
            .navbar-glass .btn-header-action.d-none {
                display: none !important;
            }
        }

        /* Variante 1: Botão Loja Virtual (Secundário/Contorno) */
        .navbar-glass .btn-header-store {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid var(--border, rgba(255, 255, 255, 0.2)) !important;
            color: var(--text-light, #ffffff) !important;
        }

        .navbar-glass .btn-header-store:hover {
            background: rgba(255, 255, 255, 0.12) !important;
            border-color: var(--primary, #6366f1) !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px var(--primary-glow, rgba(99, 102, 241, 0.2)) !important;
        }

        /* Variante 2: Botão Destaque Principal (CTA) */
        .navbar-glass .btn-header-cta {
            background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #06b6d4) 100%) !important;
            border: 1px solid rgba(255, 255, 255, 0.25) !important;
            color: #ffffff !important;
        }

        .navbar-glass .btn-header-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px var(--primary-glow, rgba(99, 102, 241, 0.35)) !important;
        }

        /* Ajustes fluidos para telas médias (Notebooks / 992px a 1200px) */
        @media (min-width: 992px) and (max-width: 1200px) {
            .navbar-glass .btn-header-action {
                font-size: 11.5px !important;
                padding: 6px 12px !important;
            }
        }

        /* Responsividade Mobile (< 992px) */
        @media (max-width: 991.98px) {
            .navbar-glass .btn-header-action {
                font-size: 11px !important;
                padding: 5px 10px !important;
            }
        }
    }

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 3)
   ======================================================== */
.hero-overlaid-media:hover {
                            transform: scale(1.03) translateY(-2px);
                        }

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 4)
   ======================================================== */
.modal-upload-overlay {
                    position: fixed !important;
                    top: 0 !important;
                    left: 0 !important;
                    right: 0 !important;
                    bottom: 0 !important;
                    width: 100vw !important;
                    height: 100vh !important;
                    max-width: 100% !important;
                    max-height: 100% !important;
                    z-index: 99999999 !important;
                    display: none;
                    align-items: center !important;
                    justify-content: center !important;
                    padding: 1.25rem !important;
                    box-sizing: border-box !important;
                    overflow-x: hidden !important;
                    overflow-y: auto !important;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
                }
                .modal-upload-overlay.active {
                    display: flex !important;
                    opacity: 1 !important;
                    visibility: visible !important;
                    pointer-events: auto !important;
                }
                .modal-upload-backdrop {
                    position: fixed !important;
                    top: 0 !important;
                    left: 0 !important;
                    right: 0 !important;
                    bottom: 0 !important;
                    width: 100vw !important;
                    height: 100vh !important;
                    background: rgba(15, 23, 42, 0.82) !important;
                    backdrop-filter: blur(8px) !important;
                    -webkit-backdrop-filter: blur(8px) !important;
                    z-index: 1 !important;
                }
                .modal-upload-dialog {
                    position: relative !important;
                    z-index: 2 !important;
                    max-width: 520px !important;
                    width: 100% !important;
                    margin: auto !important;
                    transform: scale(0.92) translateY(15px);
                    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
                }
                .modal-upload-overlay.active .modal-upload-dialog {
                    transform: scale(1) translateY(0) !important;
                }
                .modal-upload-content {
                    background: #ffffff;
                    color: #1e293b;
                    border: 1px solid rgba(0, 0, 0, 0.08);
                    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5) !important;
                    border-radius: 1.5rem !important;
                }
                [data-bs-theme="dark"] .modal-upload-content,
                .theme-dark .modal-upload-content {
                    background: #1e1b4b;
                    color: #f8fafc;
                    border: 1px solid rgba(255, 255, 255, 0.12);
                    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8) !important;
                }
                .modal-upload-close-btn {
                    position: absolute;
                    top: 1rem;
                    right: 1rem;
                    background: rgba(0, 0, 0, 0.05);
                    border: none;
                    border-radius: 50%;
                    width: 36px;
                    height: 36px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #64748b;
                    font-size: 1rem;
                    cursor: pointer;
                    transition: all 0.2s ease;
                }
                .modal-upload-close-btn:hover {
                    background: rgba(0, 0, 0, 0.1);
                    color: #0f172a;
                    transform: rotate(90deg);
                }
                [data-bs-theme="dark"] .modal-upload-close-btn,
                .theme-dark .modal-upload-close-btn {
                    background: rgba(255, 255, 255, 0.1);
                    color: #cbd5e1;
                }
                [data-bs-theme="dark"] .modal-upload-close-btn:hover,
                .theme-dark .modal-upload-close-btn:hover {
                    background: rgba(255, 255, 255, 0.2);
                    color: #ffffff;
                }
                .modal-upload-icon-pulse {
                    width: 80px;
                    height: 80px;
                    margin: 0 auto;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 2.75rem;
                    animation: modalUploadPulse 2s infinite;
                }
                .modal-upload-icon-pulse.success {
                    background: rgba(16, 185, 129, 0.15);
                    color: #10b981;
                }
                .modal-upload-icon-pulse.error {
                    background: rgba(239, 68, 68, 0.15);
                    color: #ef4444;
                }
                @keyframes modalUploadPulse {
                    0% {
                        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
                    }
                    70% {
                        box-shadow: 0 0 0 18px rgba(16, 185, 129, 0);
                    }
                    100% {
                        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
                    }
                }

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 5)
   ======================================================== */
.social-circle-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .social-circle-btn:hover {
        transform: translateY(-3px) scale(1.08);
        color: #ffffff;
    }
    
    .insta-glow:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aec 90%);
        box-shadow: 0 0 15px rgba(214, 36, 159, 0.5);
        border-color: #d6249f;
    }
    .fb-glow:hover {
        background: #1877f2;
        box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
        border-color: #1877f2;
    }
    .ln-glow:hover {
        background: #0a66c2;
        box-shadow: 0 0 15px rgba(10, 102, 194, 0.5);
        border-color: #0a66c2;
    }
    .yt-glow:hover {
        background: #ff0000;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
        border-color: #ff0000;
    }
    
    .form-group-lp {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .form-label-lp {
        color: var(--text-muted) !important;
        font-weight: 600;
    }
    .form-control-lp {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid var(--border) !important;
        color: var(--text-light) !important;
        border-radius: var(--btn-radius) !important;
        padding: 12px 16px !important;
        font-size: 0.95rem;
        transition: all 0.3s ease !important;
    }
    .form-control-lp:focus {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 3px var(--primary-glow) !important;
        color: var(--text-light) !important;
        outline: none !important;
    }
    
    .hover-link {
        transition: color 0.3s ease;
    }
    .hover-link:hover {
        color: var(--primary) !important;
    }
    .mapa-container-lp iframe {
        display: block;
        width: 100% !important;
    }

/* ========================================================
   LANDING-FRONT: LPFRONT (BLOCK 6)
   ======================================================== */
.wa-floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            animation: wa-pulse-neon 2s infinite;
            text-decoration: none;
        }

        .wa-floating-btn:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: #20ba5a;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        @keyframes wa-pulse-neon {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 15px rgba(37, 211, 102, 0.4);
            }
        }

        .wa-lead-popover-card {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 320px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            animation: waPopoverFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @media (max-width: 768px) {
            .wa-lead-popover-card {
                right: 20px;
                bottom: 90px;
                width: calc(100% - 40px);
            }
        }
        @keyframes waPopoverFadeIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .wa-lead-popover-card-header {
            background: #25d366;
            color: white;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .wa-lead-popover-card-title {
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .wa-lead-popover-card-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .wa-lead-popover-card-close:hover { opacity: 1; }
        .wa-lead-popover-card-body { padding: 16px; }
        .wa-lead-popover-card-desc {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .wa-lead-card-group { margin-bottom: 12px; }
        .wa-lead-card-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 4px;
            text-align: left;
        }
        .wa-lead-card-input {
            width: 100%;
            padding: 8px 12px;
            font-size: 13px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.2s;
            box-sizing: border-box;
            background: #fff;
            color: #334155;
        }
        .wa-lead-card-input:focus { border-color: #25d366; }
        .wa-lead-popover-card-submit {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 10px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.2s;
        }
        .wa-lead-popover-card-submit:hover { background: #20ba5a; }

/* ========================================================
   LANDING-FRONT: RECURSOS ADICIONAIS LANÇAMENTO ESCASSO
   ======================================================== */
.accent-blur-red {
    background: radial-gradient(circle, #ef4444 0%, transparent 70%);
    top: -150px;
    left: -150px;
}
.accent-blur-violet {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: 200px;
    right: -100px;
}
.hero-badge-escasso {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: pulseRed 2s infinite;
}
@keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}
.countdown-box {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.countdown-box:hover {
    border-color: var(--primary, #ef4444);
    transform: translateY(-3px);
}
.countdown-val {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-family-base, 'Outfit', sans-serif);
}
.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-top: 5px;
    font-weight: 600;
}
.price-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}
.price-badge span {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 6px;
}

/* ========================================================
   LANDING-FRONT: RECURSOS ADICIONAIS CAPTURA LIMPA
   ======================================================== */
.accent-blur-cyan {
    background: radial-gradient(circle, #0284c7 0%, transparent 70%);
    top: -150px;
    left: -150px;
}
.card-captura {
    background: var(--bg-card, rgba(15, 23, 42, 0.75));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(var(--backdrop-blur, 16px));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.card-captura:hover {
    border-color: var(--primary, #0284c7);
}
.card-captura label {
    color: var(--text-light, #f8fafc);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.btn-submit-lp {
    background: var(--primary, #0284c7);
    color: #ffffff !important;
    border: none;
    border-radius: var(--btn-radius, 50px);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--primary-glow, rgba(2, 132, 199, 0.3));
}
.btn-submit-lp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px var(--primary-shadow, rgba(2, 132, 199, 0.45));
}
.btn-submit-lp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.alert-captura-sucesso {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
}
.alert-captura-erro {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* ==========================================================================
   ADVANCED RESPONSIVE ARCHITECTURE: ULTRA-WIDE (4K) & MOBILE LEGACY SHIELD
   ========================================================================== */

/* 1. Telas Ultragrandes (Min-Width: 1400px / 1920px+) */
@media (min-width: 1400px) {
    .lp-section-fluid > .container-fluid,
    .hero-section > .container-fluid,
    .navbar-glass > .container-fluid,
    .footer-lp-dynamic > .container-fluid {
        max-width: 1440px !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    .frase-monolith-card,
    .sim-container,
    .card-captura {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1920px) {
    .lp-section-fluid > .container-fluid,
    .hero-section > .container-fluid,
    .navbar-glass > .container-fluid,
    .footer-lp-dynamic > .container-fluid {
        max-width: 1600px !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    .hero-showcase-mockup-wrapper .hero-mockup-frame {
        max-width: 1100px !important;
    }
}

/* 2. Blindagem e Simetria para Telas Menores (Tablets e Mobile <= 991.98px) */
@media (max-width: 991.98px) {
    /* Hero Section Mobile: Respeita rigorosamente a altura configurada da seção */
    .hero-section.hero-full-height {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding-top: clamp(75px, 10vw + 25px, 110px) !important;
        padding-bottom: clamp(35px, 5vw, 55px) !important;
    }

    .hero-section:not(.hero-full-height) {
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: clamp(85px, 12vw + 30px, 120px) !important;
        padding-bottom: clamp(40px, 6vw, 65px) !important;
    }

    .hero-section {
        padding-left: clamp(16px, 4vw, 24px) !important;
        padding-right: clamp(16px, 4vw, 24px) !important;
        overflow: hidden !important;
    }

    /* Outras seções fluidas no mobile */
    .lp-section-fluid:not(.hero-section),
    .lp-section-full-height:not(.hero-section) {
        min-height: auto !important;
        height: auto !important;
    }

    /* VÍDEO DO HERO EM MOBILE:
       Quando a seção estiver com altura 100% (hero-full-height), o vídeo se adapta
       para cobrir 100% da altura da tela (100vh / 100dvh), mantendo a proporção 16:9 centralizada
       e minimizando cortes laterais sem deixar barras vazias. */
    .hero-section.hero-has-video .hero-video-bg-wrapper,
    .hero-video-bg-wrapper {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }

    /* Caso 1: Seção com Altura 100% (hero-full-height) -> Vídeo preenche 100% da altura da tela */
    .hero-section.hero-full-height.hero-has-video .hero-video-bg-wrapper #video-hero-background-element,
    .hero-section.hero-full-height.hero-has-video .hero-video-bg-wrapper iframe,
    .hero-section.hero-full-height .hero-video-bg-wrapper #video-hero-background-element,
    .hero-section.hero-full-height .hero-video-bg-wrapper iframe,
    .hero-section.hero-full-height .hero-video-element {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.3) !important;
        width: max(100vw, 177.78vh, 177.78dvh, calc(100vh * 16 / 9), calc(100dvh * 16 / 9)) !important;
        height: max(100vh, 100dvh, 56.25vw, calc(100vw * 9 / 16)) !important;
        min-width: 100% !important;
        min-height: 100% !important;
        min-width: 177.78vh !important;
        min-width: 177.78dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        pointer-events: none !important;
        border: 0 !important;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    /* Caso 2: Seção com Altura Automática (:not(.hero-full-height)) -> Mantém proporção e altura adaptativa */
    .hero-section:not(.hero-full-height).hero-has-video .hero-video-bg-wrapper #video-hero-background-element,
    .hero-section:not(.hero-full-height).hero-has-video .hero-video-bg-wrapper iframe,
    .hero-section:not(.hero-full-height) .hero-video-bg-wrapper #video-hero-background-element,
    .hero-section:not(.hero-full-height) .hero-video-bg-wrapper iframe,
    .hero-section:not(.hero-full-height) .hero-video-element {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.3) !important;
        width: max(100vw, calc(100% * 16 / 9)) !important;
        height: max(56.25vw, 100%, calc(100vw * 9 / 16)) !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        pointer-events: none !important;
        border: 0 !important;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .hero-video-bg-wrapper #video-hero-background-element.video-is-playing,
    .hero-video-bg-wrapper iframe.video-is-playing {
        opacity: 1 !important;
    }

    /* Respiro vertical proporcional em altura automática */
    .hero-section.hero-has-video:not(.hero-full-height) {
        min-height: max(56.25vw, 280px) !important;
        justify-content: center !important;
    }

    .hero-section > .container,
    .hero-section > .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Badge do Hero em Mobile */
    .hero-badge {
        font-size: clamp(0.72rem, 2.5vw, 0.82rem) !important;
        padding: 6px 16px !important;
        margin-bottom: clamp(14px, 3vw, 20px) !important;
        max-width: 95% !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.35 !important;
    }

    /* Tipografia do Hero em Mobile (Fluida e sem Quebras Bruscas) */
    .hero-title {
        font-size: clamp(1.85rem, 6.2vw, 2.45rem) !important;
        line-height: 1.16 !important;
        margin-bottom: clamp(12px, 2.5vw, 18px) !important;
        letter-spacing: -0.02em !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }

    .hero-subtitle {
        font-size: clamp(0.92rem, 3.4vw, 1.05rem) !important;
        line-height: 1.55 !important;
        margin: 0 auto clamp(18px, 3.5vw, 26px) auto !important;
        max-width: 95% !important;
        word-break: break-word !important;
    }

    /* Botões CTA do Hero em Mobile */
    .hero-section .btn,
    .hero-section .btn-premium {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        padding: 14px 24px !important;
        font-size: 0.92rem !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    /* Showcase / Mockup Imagem no Hero Mobile */
    .hero-showcase-mockup-wrapper {
        margin-top: clamp(24px, 5vw, 36px) !important;
        width: 100% !important;
    }

    .hero-showcase-mockup-wrapper .hero-mockup-frame {
        max-width: 100% !important;
        border-radius: 14px !important;
    }

    .hero-showcase-mockup-wrapper .hero-mockup-frame img {
        border-radius: 12px !important;
    }

    /* Imagem Sobreposta Acima do Título no Hero Mobile */
    .hero-overlaid-image-wrapper {
        margin-bottom: 16px !important;
    }

    .hero-overlaid-image-wrapper img,
    .hero-overlaid-media {
        max-height: 75px !important;
    }

    /* Demais Seções Fluidas com Altura 100% no Mobile */
    .lp-section-fluid {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3.5vw, 1.75rem) !important;
        min-height: auto !important;
        height: auto !important;
    }
}

/* Telas Compactas (Smartphones <= 575.98px) */
@media (max-width: 575.98px) {
    .card-service {
        padding: 26px 18px !important;
        border-radius: 16px !important;
    }
    .service-icon-wrapper {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.35rem !important;
        margin-bottom: 20px !important;
    }
    .frase-monolith-card {
        padding: 28px 16px !important;
        border-radius: 16px !important;
    }
    .card-prova {
        padding: 22px 14px !important;
        border-radius: 16px !important;
    }
    .prova-num {
        font-size: 2.5rem !important;
    }
    .prova-sufixo {
        font-size: 1.6rem !important;
    }
    .sim-container {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    .sim-result-box {
        padding: 24px 16px !important;
        margin-top: 16px;
    }
    .sim-result-value {
        font-size: 2.2rem !important;
    }
    .footer-lp-dynamic {
        padding: 3rem 1rem 2rem 1rem !important;
    }
    .grade-card {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }
}

/* Telas Ultra-Compactas (<380px, iPhones Mini / Galaxy Fold) */
@media (max-width: 379.98px) {
    .lp-section-fluid {
        padding: 2.25rem 0.75rem !important;
    }
    .hero-section.hero-full-height {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding-top: 70px !important;
        padding-bottom: 25px !important;
    }
    .hero-section:not(.hero-full-height) {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
    }
    .hero-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .hero-title {
        font-size: clamp(1.5rem, 6.8vw, 1.85rem) !important;
        line-height: 1.18 !important;
    }
    .hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }
    .hero-badge {
        font-size: 0.72rem !important;
        padding: 5px 12px !important;
    }
    .hero-section .btn,
    .hero-section .btn-premium {
        padding: 12px 18px !important;
        font-size: 0.88rem !important;
        width: 100% !important;
    }
    .card-service,
    .card-prova,
    .sim-container,
    .frase-monolith-card,
    .card-captura {
        padding: 18px 12px !important;
    }
}

/* ========================================================
   SEÇÃO MISTA: SOBRE / TEXTO & IMAGEM (MOLDURAS E EFEITOS)
   ======================================================== */
.sobre-section {
    position: relative;
    overflow: hidden;
}

.sobre-img-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border-radius: 20px;
}

.sobre-img-container img {
    width: 100%;
    height: auto;
    max-height: 540px;
    display: block;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Moldura Elegante */
.sobre-img-container.img-efeito-moldura-elegante,
.img-efeito-moldura-elegante {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5), 0 0 25px rgba(var(--cor-principal-rgb, 99, 102, 241), 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.sobre-img-container.img-efeito-moldura-elegante img,
.img-efeito-moldura-elegante img {
    border-radius: 12px;
}

/* 2. Vidro Glassmorphism */
.sobre-img-container.img-efeito-glass,
.img-efeito-glass {
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.sobre-img-container.img-efeito-glass img,
.img-efeito-glass img {
    border-radius: 14px;
}

/* 3. Cyber Glow / Neon Glow */
.sobre-img-container.img-efeito-neon-glow,
.img-efeito-neon-glow {
    border: none;
    box-shadow: 0 0 30px rgba(var(--cor-principal-rgb, 99, 102, 241), 0.55), 0 0 60px rgba(var(--cor-principal-rgb, 99, 102, 241), 0.25);
}

/* 4. Sombra 3D Flutuante */
.sobre-img-container.img-efeito-sombra,
.img-efeito-sombra {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* 5. Cantos Arredondados */
.sobre-img-container.img-efeito-arredondada,
.img-efeito-arredondada {
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.sobre-img-container.img-efeito-arredondada img,
.img-efeito-arredondada img {
    border-radius: 24px !important;
    width: 100%;
    object-fit: cover;
}

/* 6. Formato Circular */
.sobre-img-container.img-efeito-circulo,
.img-efeito-circulo {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.sobre-img-container.img-efeito-circulo img,
.img-efeito-circulo img {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* 7. Zoom Suave no Hover */
.sobre-img-container.img-efeito-zoom:hover img,
.img-efeito-zoom:hover img {
    transform: scale(1.06);
}

/* 8. Grayscale */
.sobre-img-container.img-efeito-grayscale img,
.img-efeito-grayscale img {
    filter: grayscale(100%);
}
.sobre-img-container.img-efeito-grayscale:hover img,
.img-efeito-grayscale:hover img {
    filter: grayscale(0%);
}

/* Proporções de Aspect Ratio */
.aspect-1-1 { aspect-ratio: 1 / 1 !important; object-fit: cover !important; }
.aspect-4-3 { aspect-ratio: 4 / 3 !important; object-fit: cover !important; }
.aspect-16-9 { aspect-ratio: 16 / 9 !important; object-fit: cover !important; }
.aspect-3-4 { aspect-ratio: 3 / 4 !important; object-fit: cover !important; }
.aspect-9-16 { aspect-ratio: 9 / 16 !important; object-fit: cover !important; }

/* Tipografia e Textos da Seção Sobre */
.sobre-texto-estilo p {
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.85;
}
.sobre-texto-estilo p:last-child {
    margin-bottom: 0;
}

/* =========================================================================
   SEÇÃO LIVRO / CATÁLOGO DE FOTOS: 5 PRESETS DE LAYOUT & MOTOR DE LIGHTBOX
   ========================================================================= */

/* Paleta de Cores Quentes & Fundo Dark */
.livro-catalogo-section {
    position: relative;
    background-color: #030305;
    color: #ffffff;
    overflow: hidden;
}

/* --- PRESET 1: FLIPBOOK 3D (LIVRO CLÁSSICO COM PÁGINAS DUPLAS) --- */
.lp-flipbook-container {
    max-width: 960px;
    margin: 0 auto;
    perspective: 2000px;
    padding: 20px 10px;
    user-select: none;
}

.lp-book-stage {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 480px;
}

.lp-book-spread {
    display: flex;
    width: 100%;
    max-width: 880px;
    background: #0d0d14;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 85, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp-book-spread:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 85, 0, 0.35);
}

/* Lombada Central com Sombra de Profundidade */
.lp-book-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 28px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 10;
    pointer-events: none;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.7);
}

.lp-book-page {
    flex: 1;
    min-width: 0;
    background: #0a0a0f;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lp-book-page-left {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, #0a0a0f 0%, #0d0d16 100%);
    box-shadow: inset -15px 0 25px -10px rgba(0,0,0,0.6);
}

.lp-book-page-right {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(270deg, #0a0a0f 0%, #0d0d16 100%);
    box-shadow: inset 15px 0 25px -10px rgba(0,0,0,0.6);
}

.lp-book-img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #030305;
    cursor: pointer;
    border: 1px solid rgba(255, 85, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lp-book-img-wrapper:hover {
    transform: scale(1.02);
    border-color: #FF5500;
}

.lp-book-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lp-book-img-wrapper:hover img {
    transform: scale(1.06);
}

.lp-book-caption {
    margin-top: 14px;
}

.lp-book-caption h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.lp-book-caption p {
    color: rgba(255, 245, 235, 0.7);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}

/* Controles Flutuantes do Flipbook */
.lp-book-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.lp-book-btn {
    background: #12121c;
    color: #ffffff;
    border: 1px solid rgba(255, 85, 0, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lp-book-btn:hover {
    background: #FF5500;
    color: #ffffff;
    border-color: #FF5500;
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.35);
    transform: translateY(-1px);
}

.lp-book-page-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 245, 235, 0.85);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Single-Page Flipbook */
@media (max-width: 767.98px) {
    .lp-book-spread {
        flex-direction: column;
        min-height: auto;
    }
    .lp-book-spine {
        display: none;
    }
    .lp-book-page-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }
    .lp-book-page-right {
        border-left: none;
        box-shadow: none;
    }
    .lp-book-img-wrapper {
        aspect-ratio: 16 / 10;
        height: auto;
    }
    .lp-book-stage {
        padding: 0;
        min-height: auto;
    }
}

/* --- PRESET 2: CATÁLOGO MODERNO (GRADE & LIGHTBOX) --- */
.lp-catalogo-grid-card {
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0f;
    border: 1px solid rgba(255, 85, 0, 0.12);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lp-catalogo-grid-card:hover {
    transform: translateY(-6px);
    border-color: #FF5500;
    box-shadow: 0 18px 45px rgba(255, 85, 0, 0.2);
}

.lp-catalogo-img-box {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #030305;
}

.lp-catalogo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-catalogo-grid-card:hover .lp-catalogo-img-box img {
    transform: scale(1.08);
}

.lp-catalogo-overlay-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 5;
}

.lp-catalogo-grid-card:hover .lp-catalogo-overlay-btn {
    opacity: 1;
    transform: scale(1);
}

.lp-catalogo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 18px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(3,3,5,0.95) 85%);
    z-index: 4;
}

/* --- PRESET 3: REVISTA / EDITORIAL --- */
.lp-editorial-hero-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 11;
    background: #0a0a0f;
    border: 1px solid rgba(255, 85, 0, 0.2);
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.lp-editorial-hero-card:hover {
    transform: translateY(-4px);
    border-color: #FF5500;
}

.lp-editorial-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.lp-editorial-hero-card:hover .lp-editorial-hero-img {
    transform: scale(1.05);
}

.lp-editorial-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(3,3,5,0.95) 80%);
    z-index: 3;
}

.lp-editorial-subcard {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0d0d16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lp-editorial-subcard:hover {
    background: #141422;
    border-color: #FF5500;
    transform: translateX(4px);
}

.lp-editorial-subcard-img {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 12px;
    overflow: hidden;
    background: #030305;
}

.lp-editorial-subcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PRESET 4: LOOKBOOK MINIMALISTA (HORIZONTAL TRACK) --- */
.lp-lookbook-track-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.lp-lookbook-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 85, 0, 0.3) transparent;
}

.lp-lookbook-track::-webkit-scrollbar {
    height: 6px;
}

.lp-lookbook-track::-webkit-scrollbar-thumb {
    background: rgba(255, 85, 0, 0.3);
    border-radius: 10px;
}

.lp-lookbook-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 16px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

.lp-lookbook-card:hover {
    transform: translateY(-6px);
    border-color: #FF5500;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.15);
}

.lp-lookbook-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #030305;
}

.lp-lookbook-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-lookbook-card:hover .lp-lookbook-img img {
    transform: scale(1.06);
}

/* --- PRESET 5: CARROSSEL FLIP 3D (COVERFLOW PERSPECTIVE) --- */
.lp-coverflow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    perspective: 1400px;
    overflow: hidden;
}

.lp-coverflow-card {
    position: absolute;
    width: 280px;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0a0f;
    border: 1px solid rgba(255, 85, 0, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    transform-origin: center center;
    transform-style: preserve-3d;
}

.lp-coverflow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-coverflow-card.active {
    transform: translateX(0) translateZ(100px) rotateY(0deg);
    z-index: 10;
    opacity: 1;
    border-color: #FF5500;
    box-shadow: 0 25px 60px rgba(255, 85, 0, 0.35);
}

.lp-coverflow-card.prev-1 {
    transform: translateX(-200px) translateZ(0) rotateY(35deg);
    z-index: 8;
    opacity: 0.75;
}

.lp-coverflow-card.next-1 {
    transform: translateX(200px) translateZ(0) rotateY(-35deg);
    z-index: 8;
    opacity: 0.75;
}

.lp-coverflow-card.prev-2 {
    transform: translateX(-340px) translateZ(-80px) rotateY(50deg);
    z-index: 6;
    opacity: 0.4;
}

.lp-coverflow-card.next-2 {
    transform: translateX(340px) translateZ(-80px) rotateY(-50deg);
    z-index: 6;
    opacity: 0.4;
}

.lp-coverflow-card.hidden {
    transform: translateX(0) translateZ(-200px) scale(0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* =========================================================================
   LIGHTBOX / MODAL DE VISUALIZAÇÃO EXPANDIDA DO LIVRO (CENTRALIZAÇÃO ABSOLUTA)
   ========================================================================= */
.lp-lightbox-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    width: 100dvw !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 24px 16px !important;
    box-sizing: border-box !important;
    background: rgba(3, 3, 6, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 99999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
}

.lp-lightbox-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.lp-lightbox-content {
    position: relative !important;
    width: 100% !important;
    max-width: 1100px !important;
    max-height: 90vh !important;
    max-height: 90dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: auto !important;
    text-align: center !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

.lp-lightbox-content img {
    max-width: min(88vw, 1000px) !important;
    max-height: 72vh !important;
    max-height: 72dvh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}

.lp-lightbox-caption {
    margin-top: 16px !important;
    text-align: center !important;
    color: #ffffff !important;
    max-width: 850px !important;
    width: 100% !important;
}

.lp-lightbox-caption h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.lp-lightbox-caption p {
    font-size: 0.92rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
}

.lp-lightbox-close {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 20 !important;
}

.lp-lightbox-close:hover {
    background: var(--primary, #FF5500) !important;
    border-color: var(--primary, #FF5500) !important;
    transform: rotate(90deg) scale(1.1) !important;
}

.lp-lightbox-nav-btn {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(10, 10, 15, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 20 !important;
}

.lp-lightbox-nav-btn:hover {
    background: var(--primary, #FF5500) !important;
    border-color: var(--primary, #FF5500) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.lp-lightbox-prev { left: 24px !important; }
.lp-lightbox-next { right: 24px !important; }

@media (max-width: 768px) {
    .lp-lightbox-prev { left: 10px !important; width: 42px !important; height: 42px !important; font-size: 1.2rem !important; }
    .lp-lightbox-next { right: 10px !important; width: 42px !important; height: 42px !important; font-size: 1.2rem !important; }
    .lp-lightbox-close { top: 16px !important; right: 16px !important; width: 40px !important; height: 40px !important; font-size: 1.1rem !important; }
    .lp-lightbox-content img { max-height: 65vh !important; max-width: 92vw !important; }
    .lp-lightbox-caption h4 { font-size: 1.1rem !important; }
    .lp-lightbox-caption p { font-size: 0.82rem !important; }
}

/* =========================================================================
   BOTÕES DE AÇÃO INDIVIDUAIS (CTA) POR FOTO & MOTOR DE PAGINAÇÃO ILIMITADA
   ========================================================================= */

/* Botão de Ação Estilizado por Foto */
.lp-catalogo-item-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    background: var(--cta-bg, #FF5500);
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 12px rgba(255, 85, 0, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 6;
    margin-top: 8px;
    max-width: 100%;
}

.lp-catalogo-item-cta-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 18px var(--cta-bg, #FF5500);
    color: #ffffff !important;
}

.lp-catalogo-item-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.lp-catalogo-item-cta-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.lp-catalogo-item-cta-btn:hover i {
    transform: translate(2px, -2px);
}

/* CTA no Lightbox Fullscreen */
.lp-lightbox-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    border-radius: 50px;
    background: var(--cta-bg, #FF5500);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 16px var(--cta-bg, #FF5500);
    transition: all 0.25s ease;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.lp-lightbox-cta-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 22px var(--cta-bg, #FF5500);
    color: #ffffff !important;
}

/* Motor de Paginação Fluida Ilimitada */
.lp-catalogo-pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
    user-select: none;
}

.lp-catalogo-pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(18, 18, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lp-catalogo-page-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-catalogo-page-btn:hover:not(:disabled):not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-catalogo-page-btn.active {
    background: var(--primary, #FF5500);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 14px rgba(255, 85, 0, 0.6);
    border-color: var(--primary, #FF5500);
}

.lp-catalogo-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lp-catalogo-page-nav-btn {
    padding: 0 14px;
    height: 36px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-catalogo-page-nav-btn:hover:not(:disabled) {
    background: var(--primary, #FF5500);
    border-color: var(--primary, #FF5500);
    box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
    color: #ffffff;
}

.lp-catalogo-page-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lp-catalogo-page-info {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================================================
   SEÇÃO VÍDEO INSTITUCIONAL - PLAYER RESPONSIVO & ENHANCEMENTS
   ========================================================================== */
.lp-video-player-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.lp-video-responsive-box {
    background: #000000;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.lp-video-responsive-box:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65) !important;
}

.lp-video-responsive-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ========================================================
   SEÇÃO HERO - VÍDEO DE FUNDO & COMPOSIÇÃO DE ALTURA BASE
   ======================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section.hero-full-height {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-video-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg-wrapper #video-hero-background-element,
.hero-video-bg-wrapper iframe,
.hero-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 177.78vh;
    min-width: 177.78dvh;
    transform: translate(-50%, -50%) scale(1.3);
    object-fit: cover;
    pointer-events: none;
    border: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video-bg-wrapper #video-hero-background-element.video-is-playing,
.hero-video-bg-wrapper iframe.video-is-playing {
    opacity: 1 !important;
}

/* ==========================================================================
   SEÇÃO UPLOADS (ANEXOS & PROPOSTAS) - 5 PRESETS & DESIGN SYSTEM
   ========================================================================== */
.uploads-section {
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
}

/* Preset 1: Centralizado Minimalista */
.lp-uploads-preset-centralizado .upload-form-container {
    max-width: 860px;
    margin: 0 auto;
}

/* Preset 2 e 3: Split Horizontal (Grid 50/50) */
.lp-uploads-split-container {
    position: relative;
    z-index: 2;
}

.lp-uploads-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-uploads-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efeitos de Imagem */
.lp-uploads-img-3d-floating {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 35px var(--primary-glow, rgba(255, 85, 0, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-2deg) translateY(-2px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.lp-uploads-img-3d-floating:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-6px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.85), 0 0 45px var(--primary-glow, rgba(255, 85, 0, 0.4));
}

.lp-uploads-img-shadow-smooth {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-uploads-img-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 10px;
}
.lp-uploads-img-glass img {
    border-radius: 18px;
}

.lp-uploads-img-neon {
    border: 2px solid var(--primary, #ff5500);
    box-shadow: 0 0 30px var(--primary-glow, rgba(255, 85, 0, 0.5)), inset 0 0 15px var(--primary-glow, rgba(255, 85, 0, 0.3));
}

.lp-uploads-img-default {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Preset 4: Banner Topo Integrado */
.lp-uploads-banner-top-box {
    position: relative;
    width: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    min-height: 220px;
    max-height: 380px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
}
.lp-uploads-banner-top-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 3, 5, 0.4) 0%, rgba(3, 3, 5, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.lp-uploads-banner-floating-card {
    border-radius: 0 0 24px 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Preset 5: Backdrop Background Overlay */
.lp-uploads-backdrop-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.lp-uploads-backdrop-container {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Dropzone & Inputs Customization */
.upload-dropzone-box {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.02);
}
.upload-dropzone-box:hover,
.upload-dropzone-box.dragover {
    border-color: var(--primary, #ff5500) !important;
    background: rgba(255, 85, 0, 0.05) !important;
    transform: translateY(-2px);
}

/* Mobile Stack */
@media (max-width: 767.98px) {
    .lp-uploads-img-wrapper {
        margin-bottom: 1.5rem;
        max-height: 280px !important;
    }
    .lp-uploads-img-3d-floating {
        transform: none !important;
    }
    .lp-uploads-banner-top-box {
        min-height: 160px;
        border-radius: 18px 18px 0 0;
    }
    .lp-uploads-banner-floating-card {
        border-radius: 0 0 18px 18px !important;
    }
}




