/* ==========================================================================
   PAGETEST THEME - DEEP NAVY (Quartermaster-Inspired)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;700&display=swap');

/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLES — DEEP NAVY PALETTE
   ========================================================================== */
:root {
    /* Fundo Navy Profundo (Quartermaster Style - Darker for higher contrast) */
    --bg-dark: #090d16;
    --bg-base: #090d16;
    --bg-surface: #111827;
    --bg-elevated: #1b253b;
    --bg-card: rgba(17, 24, 39, 0.85);

    /* Texto Frio (Branco puro + Cinza neutro de alto contraste) */
    --text-main: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-dark: #090d16;
    --text-secondary: #c9d1d9;
    --text-tertiary: rgba(201, 209, 217, 0.65);

    /* Acentos Tech Ultra Vibrantes (Cyber Cyan, Cyber Pink e Lime de Conversão) */
    --accent-1: #00F0FF;          /* Neon Cyan */
    --accent-2: #FF007F;          /* Neon Magenta */
    --focus-fx: #00F0FF;
    --accent-blue: #0070FF;        /* Electric Blue */
    --accent-cyan: #00F0FF;        /* Cyber Cyan */
    --accent-purple: #9d4edd;      /* Electric Purple */
    --accent-pink: #FF007F;        /* Cyber Pink */
    --accent-green: #00FF66;       /* Electric Lime Green (Universal Conversion Color) */

    /* Botoes/CTAs de Alta Conversão */
    --cta-btn: #00FF66;

    /* Tipografia */
    --font-heading: 'Inter Tight', 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espacamento */
    --container-max: 1200px;
    --section-padding: clamp(4rem, 8vw, 8rem);
}

/* ==========================================================================
   2. GLOBAL, RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* ==========================================================================
   4. TIPOGRAFIA - Herda o tema automaticamente
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2.5rem); }

p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    max-width: 65ch;
    margin-bottom: 1rem;
    color: inherit;
    transition: color 0.5s ease;
}

/* ==========================================================================
   MOBILE FIRST ERGONOMICS & THUMB ZONE (WCAG)
   ========================================================================== */
@media (max-width: 768px) {

    .btn, .btn-primary, .btn-neon, .btn-assinar, .modal-submit {
        width: 100% !important;
        min-height: 48px !important;
        border-radius: 12px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 0.5rem;
    }
    
    input, select, textarea {
        font-size: 16px !important; /* Avoids iOS auto-zoom */
        padding: 14px 16px !important;
        min-height: 48px !important;
    }
    
    /* Hardware acceleration for GSAP animations on mobile */
    .reveal, .morph-card, .review-card, .process-card, .saas-card, .portfolio-card {
        will-change: transform, opacity;
    }
}

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

section {
    padding: var(--section-padding) 0;
    transition: background-color 0.5s ease;
}

/* ==========================================================================
   6. BOTOES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(0.5);
}

.btn-primary:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.btn-neon {
    background: var(--cta-btn);
    color: #090d16;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    letter-spacing: 0.08em;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    transform: skewX(-25deg);
}

.btn-neon:hover {
    background: var(--accent-cyan);
    color: #090d16;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.btn-neon:hover::before {
    left: 180%;
}

/* ==========================================================================
   7. BADGES
   ========================================================================== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badge-blue   { background: rgba(74, 143, 231, 0.15); color: var(--accent-blue); }
.badge-cyan   { background: rgba(0, 212, 170, 0.12);  color: var(--accent-cyan); }
.badge-purple { background: rgba(124, 141, 174, 0.15); color: var(--accent-purple); }

/* ==========================================================================
   8. SPLIT LAYOUT (BROKERPILOT STYLE)
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
}

.pinned-side {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    will-change: transform;
}

.scrolling-side {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* ==========================================================================
   9. UTILIDADES
   ========================================================================== */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.feature-block {
    will-change: transform, opacity;
}

/* Anti-FOUC: morph-cards ficam invisíveis até o GSAP assumir o controle */
.morph-card {
    visibility: hidden;
}

/* ==========================================================================
   10. GRIDS & CARDS
   ========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.5s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 143, 231, 0.3);
}

.card-pricing {
    position: relative;
    overflow: hidden;
}

.card-pricing.featured {
    border-color: var(--accent-2);
    box-shadow: 0 0 30px rgba(103, 58, 183, 0.2);
}

/* Glass Card — Deep Navy Glassmorphism */
.glass-card {
    background: rgba(17, 23, 33, 0.92) !important;
    border: 1px solid rgba(74, 143, 231, 0.3) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #F7F7F7 !important;
}

.glass-card h1,
.glass-card h2,
.glass-card h3,
.glass-card h4,
.glass-card p,
.glass-card span {
    color: #F7F7F7 !important;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
}

/* ==========================================================================
   11. MACBOOK STICKY SCROLL (Brokerpilot Architecture)
   ========================================================================== */
.sticky__container {
    height: 300vh;
    position: relative;
    width: 100%;
}

.sticky__element {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.macbook__container {
    position: relative;
    width: 90vw;
    max-width: 1000px;
    will-change: transform;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}

.laptop-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.laptop-screen-mask {
    position: absolute;
    top: 10.1%;
    left: 15.6%;
    width: 68.8%;
    height: 72.8%;
    overflow: hidden;
    z-index: 1;
    background: #000;
    border-radius: 4px;
    /* Esconde scrollbar interna */
    scrollbar-width: none;
}
.laptop-screen-mask::-webkit-scrollbar { display: none; }

.ui-long-image {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    scrollbar-width: none;
}
.ui-long-image::-webkit-scrollbar { display: none; }

/* ==========================================================================
   12. MASTER PIN & MORPHING CARDS
   ========================================================================== */
/* Cards ficam na metade esquerda do sticky-stage, sobrepostos ao device */
.cards-side-container {
    left: 5vw;
    top: calc(50% - 306px - 10vh); /* Alinhado ao topo exato do celular elevado */
    position: absolute;
    width: 35vw;
    opacity: 1;
    pointer-events: auto;
    z-index: 20;
}

.morph-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.96) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #F7F7F7 !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform-origin: top center;
    /* visibility gerenciada pela regra anti-FOUC acima e restaurada pelo GSAP */
}

.morph-card h2, .morph-card p {
    color: #F7F7F7 !important;
}

@media (max-width: 991px) {
    .cards-side-container {
        top: auto;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        max-width: 100%;
        /* Garante que não vaze para fora da viewport em mobile */
        overflow: hidden;
    }

    .morph-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   13. TECH WATERMARK (Marca d'agua cinematografica)
   ========================================================================== */
.tech-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 12vw, 14rem);
    font-weight: 900;
    color: var(--text-main);
    opacity: 0.04;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.04em;
    transition: opacity 0.5s ease;
    will-change: opacity, transform;
}

/* ==========================================================================
   14. FAQ SECTION (Accordion Semantico)
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease, background 0.5s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
    color: var(--text-main);
    transition: color 0.5s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-1);
    transition: transform 0.3s ease;
}

.faq-item[open] summary .icon {
    transform: rotate(45deg);
    color: var(--accent-2);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: sweep-down 0.4s ease-out forwards;
}

@keyframes sweep-down {
    0%   { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   15. FOOTER CLEAN & TRUST
   ========================================================================== */
.footer-clean {
    background: rgba(7, 10, 20, 1);
    border-top: none;
    padding: 3.5rem 0 2rem;
    position: sticky;
    bottom: 0;
    z-index: 10; /* Menor que o .diagnostico-seo-section (20) */
}

/* Linha superior: logo + nav */
.footer-clean__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-clean__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.footer-clean__brand:hover { opacity: 1; }

/* Nav do footer */
.footer-clean__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.8rem;
    align-items: center;
}

.footer-clean__nav a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.footer-clean__nav a:hover {
    color: var(--accent-cyan, #00F0FF);
}

/* Selos de confiança */
.footer-clean__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.footer-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.footer-trust-pill:hover {
    border-color: rgba(0, 240, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-trust-pill svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Divisor */
.footer-clean__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

/* Linha inferior */
.footer-clean__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-clean__copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    max-width: none;
}

.footer-clean__copy strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.footer-clean__legal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-clean__legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-clean__legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-clean__legal span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-clean__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .footer-clean__nav {
        gap: 0.25rem 1.2rem;
    }

    .footer-clean__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==========================================================================
   16. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #090d16;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    letter-spacing: 0.01em;
    
    /* Efeito Pop-up Hover */
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-3px);
}

.whatsapp-img-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(76, 175, 80, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-img-icon {
    filter: drop-shadow(0 6px 15px rgba(76, 175, 80, 0.5));
}

@keyframes bounce-wa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-text {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    .whatsapp-img-icon {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   17. CURSOR GLOW & INTERACOES PREMIUM
   ========================================================================== */
#cursor-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle at var(--x, 50vw) var(--y, 50vh), rgba(74, 143, 231, 0.06) 0%, transparent 40%);
    transition: opacity 0.3s ease;
}

/* Escala Imersiva Segura (Desktop) */
@media (min-width: 992px) {
    .device-morph-container {
        transform: scale(1.1);
        transform-origin: center center;
    }
}
/* ==========================================================================
   18. PRICING CARDS E LIGHT THEME
   ========================================================================== */
section[data-theme="light"], 
.light-theme-active {
    background-color: #F0F0F0 !important;
    color: #111111 !important;
}
section[data-theme="light"] h2, 
section[data-theme="light"] h3, 
section[data-theme="light"] h4, 
section[data-theme="light"] p, 
section[data-theme="light"] li,
.light-theme-active h1,
.light-theme-active h2,
.light-theme-active p {
    color: #111111 !important;
}

.pricing-card {
    background: #FFFFFF !important;
    border: 1px solid #DDDDDD !important;
    transition: background 0.5s ease, border-color 0.3s ease;
}

/* Secao de pricing no light theme — fundo levemente contrastante */
body.light-theme-active #pricing {
    background-color: #efefef;
}

/* Hero H1 — usa variavel para trocar com o tema */
.hero-bp h1,
.hero-content h1 {
    color: var(--text-main);
    transition: color 0.5s ease;
}

/* ==========================================================================
   19. PORTFOLIO FILTERS
   ========================================================================== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
}

.filter-btn {
    background-color: #F8B146; /* Orange tag color from image */
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0.9;
}

.filter-btn.active {
    background-color: #27AE60; /* Green tag color from image */
    color: #FFF;
}

/* Portfolio Card Animation */
.portfolio-card {
    transition: all 0.4s ease;
}

.portfolio-card.hide {
    display: none !important;
}

/* Header Slide Animation on Scroll */
.header-hidden {
    transform: translateY(-110%) !important;
}

/* ==========================================================================
   17. RESPONSIVE HEADER & NAVIGATION MENU
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, padding, background-color, border-color, box-shadow;
}

/* Scrolled Header Style */
.main-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(9, 13, 22, 0.96);
    border-bottom-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary, #B6B8BA);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover {
    color: var(--accent-cyan, #00F0FF);
}

/* Nav Underline Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-cyan, #00F0FF);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mobile Toggle Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Hamburger animations when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation drawer overlay */
@media (max-width: 991px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(9, 13, 22, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        gap: 2.5rem;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: #ffffff;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   20. GOOGLE REVIEWS SECTION (DEPOIMENTOS)
   ========================================================================== */
.reviews-section {
    padding: 8rem 0;
    background: var(--bg-main, #040811);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 12;
}

.google-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.google-summary-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.google-summary-stars {
    color: #fbbf24;
    letter-spacing: 1px;
}

.google-summary-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.reviews-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 0 1rem;
}

.reviews-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0.5rem;
    cursor: grab;
}

.reviews-carousel-container.active {
    cursor: grabbing;
}

.reviews-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    user-select: none;
}

.reviews-carousel-track .review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .reviews-carousel-track .review-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-carousel-track .review-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.carousel-arrow {
    background: rgba(9, 13, 22, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-arrow:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

@media (max-width: 1240px) {
    .prev-arrow {
        left: 5px;
    }
    .next-arrow {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent-cyan);
}

.review-card {
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent, rgba(255, 0, 127, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.25);
    background: rgba(17, 24, 39, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 240, 255, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.avatar-1 {
    background: linear-gradient(135deg, #00f0ff, #0072ff);
}

.avatar-2 {
    background: linear-gradient(135deg, #ff007f, #7f00ff);
}

.avatar-3 {
    background: linear-gradient(135deg, #00ff66, #009933);
}

.review-user-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.review-user-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--accent-cyan, #00f0ff);
    margin-top: 0.2rem;
}

.review-user-details span svg {
    stroke-width: 3px;
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.reply-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    line-height: 1.5;
}

.reply-block strong {
    color: var(--accent-cyan, #00f0ff);
    display: block;
    margin-bottom: 0.2rem;
}

/* ==========================================================================
   21. MODAL DE CAPTURA DE LEADS — FUNIL INFINITEPAY
   ========================================================================== */

/* Overlay — começa invisível para evitar FOUC */
#lead-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 8, 18, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* Anti-FOUC: mesmo padrão dos morph-cards */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#lead-modal-overlay.modal-open {
    visibility: visible;
    opacity: 1;
}

/* Card do Modal */
#lead-modal-card {
    background: linear-gradient(145deg, #0f1626, #111827);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(0, 240, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

#lead-modal-overlay.modal-open #lead-modal-card {
    transform: translateY(0) scale(1);
}

/* Brilho decorativo no card */
#lead-modal-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Header do Modal */
#modal-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

#modal-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#modal-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

#modal-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: none;
    line-height: 1.4;
}

#modal-subtitle strong {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Botão fechar */
#modal-close-btn {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

#modal-close-btn:hover {
    background: rgba(255, 0, 127, 0.15);
    border-color: rgba(255, 0, 127, 0.4);
    color: #FF007F;
    transform: scale(1.1);
}

/* Campos do formulário */
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.modal-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.modal-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: var(--font-body);
    transition: all 0.25s ease;
    outline: none;
}

.modal-field input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.modal-field input:focus {
    border-color: rgba(0, 240, 255, 0.5);
    background: rgba(0, 240, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08);
}

.modal-field input.input-error {
    border-color: rgba(255, 0, 127, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.08);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    60%       { transform: translateX(6px); }
}

/* Botão submit */
.modal-submit {
    width: 100%;
    background: var(--accent-green);
    color: #090d16;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.35);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.modal-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    transform: skewX(-20deg);
}

.modal-submit:hover::before {
    left: 180%;
}

.modal-submit:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 240, 255, 0.4);
}

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

.modal-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Texto de privacidade */
#modal-privacy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin: 1rem 0 0;
    max-width: none;
}

/* Responsive */
@media (max-width: 540px) {
    #lead-modal-card {
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
    }

    #modal-title {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   22. CONTATO FINAL — UNDERLINE FORM PREMIUM
   ========================================================================== */

/* Container do formulário: sem caixa, flutua sobre o fundo da seção */
.form-underline {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
}

/* Campo individual */
.form-underline__field {
    position: relative;
    margin-bottom: 2.8rem;
}

/* Label visualmente oculta mas acessível */
.form-underline__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Input no estilo underline */
.form-underline input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 15px 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-underline input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
}

/* Linha inferior destaque no foco */
.form-underline input:focus {
    border-bottom-color: var(--accent-cyan, #00F0FF);
    color: #ffffff;
}

/* Linha de progresso animada ao focar */
.form-underline__field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-cyan, #00F0FF);
    transition: width 0.3s ease, left 0.3s ease;
}

.form-underline__field:focus-within::after {
    left: 0;
    width: 100%;
}

/* Estado de erro no underline */
.form-underline input.input-error {
    border-bottom-color: rgba(255, 0, 127, 0.8);
    animation: shake 0.4s ease;
}

/* Botão submit: largo, centralizado, vibrante */
.form-underline .modal-submit {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 0;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-green, #00FF66);
    color: #090d16;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 255, 102, 0.3);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-underline .modal-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    transform: skewX(-20deg);
}

.form-underline .modal-submit:hover::before {
    left: 180%;
}

.form-underline .modal-submit:hover {
    background: var(--accent-cyan, #00F0FF);
    color: #090d16;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.4);
}

.form-underline .modal-submit:active {
    transform: translateY(0);
}

.form-underline .modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Texto de privacidade */
.form-underline + p,
.form-underline p[style] {
    color: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 480px) {
    .form-underline input {
        font-size: 1rem;
        padding: 12px 0;
    }

    .form-underline__field {
        margin-bottom: 2.2rem;
    }
}

/* ==========================================================================
   23. DIAGNÓSTICO SEO — SEÇÃO + MODAL DE CAPTURA
   ========================================================================== */

/* --- Seção principal — efeito "bottom sheet" sobre o FAQ fixo --- */
.diagnostico-seo-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0a0f1e;
    border-top: none;
    border-bottom: none;

    /* Flutua acima do FAQ (e também do rodapé no efeito cortina) */
    position: sticky;
    top: 0;
    z-index: 20;

    /* Bordas arredondadas no topo — efeito de card emergindo */
    border-radius: 32px 32px 0 0;

    /* Sombra superior para profundidade */
    box-shadow:
        0 -24px 60px rgba(0, 0, 0, 0.55),
        0 -1px 0 rgba(0, 255, 102, 0.12);

    overflow: hidden;
}

/* Glow de fundo da seção */
.diagnostico-seo__bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(0, 255, 102, 0.06) 0%,
        rgba(0, 240, 255, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Grid de métricas ilustrativas */
.diagnostico-seo__metrics {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.diagnostico-seo__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    min-width: 90px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.diagnostico-seo__metric:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.25);
    background: rgba(0, 240, 255, 0.04);
}

.diagnostico-seo__metric-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.diagnostico-seo__metric-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Modal Overlay --- */
#seo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(5, 8, 18, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#seo-modal-overlay.seo-modal-open {
    visibility: visible;
    opacity: 1;
}

/* --- Card do modal --- */
#seo-modal-card {
    background: linear-gradient(145deg, #0d1829, #111827);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(0, 255, 102, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(28px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

#seo-modal-overlay.seo-modal-open #seo-modal-card {
    transform: translateY(0) scale(1);
}

/* Glow decorativo do card */
.seo-modal__glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Header do modal --- */
.seo-modal__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.seo-modal__icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#seo-modal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

#seo-modal-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: none;
    line-height: 1.5;
}

#seo-modal-subtitle strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* Botão fechar */
#seo-modal-close {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

#seo-modal-close:hover {
    background: rgba(255, 0, 127, 0.15);
    border-color: rgba(255, 0, 127, 0.4);
    color: #FF007F;
    transform: scale(1.1);
}

/* --- Campos do formulário (underline style) --- */
.seo-modal__field {
    position: relative;
    margin-bottom: 2rem;
}

.seo-modal__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

#seo-lead-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 12px 0;
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: border-color 0.3s ease;
}

#seo-lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

#seo-lead-form input:focus {
    border-bottom-color: var(--accent-green, #00FF66);
    color: #fff;
}

/* Linha animada no foco */
.seo-modal__field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green, #00FF66);
    transition: width 0.3s ease, left 0.3s ease;
}

.seo-modal__field:focus-within::after {
    left: 0;
    width: 100%;
}

#seo-lead-form input.input-error {
    border-bottom-color: rgba(255, 0, 127, 0.8);
    animation: shake 0.4s ease;
}

/* --- Botão de submit do modal --- */
#seo-modal-submit {
    width: 100%;
    background: var(--accent-green, #00FF66);
    color: #090d16;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 28px rgba(0, 255, 102, 0.35);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

#seo-modal-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    transform: skewX(-20deg);
}

#seo-modal-submit:hover::before {
    left: 180%;
}

#seo-modal-submit:hover {
    background: var(--accent-cyan, #00F0FF);
    transform: translateY(-2px);
    box-shadow: 0 12px 38px rgba(0, 240, 255, 0.45);
}

#seo-modal-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Spinner de carregamento */
@keyframes seo-rotate {
    to { transform: rotate(360deg); }
}

.seo-spin {
    animation: seo-rotate 0.8s linear infinite;
}

/* Texto de privacidade */
.seo-modal__privacy {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin: 1rem 0 0;
    max-width: none;
    line-height: 1.4;
}

/* --- Responsivo --- */
@media (max-width: 540px) {
    #seo-modal-card {
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
    }

    #seo-modal-title {
        font-size: 1rem;
    }

    .diagnostico-seo__metrics {
        gap: 0.8rem;
    }

    .diagnostico-seo__metric {
        padding: 1rem 1rem;
        min-width: 72px;
    }
}

/* ==========================================================================
   SaaS PRICING TOGGLE ANIMATIONS
   ========================================================================== */
#pricing {
    transition: background 0.5s ease;
}

.bg-planos-anual {
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 50, 0.7) 0%, #090d16 80%) !important;
}

@keyframes pulseCard {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.97); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.animar-card-preco {
    animation: pulseCard 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ==========================================================================
   24. AJUSTE DE DEPOIMENTOS (FONT-SIZE REDUZIDO)
   ========================================================================== */
.review-user-details h3 {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.2rem;
}

/* ==========================================================================
   25. TAGEMBED OVERRIDE (BLOQUEIO DA MARCA D'ÁGUA NO IFRAME)
   ========================================================================== */
/* Como o Tagembed injeta um iframe, não podemos ocultar elementos internos via 'display: none' do site pai.
   A solução definitiva é criar uma máscara física (overlay) por cima da área da marca d'água. */
.tagembed-widget {
    position: relative !important;
}

.tagembed-widget::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    /* Tamanho exato para cobrir o "Powered by tagembed" no canto superior direito */
    width: 260px;
    height: 48px;
    /* Usa a mesma cor de fundo da seção para ficar invisível */
    background: #090d16 !important; 
    z-index: 99999 !important;
    pointer-events: none !important;
}

/* Destaque visual para itens do FAQ abertos */
.faq-item.active {
    background-color: #1a2233 !important; 
    border: 1px solid #00f2ff !important; 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.15) !important;
    transition: all 0.3s ease;
}

/* Ajuste opcional para o ícone no estado aberto */
.faq-item.active .faq-icon {
    background-color: #00f2ff !important;
    color: #000 !important;
}

/* Gatilho de Oferta */
.oferta-gatilho {
    width: 100% !important;
    text-align: center !important;
    margin: 20px auto !important; /* Margens simétricas para respiro visual */
    font-weight: 300 !important;
    color: #e2e8f0 !important; /* Cinza claro de alto contraste */
}

/* Lista de Benefícios da Hero */
.hero-beneficios {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem auto;
    width: 100%;
}

.hero-beneficios li {
    color: var(--accent-cyan, #00F0FF);
    font-weight: 500;
    font-size: 1rem;
}

.titulo-destaque {
    color: var(--accent-cyan, #00F0FF);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   CEL-MOBILE: Ocultar no Desktop (regra fora da media query é segura pois
   a imagem .hero-cel-mobile NÃO existia antes — não afeta nada existente)
   ========================================================================== */
.hero-cel-mobile {
    display: none;
}

/* ==========================================================================
   REFATORAÇÃO MOBILE V2 — SIDE-BY-SIDE + COMPRESSÃO MÁXIMA DO FUNIL
   DIRETRIZ: ZERO alterações em regras globais/desktop. Tudo encapsulado aqui.
   ========================================================================== */
@media (max-width: 768px) {

    /* ══════════════════════════════════════════════════════════════════════
       FASE 1: COMPACTAÇÃO EXTREMA — TIPOGRAFIA E BURACOS NEGROS
       ══════════════════════════════════════════════════════════════════════ */
    h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.75rem !important;
    }

    h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.9rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.75rem !important;
    }

    h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }

    p {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }

    /* Preços — compactação forte */
    .saas-price { font-size: 1.8rem !important; }
    .saas-title { font-size: 1rem !important; }
    .saas-period { font-size: 0.85rem !important; }
    .feature-item, .sec-feature-item { font-size: 0.85rem !important; }

    /* Extermínio dos Buracos Negros (Scroll Infinito) */
    section {
        padding: 40px 15px !important;
        margin: 0 !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .container.reveal[style*="margin-bottom: 5rem"],
    .container.reveal[style*="margin-bottom: 4rem"],
    div.reveal[style*="margin-bottom: 4rem"] {
        margin-bottom: 1.5rem !important;
    }

    .badge {
        font-size: 0.72rem !important;
        padding: 0.2rem 0.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .grid-3 { gap: 1rem !important; }

    .card, .process-card, .nicho-card, .feature-card {
        padding: 15px !important;
    }

    /* Neutralização de Alturas Fixas / Scroll Infinito */
    .hero-bp,
    .sticky-stage,
    .master-pin-wrapper,
    .diagnostico-seo-section,
    #portfolio,
    #faq,
    #pricing,
    div[style*="height: 120vh"],
    div[style*="height: 150vh"] {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        top: auto !important;
    }

    .hero-bp h1, #hero-title {
        font-size: 1.6rem !important;
        line-height: 1.12 !important;
        margin-bottom: 8px !important;
    }

    .titulo-destaque {
        font-size: 1.25rem !important;
        display: block !important;
        margin-top: 4px !important;
    }

    .oferta-gatilho {
        margin-top: 8px !important;
        margin-bottom: 10px !important;
        font-size: 0.85rem !important;
    }

    .hero-beneficios {
        gap: 10px !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-beneficios li {
        font-size: 0.82rem !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FASE 2: HERO SECTION — MOBILE VERTICAL FLOW
       Estrutura: Botão → Notebook+Celular → Cards (cada um em sua linha)
       ══════════════════════════════════════════════════════════════════════ */
    .hero-bp {
        padding-top: 1.8rem !important; /* Espaço reduzido com o cabeçalho */
        padding-bottom: 0px !important;
    }

    .master-pin-wrapper {
        margin-top: 0 !important;
        padding-top: 0px !important;
    }

    .sticky-stage {
        overflow: visible !important;
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0px 0 !important;
        perspective: none !important;
    }

    /* O .container pai que empilha tudo — forçar coluna no mobile */
    .sticky-stage > .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: auto !important;
        gap: 0 !important;
    }

    /* ── LINHA 1: BOTÃO CTA (full width, uma linha própria) ── */
    #sticky-btn-container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        width: 100% !important;
        order: 1 !important;
        margin-top: 15px !important; /* Respeita o espaço do texto acima */
        margin-bottom: 45px !important; /* Espaço na parte de baixo do botão antes dos mockups */
        z-index: 50 !important;
    }

    .cta-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .cta-container .btn-neon {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 1rem 1.2rem !important;
        font-size: 1rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* ── LINHA 2: NOTEBOOK + CELULAR (sobrepostos) ── */
    .device-morph-container {
        position: relative !important;
        transform-style: flat !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important; /* Gap zerado para permitir sobreposição controlada */
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        order: 2 !important;
    }

    /* Notebook — 74% da linha (Aumentado conforme solicitado) */
    .macbook-side {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        width: 74% !important;
        max-width: 74% !important;
        height: auto !important;
        flex-shrink: 0 !important;
        transform: none !important;
        backface-visibility: visible !important;
        object-fit: contain !important;
        z-index: 1 !important;
    }

    /* Celular — 25% da linha (Reduzido e sobreposto na ponta do notebook) */
    .hero-cel-mobile {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 25% !important;
        max-width: 25% !important;
        height: auto !important;
        flex-shrink: 0 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5)) !important;
        border-radius: 12px !important;
        object-fit: contain !important;
        margin-left: -10% !important; /* Puxa o celular sobre a ponta do notebook */
        position: relative !important;
        z-index: 2 !important; /* Celular por cima do notebook */
    }

    /* Ajustes das Páginas de Nicho (template-seo-master.html) */
    header[aria-labelledby="hero-title"] {
        padding: 1.8rem 0 2rem !important; /* Espaço reduzido com o cabeçalho */
    }
    header[aria-labelledby="hero-title"] > .container > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    header[aria-labelledby="hero-title"] > .container > div > div:first-child {
        text-align: center !important;
    }
    header[aria-labelledby="hero-title"] .cta-container {
        align-items: center !important;
        margin-top: 15px !important; /* Respeita o espaço do texto acima */
        margin-bottom: 45px !important; /* Espaço na parte de baixo do botão */
    }
    header[aria-labelledby="hero-title"] .hero-beneficios {
        justify-content: center !important;
    }
    .hero-mockups-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important; /* Sem gap físico para permitir a sobreposição */
        width: 100% !important;
    }
    .hero-notebook-img {
        width: 74% !important;
        max-width: 74% !important;
        height: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* Imagens internas do notebook */
    .macbook-side img,
    img.laptop-frame,
    img[src*="apex-notebook"] {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        object-fit: contain !important;
    }

    .laptop-screen-mask {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Kill GSAP animations on mobile */
    .macbook-side,
    .macbook-side *,
    .device-morph-container {
        animation: none !important;
        transition: none !important;
    }

    /* iPhone 3D side oculto no mobile */
    .iphone-side {
        display: none !important;
    }

    /* ── LINHA 3: CARDS DE VANTAGENS (Empilhados e sobrepostos) ── */
    .cards-side-container {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important; /* Gap zerado para permitir a sobreposição pelo margin-top */
        margin-top: 35px !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        order: 3 !important;
    }

    @keyframes fadeInUpCard {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .morph-card {
        visibility: visible !important;
        opacity: 0; /* Começa invisível para animar */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 330px !important; /* Compacto para visual empilhado */
        margin-top: -12px !important; /* Sobrepõe a pontinha do card anterior com suavidade */
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 16px 16px 28px 16px !important; /* Aumentado padding inferior para criar zona de respiro */
        border-radius: 14px !important;
        background: rgba(17, 24, 39, 0.94) !important;
        border: 1px solid rgba(0, 240, 255, 0.15) !important;
        box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.3) !important;
        
        /* Movimento de Entrada em Cascata */
        animation: fadeInUpCard 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
        
        /* Transição Suave Interativa */
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                    border-color 0.3s ease, 
                    box-shadow 0.3s ease !important;
    }

    .morph-card:first-child {
        margin-top: 0 !important; /* Primeiro card não sobrepõe nada acima */
    }

    /* Cascata de atraso da animação */
    .morph-card:nth-child(1) { animation-delay: 0.1s !important; z-index: 1; }
    .morph-card:nth-child(2) { animation-delay: 0.35s !important; z-index: 2; }
    .morph-card:nth-child(3) { animation-delay: 0.6s !important; z-index: 3; }

    /* Oculta os cards 4, 5 e 6 no mobile */
    .morph-card:nth-child(n+4) {
        display: none !important;
    }

    /* Efeito de Destaque Flutuante no Toque/Hover */
    .morph-card:hover {
        transform: translateY(-8px) !important;
        z-index: 10 !important; /* Fica acima de todos no hover */
        border-color: rgba(0, 240, 255, 0.45) !important;
        box-shadow: 0 -12px 30px rgba(0, 240, 255, 0.15), 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    }

    .morph-card h2 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }

    .morph-card p {
        font-size: 0.78rem !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }

    .morph-card .badge {
        font-size: 0.6rem !important;
        padding: 0.12rem 0.45rem !important;
        margin-bottom: 0.3rem !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FASE 3.5: OCULTAR TABELA COMPARATIVA NO MOBILE
       ══════════════════════════════════════════════════════════════════════ */
    #comparativo {
        display: none !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FASE 4: SEÇÕES ESPECÍFICAS — AJUSTES E BURACOS NEGROS
       ══════════════════════════════════════════════════════════════════════ */
    #processo { border-radius: 20px 20px 0 0 !important; }
    .process-number { font-size: 80px !important; }
    
    .nicho-title { font-size: 1.1rem !important; }
    .nicho-desc { font-size: 0.85rem !important; }
    
    .feature-card-title { font-size: 1.05rem !important; }
    .feature-card-desc { font-size: 0.85rem !important; }
    
    /* Mostra apenas os cards 2, 3 e 4 nas funcionalidades da assinatura no mobile */
    .features-grid .feature-card {
        display: none !important;
    }
    .features-grid .feature-card:nth-child(2),
    .features-grid .feature-card:nth-child(3),
    .features-grid .feature-card:nth-child(4) {
        display: flex !important;
    }

    /* Harmonização do botão CTA na seção de features no mobile */
    .features-cta-container {
        margin-top: 2.5rem !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .features-cta-btn {
        padding: 0.85rem 1.8rem !important;
        font-size: 0.88rem !important;
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        display: inline-block !important;
        border-radius: 50px !important;
        box-sizing: border-box !important;
    }
    
    .gamechanger-card { margin-bottom: 0.75rem !important; }
    .gamechanger-title { font-size: 1.1rem !important; }
    .gamechanger-desc { font-size: 0.85rem !important; }
    .gamechanger-image { max-height: 350px !important; }
    
    .saas-card { gap: 0.75rem !important; }
    .footer-clean { padding: 1.5rem 0 1rem !important; }
    
    .header-cta-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.72rem !important;
        white-space: nowrap !important;
    }

    .diagnostico-seo-section { border-radius: 20px 20px 0 0 !important; }
    .tech-watermark { display: none !important; }
    .concentric-circles-bg { opacity: 0.3 !important; }

    /* Oculta filtros não essenciais no mobile inicialmente */
    .portfolio-filters .filter-btn.hidden-niche {
        display: none !important;
    }

    .portfolio-filters .filter-btn.hidden-niche.show-always {
        display: inline-block !important;
    }

    .more-niches-btn {
        display: inline-block !important;
    }

    .more-niches-btn.hide-btn {
        display: none !important;
    }

    #portfolio-load-more-container,
    #nichos-load-more-container {
        text-align: center !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* Garante 1 coluna de FAQ no mobile globalmente */
    .faq-list {
        grid-template-columns: 1fr !important;
    }

    /* Mostra apenas as 4 primeiras dúvidas do FAQ no mobile */
    .faq-list .faq-item:nth-child(n+5) {
        display: none !important;
    }

    /* Ajusta margem da seção de diagnóstico no mobile para não sobrepor o FAQ */
    .diagnostico-wrapper {
        margin-top: 2rem !important;
    }

    /* Melhora os espaçamentos e a altura da seção de Diagnóstico SEO no mobile */
    .diagnostico-seo-section {
        padding: 90px 20px 80px 20px !important;
    }

    .diagnostico-seo-section h2 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.25 !important;
    }

    .diagnostico-seo-section p {
        margin-bottom: 2.5rem !important;
        line-height: 1.6 !important;
    }

    .diagnostico-seo__metrics {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 0.7rem !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 3rem auto !important;
    }

    .diagnostico-seo__metric {
        min-width: 0 !important;
        padding: 1rem 0.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Primeira linha: 3 cards */
    .diagnostico-seo__metric:nth-child(1),
    .diagnostico-seo__metric:nth-child(2),
    .diagnostico-seo__metric:nth-child(3) {
        grid-column: span 2 !important;
    }

    /* Segunda linha: 2 cards centralizados */
    .diagnostico-seo__metric:nth-child(4) {
        grid-column: 2 / span 2 !important;
    }
    .diagnostico-seo__metric:nth-child(5) {
        grid-column: 4 / span 2 !important;
    }

    .diagnostico-seo__metric-label {
        font-size: 0.68rem !important;
        letter-spacing: 0.02em !important;
        text-align: center !important;
    }

    .diagnostico-seo__metric-icon {
        font-size: 1.4rem !important;
    }

    #btn-abrir-diagnostico {
        margin-top: 1rem !important;
        padding: 1.2rem 3rem !important;
    }

    /* Classes de Transição CSS nativas de alto desempenho para entrada de seções no mobile */
    .reveal,
    .feature-block,
    .process-card,
    .morph-card,
    .saas-card,
    .portfolio-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity;
    }

    .reveal.animated,
    .feature-block.animated,
    .process-card.animated,
    .morph-card.animated,
    .saas-card.animated,
    .portfolio-card.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Efeito de Zoom Suave e Contínuo na imagem do celular do gamechanger no mobile */
    @keyframes softZoom {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    .gamechanger-image-container {
        overflow: visible !important;
    }

    .gamechanger-image {
        animation: softZoom 8s ease-in-out infinite !important;
        will-change: transform;
    }

    /* Animações de entrada do Hero no mobile para máxima performance e elegância */
    @keyframes mobileHeroFadeIn {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-bp h1,
    .hero-bp .titulo-destaque,
    .hero-bp .oferta-gatilho,
    .hero-bp .hero-beneficios,
    .hero-cel-mobile {
        opacity: 0;
        animation: mobileHeroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-bp h1 { animation-delay: 0.15s; }
    .hero-bp .oferta-gatilho { animation-delay: 0.3s; }
    .hero-bp .hero-beneficios { animation-delay: 0.4s; }
    .hero-cel-mobile { animation-delay: 0.5s; }
}

/* Oculta o botão + MAIS no desktop */
@media (min-width: 769px) {
    .more-niches-btn {
        display: none !important;
    }
}

