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

:root {
    /* Cores PrimÃ¡rias (Identidade Grow Animation) */
    --primary: #FFB200;
    --primary-active: #FF9100;
    --primary-disabled: #FFDD6E;
    --ink: #371A45;
    
    /* Cores do Canvas e SuperfÃ­cies (100% Dark Mode Unificado) */
    --canvas-dark: #0e0414;          /* Fundo base principal (EspaÃ§o Sombrio) */
    --canvas-section-dark: #160721;  /* Fundo secundÃ¡rio para contraste sutil */
    --surface-card-dark: rgba(30, 14, 49, 0.45);   /* SuperfÃ­cie de cards com glassmorphism */
    --surface-elevated-dark: rgba(82, 43, 109, 0.35);
    
    /* Cores de Texto */
    --text-main: #FFFFFF;
    --text-muted: #B6CAFF;           /* Azul acinzentado claro de alta legibilidade */
    --text-muted-strong: #986DD6;    /* LilÃ¡s assinatura */
    
    /* SemÃ¡foros e Destaques (Inspirados no site do Grow / Auth0) */
    --trading-up: #59CCC7;
    --trading-down: #cf2e2e;
    --accent-blue: #00ABE4;
    --white: #ffffff;
    --purple-glow: rgba(152, 109, 214, 0.35);
    --gold-glow: rgba(255, 178, 0, 0.35);
    --blue-glow: rgba(0, 171, 228, 0.25);
    
    /* Fontes */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* EspaÃ§amentos e Arredondamento */
    --round-sm: 8px;
    --round-md: 15px;
    --round-lg: 24px;
    --round-full: 9999px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

html {
    /* Bloqueia scroll horizontal no nível do documento (clip não cria scroll container) */
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: var(--canvas-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* --- MESH GRADIENTS DE FUNDO COESOS (Tornando o Site um ConteÃºdo Ãšnico) --- */
.site-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: var(--round-full);
    filter: blur(150px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.glow-1 { top: 2%; left: 10%; width: 600px; height: 600px; background: var(--primary); }
.glow-2 { top: 15%; right: 5%; width: 700px; height: 700px; background: var(--accent-blue); }
.glow-3 { top: 32%; left: 15%; width: 650px; height: 650px; background: var(--purple-glow); }
.glow-4 { top: 50%; right: 10%; width: 800px; height: 800px; background: var(--primary-active); }
.glow-5 { top: 68%; left: 5%; width: 700px; height: 700px; background: var(--accent-blue); }
.glow-6 { top: 82%; right: 12%; width: 650px; height: 650px; background: var(--text-muted-strong); }

/* --- POEIRA CÃ“SMICA E ESTRELAS DE FUNDO --- */
.site-bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    animation: starsScroll 360s linear infinite;
}

@keyframes starsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    will-change: opacity;
}

.star.star-small {
    width: 1px;
    height: 1px;
}

.star.star-medium {
    width: 2px;
    height: 2px;
}

.star.star-large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px 1.5px rgba(255, 255, 255, 0.95);
}

.shooting-star {
    position: absolute;
    pointer-events: none;
    z-index: -2; /* Fica no fundo junto com as estrelas */
    transform-origin: 40px 25px;
    filter: blur(1.5px) drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
    will-change: transform, opacity;
}

@keyframes twinkle {
    0% { opacity: 0.15; }
    100% { opacity: 1; }
}

@keyframes shootSVG {
    0% {
        transform: rotate(var(--angle, -35deg)) translate(0, 0) scaleX(0);
        opacity: 0;
    }
    10% {
        transform: rotate(var(--angle, -35deg)) translate(-150px, 0) scaleX(1.6);
        opacity: 1;
    }
    30% {
        transform: rotate(var(--angle, -35deg)) translate(-400px, 0) scaleX(1.2);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: rotate(var(--angle, -35deg)) translate(-1200px, 0) scaleX(0.05);
        opacity: 0;
    }
}



/* --- MICRO-ANIMAÃ‡Ã•ES DE SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Efeito de atraso sequencial nos reveals */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- ESTRUTURA DOS CARDS PREMIUM COM EFEITO SHINE (Estilo Auth0) --- */
.premium-card {
    background: var(--surface-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--round-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Brilho linear interno ao passar o mouse */
.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: 0.6s ease;
    z-index: 1;
}

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

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 178, 0, 0.4);
    background: rgba(43, 20, 69, 0.6);
    box-shadow: 0 20px 45px -10px var(--purple-glow), 0 10px 20px -5px var(--gold-glow);
}

/* PadronizaÃ§Ã£o dos hovers das seÃ§Ãµes stats-section e service-card com o estilo de styles-grid */
.stat-card-premium.premium-card:hover,
.clutch-card-premium.premium-card:hover,
.service-card.premium-card:hover {
    border-color: rgba(152, 109, 214, 0.45);
    background: rgba(43, 20, 69, 0.55);
    box-shadow: 0 20px 40px rgba(152, 109, 214, 0.15);
    transform: translateY(-8px);
}

/* --- BOTÃ•ES ULTRA-PREMIUM COM GRADIENTES METÃLICOS --- */
.btn-premium-solid {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border: none;
    border-radius: var(--round-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px var(--gold-glow), 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.btn-premium-solid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--round-full);
    background: linear-gradient(135deg, var(--primary-active) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-premium-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--gold-glow), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-premium-solid:hover::after {
    opacity: 1;
}

.btn-premium-outline {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--round-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-premium-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 8px 20px var(--gold-glow);
    transform: translateY(-3px);
}

/* --- TÃTULOS GERAIS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-main);
    font-weight: 600;
}

/* --- COMPONENTES COMUNS E ALINHAMENTO --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 24px;
}

/* --- UNIFIED SECTION HEADINGS TYPOGRAPHY (H2 & H3) --- */
.section-header h2,
.company-content h2,
.why-use-intro h2,
.industries-info h2,
.why-us-data h2,
.cta-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.section-header h3,
.company-content h3,
.why-use-intro h3,
.industries-info h3,
.cta-container h3 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h3 {
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 650px;
}

.btn-quote {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border: none;
    border-radius: var(--round-full);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
}

.btn-quote:hover {
    background: linear-gradient(135deg, var(--primary-active) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--gold-glow);
    color: var(--ink);
}

nav.main-nav ul li a.btn-quote {
    padding: 12px 24px;
    font-size: 16px;
}

/* --- MENU CABEÃ‡ALHO --- */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

header.site-header.scrolled {
    background: rgba(14, 4, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

nav.main-nav ul li a.nav-link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.85;
    position: relative;
    padding: 6px 0;
}

nav.main-nav ul li a.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

nav.main-nav ul li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

nav.main-nav ul li a.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* Menu Mobile Overlay */
.navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(14, 4, 20, 0.99);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.navbar-mobile.active {
    right: 0;
}

.navbar-mobile .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-mobile ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.navbar-mobile ul li a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.navbar-mobile ul li a:hover {
    color: var(--primary);
}


/* --- SEÃ‡ÃƒO HERO MODERNA E ASSIMÃ‰TRICA --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 60px 0; /* Ajustado para melhor centralizaÃ§Ã£o vertical em telas 1080p+ */
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Editor de VÃ­deo Premium (Hero Right) */
.hero-video-wrapper {
    position: relative;
    width: 100%;
}

/* Astronauta apontando para o play (Hero Right) */
.hero-astronaut {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 320px;
    z-index: 10;
    pointer-events: none;
    will-change: transform;
}

.hero-astronaut img {
    width: 100%;
    height: auto;
    display: block;
    animation: astronautFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes astronautFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 1200px) {
    .hero-astronaut {
        width: 290px;
        bottom: -140px;
        right: -130px;
    }
}

@media (max-width: 992px) {
    .hero-astronaut {
        width: 220px;
        bottom: -100px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-astronaut {
        display: none;
    }
}

.editor-window-mockup {
    background: rgba(30, 14, 49, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--round-lg);
    padding: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.editor-window-mockup:hover {
    border-color: rgba(255, 178, 0, 0.3);
    box-shadow: 0 35px 90px var(--purple-glow);
}

.editor-header {
    height: 44px;
    background-color: rgba(14, 4, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.window-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 16px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: var(--round-full);
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.editor-tabs {
    display: flex;
    margin: 0 auto;
    gap: 4px;
}

.editor-tab {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: var(--round-sm);
    color: var(--text-muted);
    opacity: 0.5;
}

.editor-tab.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-workspace {
    padding: 16px;
}

.video-mockup {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--round-md);
    background: radial-gradient(circle, #3e1f52 0%, #170724 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.5s ease;
}

.video-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 18, 67, 0.4) 0%, rgba(16, 5, 27, 0.82) 100%);
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
}

.video-mockup:hover::after {
    opacity: 0.70;
}

.video-mockup:hover .video-preview {
    transform: scale(1.03);
}

.play-trigger {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--gold-glow);
    z-index: 5;
    transition: var(--transition-smooth);
    position: relative;
}

.play-trigger i {
    color: var(--canvas-dark);
    font-size: 32px;
    margin-left: 4px;
}

.play-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px var(--gold-glow);
}

.play-trigger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--round-full);
    border: 2px solid var(--primary);
    animation: pulseGlow 2s infinite;
}

/* ===================================================================
   CAMADA GLOBAL DE PLANETAS â€” posicionados em relaÃ§Ã£o ao documento inteiro
   =================================================================== */

/* Container que cobre TODO o documento */
.planets-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1; /* Fica atrÃ¡s de todo o conteÃºdo, mas Ã  frente das estrelas */
}

/* Oculta planetas em telas menores que 1200px (sem margens laterais livres) */
@media (max-width: 1200px) {
    .planets-layer {
        display: none;
    }
}

/* Elemento base de cada planeta */
.gp {
    position: absolute;
    pointer-events: none;
}

.gp img {
    width: 100%;
    height: auto;
    display: block;
    animation-fill-mode: both; /* Evita o pulo brusco de posiÃ§Ã£o apÃ³s o delay inicial de cada planeta */
}

/* Keyframes de drift celestial (time lapse muito lento) */
@keyframes celestialDriftA {
    0% { transform: translate(100px, 0) rotate(0deg); }
    50% { transform: translate(-120px, -15px) rotate(3deg); }
    100% { transform: translate(100px, 0) rotate(0deg); }
}
@keyframes celestialDriftB {
    0% { transform: translate(-100px, 0) rotate(0deg); }
    50% { transform: translate(120px, -25px) rotate(-4deg); }
    100% { transform: translate(-100px, 0) rotate(0deg); }
}
@keyframes celestialDriftC {
    0% { transform: translate(80px, 0) rotate(0deg); }
    50% { transform: translate(-100px, -30px) rotate(5deg); }
    100% { transform: translate(80px, 0) rotate(0deg); }
}

/* â”€â”€ HERO (0 â€“ 12% da pÃ¡gina) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-1 Â· Hero Â· direita superior Â· grande Â· plano frente */
.gp-1 {
    top: 2%;
    right: calc(50% - 950px);
    width: 340px;
    opacity: 0.95;
    z-index: 3;
}
.gp-1 > img { animation: celestialDriftA 80s ease-in-out infinite; }

/* gp-2 Â· Hero Â· esquerda baixo Â· pequeno Â· fundo com blur */
.gp-2 {
    top: 7%;
    left: calc(50% - 720px);
    width: 120px;
    opacity: 0.40;
    filter: blur(5px);
    z-index: 1;
}
.gp-2 > img { animation: celestialDriftB 95s ease-in-out infinite 5s; }

/* gp-3 Â· Hero Â· direita centro Â· minÃºsculo Â· blur profundo */
.gp-3 {
    top: 5%;
    right: calc(50% - 720px);
    width: 90px;
    opacity: 0.30;
    filter: blur(8px);
    z-index: 1;
}
.gp-3 > img { animation: celestialDriftC 110s ease-in-out infinite 2s; }

/* â”€â”€ CLIENTES / COMPANY (12 â€“ 28%) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-4 Â· Company Â· direita Â· mÃ©dio Â· padrÃ£o (swapped) */
.gp-4 {
    top: 14%;
    right: calc(50% - 880px);
    width: 260px;
    opacity: 0.80;
    z-index: 2;
}
.gp-4 > img { animation: celestialDriftA 85s ease-in-out infinite 12s; }

/* gp-5 Â· Stats Â· esquerda Â· minÃºsculo Â· blur distante (swapped) */
.gp-5 {
    top: 20%;
    left: calc(50% - 730px);
    width: 120px;
    opacity: 0.35;
    filter: blur(6px);
    z-index: 1;
}
.gp-5 > img { animation: celestialDriftB 100s ease-in-out infinite 8s; }

/* â”€â”€ SERVIÃ‡OS / ESTILOS (28 â€“ 50%) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-6 Â· Services Â· esquerda Â· grande Â· frente */
.gp-6 {
    top: 29%;
    left: calc(50% - 950px);
    width: 220px;
    opacity: 0.90;
    z-index: 3;
}
.gp-6 > img { animation: celestialDriftC 75s ease-in-out infinite; }

/* gp-7 Â· Styles Â· esquerda Â· mÃ©dio Â· blur suave (swapped) */
.gp-7 {
    top: 38%;
    left: calc(50% - 830px);
    width: 220px;
    opacity: 0.55;
    filter: blur(3px);
    z-index: 1;
}
.gp-7 > img { animation: celestialDriftA 90s ease-in-out infinite 15s; }

/* gp-13 Â· Left side foreground asteroid Â· new */
.gp-13 {
    top: 45%;
    left: calc(50% - 950px);
    width: 140px;
    opacity: 0.85;
    z-index: 3;
    filter: blur(1.5px);
}
.gp-13 > img { animation: celestialDriftA 95s ease-in-out infinite 3s; }

/* gp-14 Â· Right side deep background planet Â· new */
.gp-14 {
    top: 32%;
    right: calc(50% - 820px);
    width: 100px;
    opacity: 0.40;
    z-index: 1;
    filter: blur(6px);
}
.gp-14 > img { animation: celestialDriftB 110s ease-in-out infinite 11s; }

/* â”€â”€ INDUSTRIES / PROCESS (50 â€“ 68%) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-8 Â· Industries Â· direita Â· mÃ©dio Â· padrÃ£o (swapped) */
.gp-8 {
    top: 51%;
    right: calc(50% - 860px);
    width: 240px;
    opacity: 0.75;
    z-index: 2;
}
.gp-8 > img { animation: celestialDriftB 105s ease-in-out infinite 6s; }

/* gp-9 Â· Process Â· direita Â· grande Â· frente */
.gp-9 {
    top: 60%;
    right: calc(50% - 930px);
    width: 260px;
    opacity: 0.88;
    z-index: 3;
}
.gp-9 > img { animation: celestialDriftC 80s ease-in-out infinite 4s; }

/* gp-16 Â· Right side background planet Â· new */
.gp-16 {
    top: 67%;
    right: calc(50% - 740px);
    width: 110px;
    opacity: 0.50;
    z-index: 2;
    filter: blur(3px);
}
.gp-16 > img { animation: celestialDriftA 105s ease-in-out infinite 14s; }

/* â”€â”€ WHY US / TESTIMONIALS (68 â€“ 82%) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-10 Â· Why Us Â· esquerda Â· pequenÃ­ssimo Â· blur profundo */
.gp-10 {
    top: 69%;
    left: calc(50% - 750px);
    width: 100px;
    opacity: 0.30;
    filter: blur(9px);
    z-index: 1;
}
.gp-10 > img { animation: celestialDriftA 115s ease-in-out infinite 10s; }

/* gp-15 Â· Left side midground asteroid Â· new */
.gp-15 {
    top: 76%;
    left: calc(50% - 790px);
    width: 130px;
    opacity: 0.75;
    z-index: 2;
}
.gp-15 > img { animation: celestialDriftC 85s ease-in-out infinite 9s; }

/* â”€â”€ BLOG / CTA (82 â€“ 100%) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* gp-11 Â· Blog Â· direita Â· mÃ©dio Â· padrÃ£o */
.gp-11 {
    top: 83%;
    right: calc(50% - 860px);
    width: 230px;
    opacity: 0.80;
    z-index: 2;
}
.gp-11 > img { animation: celestialDriftB 90s ease-in-out infinite; }

/* gp-12 Â· CTA/Contact Â· esquerda Â· pequeno Â· blur suave */
.gp-12 {
    top: 91%;
    left: calc(50% - 800px);
    width: 170px;
    opacity: 0.45;
    filter: blur(4px);
    z-index: 1;
}
.gp-12 > img { animation: celestialDriftC 100s ease-in-out infinite 7s; }

/* gp-17 Â· Right side small background asteroid Â· new */
.gp-17 {
    top: 10%;
    right: calc(50% - 800px);
    width: 60px;
    opacity: 0.50;
    z-index: 1;
    filter: blur(4px);
}
.gp-17 > img { animation: celestialDriftB 110s ease-in-out infinite 11s; }

/* gp-18 Â· Left side medium asteroid Â· new */
.gp-18 {
    top: 55%;
    left: calc(50% - 850px);
    width: 90px;
    opacity: 0.70;
    z-index: 2;
    filter: blur(1px);
}
.gp-18 > img { animation: celestialDriftA 95s ease-in-out infinite 3s; }

/* gp-19 Â· Right side large foreground asteroid Â· new */
.gp-19 {
    top: 80%;
    right: calc(50% - 900px);
    width: 150px;
    opacity: 0.90;
    z-index: 3;
}
.gp-19 > img { animation: celestialDriftC 85s ease-in-out infinite 9s; }

/* gp-20 Â· Right side small background asteroid Â· new */
.gp-20 {
    top: 23%;
    right: calc(50% - 750px);
    width: 70px;
    opacity: 0.40;
    z-index: 1;
    filter: blur(5px);
}
.gp-20 > img { animation: celestialDriftB 105s ease-in-out infinite 14s; }

/* Garante que todo o conteÃºdo principal fique na frente da camada de planetas */
.hero-container,
.company-container,
.why-use-container,
.services-grid,
.styles-grid,
.industries-container,
.process-grid-modern,
.why-us-container,
.blog-grid,
.cta-container,
.contact-layout,
.section-header,
nav {
    position: relative;
    z-index: 2;
}


/* --- SEÃ‡ÃƒO DE CLIENTES: CARROSSEL MARQUEE (ContÃ­nuo e Fluido) --- */
.clients-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* clients-section h2 now inherits from .section-header â€” no override needed */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

/* Efeito Premium de Fade nas bordas */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--canvas-dark) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--canvas-dark) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo-card {
    flex-shrink: 0;
    margin: 0 35px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 12px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.client-logo-card img {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    /* ForÃ§a branco nos SVGs externos */
    filter: brightness(0) invert(1);
    opacity: 0.40;
    transition: var(--transition-smooth);
}

.client-logo-card:hover {
    transform: scale(1.1);
    background: none;
    border: none;
    box-shadow: none;
}

.client-logo-card:hover img {
    opacity: 0.95;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}


/* --- SEÃ‡ÃƒO SOBRE / STUDIO (#company) --- */
.company-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 6fr;
    align-items: center;
    gap: 64px;
}

.company-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-wrapper {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 456px;
    display: block;
    margin: 0 auto;
}

.rocket-cloud-img,
.rocket-solo-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    object-fit: contain;
}

.rocket-cloud-img {
    z-index: 1;
    filter: drop-shadow(0 24px 48px var(--purple-glow));
}

.rocket-solo-img {
    z-index: 2;
    will-change: transform;
}



.company-content h3 {
    margin-bottom: 12px;
}

.company-content h2 {
    margin-bottom: 24px;
}

.company-content p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.6;
}


/* --- CONTADORES E PROVA SOCIAL --- */
/* --- CONTADORES E PROVA SOCIAL (DASHBOARD INTEGRADO) --- */
.stats-section {
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-premium {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-icon {
    font-size: 24px;
    color: var(--primary);
    background-color: rgba(255, 178, 0, 0.08);
    padding: 8px;
    border-radius: var(--round-sm);
    margin-bottom: 20px;
    display: inline-flex;
}

.stat-icon i {
    font-size: 24px;
}

.stat-number-wrapper {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.stat-plus {
    margin-left: 2px;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.clutch-card-premium {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(30, 14, 49, 0.6) 0%, rgba(82, 43, 109, 0.3) 100%);
    border-color: rgba(255, 178, 0, 0.25);
    box-shadow: 0 15px 35px rgba(255, 178, 0, 0.08);
}

.clutch-logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.clutch-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.clutch-verify-badge {
    background-color: rgba(57, 223, 125, 0.15);
    color: #3CDF7D;
    padding: 4px 8px;
    border-radius: var(--round-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.clutch-rating-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.clutch-rating-value .max-rating {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.7;
}

.clutch-stars {
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.clutch-reviews-count {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted-strong);
}


/* --- SEÃ‡ÃƒO BENEFÃCIOS (#why-use) --- */
.why-use-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
}

.why-use-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

.why-use-intro h3 {
    margin-bottom: 16px;
}

.why-use-intro h2 {
    margin-bottom: 24px;
}

.why-use-intro p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-use-character {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    display: block;
    border-radius: var(--round-lg);
    filter: drop-shadow(0 10px 30px rgba(152, 109, 214, 0.25));
}

.why-use-character video {
    display: block;
    width: 90%;
    margin: 0 auto;
}

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

.why-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card span.card-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    line-height: 1;
}

.why-card span.card-num.orange { color: var(--primary-active); }
.why-card span.card-num.blue { color: var(--accent-blue); }
.why-card span.card-num.yellow { color: var(--primary); }
.why-card span.card-num.green { color: var(--trading-up); }

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.why-card p {
    font-size: 1rem;
    color: var(--text-muted);
}


/* --- SEÃ‡ÃƒO SERVIÃ‡OS (#services) --- */
.services-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 48px 32px;
    text-align: center;
}

.service-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--round-md);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--white);
}


/* --- SEÃ‡ÃƒO ESTILOS DE ANIMAÃ‡ÃƒO --- */
.animation-styles-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
}

.styles-grid {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.style-card {
    background: rgba(15, 6, 27, 0.65); /* Fundo roxo escuro translÃºcido */
    backdrop-filter: blur(16px); /* Desfoque dos objetos atrÃ¡s */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil */
    border-radius: 28px; /* Cantos arredondados do card */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible; /* MantÃ©m visible para permitir que a metade do badge popular fique para fora */
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Destaque Card Popular */
.style-card.popular {
    border-color: rgba(0, 171, 228, 0.15);
}

.style-card:hover,
.style-card.popular:hover {
    transform: translateY(-8px);
    border-color: rgba(152, 109, 214, 0.45); /* Borda roxa idÃªntica Ã  seÃ§Ã£o de blog */
    background: rgba(43, 20, 69, 0.55); /* Fundo roxo translÃºcido similar ao blog */
    box-shadow: 0 20px 40px rgba(152, 109, 214, 0.15); /* Glow roxo idÃªntico ao blog */
}

.popular-badge {
    position: absolute;
    top: -18px; /* Metade para fora do card (badge maior) */
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 11px; /* Badge e texto maiores */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 32px; /* Aumentado conforme solicitado */
    border-radius: var(--round-full);
    box-shadow: 0 4px 12px rgba(255, 178, 0, 0.35);
    z-index: 10;
    white-space: nowrap;
    display: flex; /* Flexbox para alinhar texto perfeitamente */
    align-items: center;
    justify-content: center;
    line-height: 1; /* Garante que o texto fique centralizado verticalmente */
    text-align: center;
}

.style-img-wrapper {
    width: 100%;
    height: 250px; /* Aumentado para 250px conforme solicitado */
    border-top-left-radius: 28px; /* Arredonda cantos superiores da imagem jÃ¡ que o card Ã© overflow visible */
    border-top-right-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #986dd6 0%, #7a4fc9 100%); /* Base roxa em gradiente */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Mask ultra-suave finalizando exatamente em 100% para eliminar qualquer linha ou borda residual */
    -webkit-mask-image: linear-gradient(to bottom, #000000 0%, #000000 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, #000000 0%, #000000 30%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
}

.style-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay translÃºcido verde leve no topo, sem escurecer o fundo */
    background: linear-gradient(180deg, rgba(118, 192, 67, 0.1) 0%, rgba(118, 192, 67, 0) 100%);
    pointer-events: none;
    z-index: 3;
}

.style-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.style-card:hover .style-img-wrapper img {
    transform: scale(1.06); /* Zoom suave da imagem ao passar o mouse */
}

.style-info {
    padding: 0 24px 32px 24px; /* Zerado em cima (0) para colar na imagem; laterais e rodapÃ© mantidos para afastar o texto das bordas do card */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center; /* CentralizaÃ§Ã£o do texto do card conforme referÃªncia */
}

.style-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.style-info h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary); /* Laranja/dourado conforme CSS atual */
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.style-info p {
    font-size: 0.92rem;
    margin-bottom: 28px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

.style-action {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* BotÃµes do Action nos cards no formato de pÃ­lula centralizada da referÃªncia */
.style-action .btn-premium-solid,
.style-action .btn-premium-outline {
    width: auto;
    min-width: 160px;
    max-width: 180px;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px; /* PÃ­lula circular */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.style-action .btn-premium-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #ffffff;
}

.style-action .btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}


/* --- SEÃ‡ÃƒO INDÃšSTRIAS (#industries) --- */
.industries-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
    overflow: hidden; /* Prevents leaking outside the page wrapper */
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
}

.industries-info h3 {
    margin-bottom: 16px;
}

.industries-info h2 {
    margin-bottom: 24px;
}

.industries-info p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.industries-logos-grid {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 715px; /* Aumentado em mais 30% para acomodar logos maiores */
    padding: 10px 0;
    margin-top: 24px;
    /* Efeito de fade nas bordas para mesclar as logos */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.ind-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 20s linear infinite; /* Reutiliza o keyframe scrollMarquee */
}

.ind-marquee-track:hover {
    animation-play-state: paused;
}

.ind-logo-item {
    flex-shrink: 0;
    margin: 0 36px; /* EspaÃ§amento ajustado para logos maiores */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 186px; /* Aumentado em 30% (143 * 1.3) */
    height: 85px; /* Aumentado em 30% (65 * 1.3) */
}

.ind-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Logos todas brancas para combinar com o visual dark */
    opacity: 0.4;
    transition: opacity 0.3s;
}

.ind-logo-item:hover img {
    opacity: 0.95;
}

/* --- INDUSTRIES SHOWCASE (Tabbed UI) --- */
.industries-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

@media (min-width: 992px) {
    .industries-showcase {
        justify-self: end;
    }
}

/* Tabs */
.industries-tabs-viewport {
    overflow: hidden;
    width: 100%;
}

.industries-tabs-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: max-content;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-tab {
    background: transparent;
    border: none;
    padding: 8px 18px;
    position: relative;
    cursor: pointer;
    border-radius: var(--round-full);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    flex-shrink: 0;
    white-space: nowrap;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.industry-tab.fade-out {
    opacity: 0 !important;
    transform: scale(0.95);
}

.industry-tab.fade-in {
    opacity: 0 !important;
    transform: scale(0.95);
}

.tab-text {
    color: #B39DDB; /* Soft lavender */
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.5s ease;
    z-index: 2;
}

.industry-tab:hover .tab-text {
    color: #E6E6FA; /* Lighter on hover */
}

.industry-tab.active .tab-text {
    color: #ffffff;
}

/* SVG Stroke / Progress Timer */
.tab-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tab-progress rect {
    fill: none;
    stroke: #B39DDB; /* Matches inactive text color */
    stroke-width: 1.5px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-tab.active .tab-progress rect {
    opacity: 1;
    animation: drawStroke 5s linear forwards;
}

@keyframes drawStroke {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

/* Showcase Card */
.showcase-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--round-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(152, 109, 214, 0.25);
}

@media (max-width: 768px) {
    .showcase-card {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .showcase-card {
        aspect-ratio: 1 / 1;
    }
}

/* Background Images */
.showcase-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--canvas-section-dark);
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 5s ease-out;
    transform: scale(1.05); /* Slight zoom out effect as it fades in */
}

.bg-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Liquid Glass Overlay on the left side */
.showcase-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    z-index: 3;
    background: linear-gradient(to right, rgba(20, 5, 30, 0.95) 0%, rgba(20, 5, 30, 0.6) 50%, rgba(20, 5, 30, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 60%, transparent 100%);
}

@media (max-width: 768px) {
    .showcase-card-glass {
        width: 100%;
        background: linear-gradient(to right, rgba(20, 5, 30, 0.95) 0%, rgba(20, 5, 30, 0.85) 70%, rgba(20, 5, 30, 0) 100%);
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Content Container */
.showcase-card-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    padding: 40px;
}

.showcase-content-pane {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-40%); /* Start slightly higher for slide down effect */
    max-width: 40%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-content-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .showcase-content-pane {
        max-width: 80%;
        left: 30px;
    }
}

.showcase-content-pane h4 {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 1200px) {
    .showcase-content-pane h4 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .showcase-content-pane h4 { font-size: 1.35rem; }
}

.showcase-content-pane p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .showcase-content-pane p { font-size: 0.95rem; margin-bottom: 24px; }
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 600;
    transition: gap 0.3s;
}

.showcase-link:hover {
    gap: 12px;
    color: var(--primary-active);
}


/* --- NOVA SEÃ‡ÃƒO PROCESSO CRIATIVO (MODERNA E VISUALMENTE APELATIVA) --- */
.process-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
}

.process-grid-modern {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-card-modern {
    padding: 40px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: floatAnimation 8s ease-in-out infinite alternate;
}

/* VariaÃ§Ã£o de atraso nas animaÃ§Ãµes dos cards */
.process-grid-modern .process-card-modern:nth-child(1) { animation-delay: 0s; }
.process-grid-modern .process-card-modern:nth-child(2) { animation-delay: -1.5s; }
.process-grid-modern .process-card-modern:nth-child(3) { animation-delay: -3.0s; }
.process-grid-modern .process-card-modern:nth-child(4) { animation-delay: -4.5s; }
.process-grid-modern .process-card-modern:nth-child(5) { animation-delay: -6.0s; }

/* Linha sutil conectora de fundo */
.process-grid-modern::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent-blue), var(--trading-up), var(--primary));
    opacity: 0.15;
    z-index: -1; /* Posicionado atrÃ¡s dos cartÃµes para evitar que sobreponha o conteÃºdo nas animaÃ§Ãµes de reveal */
}

/* Indicador NumÃ©rico Grande e Transparente no Fundo */
.step-bg-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 10px;
    right: 15px;
    user-select: none;
    transition: var(--transition-smooth);
}

/* Customiza o hover dos cards premium especificamente na seÃ§Ã£o do processo criativo com bordas e sombras roxas */
.process-card-modern.premium-card:hover {
    border-color: rgba(152, 109, 214, 0.55);
    background: rgba(43, 20, 69, 0.55);
    box-shadow: 0 20px 40px rgba(152, 109, 214, 0.2);
}

.process-card-modern:hover .step-bg-number {
    color: rgba(152, 109, 214, 0.15);
    transform: scale(1.1);
}

/* Ãcones de Processo Personalizados */
.process-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--round-md);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-card-modern:hover .process-icon-wrapper {
    transform: rotate(5deg) scale(1.08);
}

.process-card-modern h4 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-card-modern p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- SEÃ‡ÃƒO POR QUE NÃ“S? (#why-us) --- */
.why-us-section {
    color: var(--white);
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 64px;
}

.why-us-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1035/969;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px var(--purple-glow));
}

.why-us-illustration-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    will-change: transform;
}

/* Ordem de z-index: 5 (fundo), 2, 1, 3, 4 (frente de todas) */
.house-img-5 {
    z-index: 1;
    animation: floatHouse45 8.5s ease-in-out infinite;
}

.house-img-2 {
    z-index: 2;
    animation: floatHouse2 7.5s ease-in-out infinite;
}

.house-img-1 {
    z-index: 3;
    animation: floatHouse1 6s ease-in-out infinite;
}

.house-img-3 {
    z-index: 4;
    animation: floatHouse3 7s ease-in-out infinite;
}

.house-img-4 {
    z-index: 5;
    animation: floatHouse45 8.5s ease-in-out infinite; /* Mesma animaÃ§Ã£o de 5 para mover em bloco */
}

/* AnimaÃ§Ãµes individuais para efeito wiggle descompassado */
@keyframes floatHouse1 {
    0% { transform: translateY(0) rotate(0deg) translateX(0); }
    50% { transform: translateY(-10px) rotate(0.4deg) translateX(-1px); }
    100% { transform: translateY(0) rotate(0deg) translateX(0); }
}

@keyframes floatHouse2 {
    0% { transform: translateY(0) rotate(0deg) translateX(0); }
    50% { transform: translateY(8px) rotate(-0.5deg) translateX(2px); }
    100% { transform: translateY(0) rotate(0deg) translateX(0); }
}

@keyframes floatHouse3 {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-7px) translateX(3px) rotate(0.3deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

@keyframes floatHouse45 {
    0% { transform: translateY(0) rotate(0deg) translateX(0); }
    50% { transform: translateY(12px) rotate(0.2deg) translateX(-2px); }
    100% { transform: translateY(0) rotate(0deg) translateX(0); }
}



.why-us-data h2 {
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-us-item {
    display: flex;
    gap: 16px;
}

.why-us-item i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.why-us-item h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

/* --- REFACTORED BLOG CARDS (Compact Hover Expand) --- */
.blog-card-wrapper {
    position: relative;
    width: 100%;
    height: 420px; /* Altura mÃ¡xima da animaÃ§Ã£o para manter estabilidade */
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    position: relative;
    width: 100%;
    height: 250px; /* Altura compacta */
    border-radius: 20px;
    border: 1px solid rgba(152, 109, 214, 0.4); /* Borda roxa clara */
    background: transparent;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 2;
}

.blog-card:hover {
    height: 400px; /* Altura expandida no hover */
    border-color: rgba(152, 109, 214, 0.8);
    box-shadow: 0 20px 40px rgba(152, 109, 214, 0.15);
}

.blog-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.08); /* Zoom sutil na imagem */
}

/* Efeito Liquid Glass no topo */
.glass-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px; /* Mais alto para um fade mais longo */
    background: linear-gradient(to bottom, rgba(20, 5, 30, 0.8) 0%, rgba(20, 5, 30, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Gradiente fade para o desfoque, saindo do blur para foco total na imagem (corte suave) */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.blog-card:hover .glass-top {
    opacity: 1;
}

/* Gradiente roxo fechado na parte inferior */
.gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(30, 10, 45, 0.95) 0%, rgba(30, 10, 45, 0) 100%);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s;
    z-index: 2;
}

.blog-card:hover .gradient-bottom {
    height: 220px; /* Gradiente sobe para acomodar mais texto */
    background: linear-gradient(to top, rgba(30, 10, 45, 1) 0%, rgba(30, 10, 45, 0.8) 40%, rgba(30, 10, 45, 0) 100%);
}

.blog-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

/* Header (Data) */
.blog-header {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-header {
    opacity: 1;
    transform: translateY(0);
}

.blog-header i {
    position: relative;
    top: 3px;
}

.blog-header time {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 2px 15px 0 10px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Body (Categoria, TÃ­tulo, Read More) */
.blog-body {
    position: relative;
    margin-top: auto; /* Empurra o bloco de texto para o rodapÃ© */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Translate down by the height of read-more (20px) + margin (12px) = 32px */
    transform: translateY(32px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-body {
    transform: translateY(0);
}

.blog-body .category {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    color: var(--primary); /* Laranja/Amarelo do design system */
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.blog-card:hover .blog-body .category {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.blog-body .blog-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.blog-body .read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 12px;
    height: 20px; /* Fixa altura para manter a estabilidade do translate */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-body .read-more {
    opacity: 1;
}

.blog-body .read-more:hover {
    color: var(--white);
}

.blog-body .read-more i {
    transition: transform 0.3s;
}

.blog-body .read-more:hover i {
    transform: translateX(4px);
}

.why-us-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* --- SEÃ‡ÃƒO BLOG (#blog) --- */
.blog-section {
    padding: 50px 24px 80px;
    position: relative;
    z-index: 2;
    /* Gradient que dissolve a section no fundo #0e0414 para mesclar com a imagem do planeta */
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(14, 4, 20, 0.35) 50%,
        #0e0414 100%
    );
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}




/* --- SEÃ‡ÃƒO CTA SECUNDÃRIO (#lets-work) --- */
/* Narrativa: o cliente chegou ao planeta destino. Sem planetas flutuantes aqui. */
#lets-work {
    background-color: #0e0414;
    position: relative;
    z-index: 5;
    /* Padding superior para o conteÃºdo, zero inferior pois a imagem encosta embaixo */
    padding: 100px 0 0 0;
    text-align: center;
}

/* Esconde planetas globais no terÃ§o final da pÃ¡gina â€” o usuÃ¡rio "chegou" */
.gp-10,
.gp-11,
.gp-12 {
    display: none;
}

.cta-planet-img {
    display: block;
    width: 100%;
    height: auto;
    /* Sobe 180px acima do limite natural, avanÃ§ando sobre a seÃ§Ã£o anterior */
    margin-top: -180px;
    position: relative;
    z-index: 1;
    line-height: 0;
}

.cta-section {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cta-container h3 {
    margin-bottom: 16px;
}

.cta-container h2 {
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}


/* --- SEÃ‡ÃƒO CONTATO & CALENDLY (#get-quote) --- */
/* ContÃ©m todo o conteÃºdo "na superfÃ­cie" do planeta. Fundo sÃ³lido #0e0414. */
.contact-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
    background-color: #0e0414;
}

.contact-layout {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.calendly-mock-card {
    background-color: var(--surface-card-dark);
    border: 1px solid transparent; /* Sem borda no estado normal */
    border-radius: var(--round-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
    min-height: 580px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.calendly-mock-card:hover {
    border-color: rgba(152, 109, 214, 0.45);
    box-shadow: 0 20px 45px rgba(152, 109, 214, 0.15);
    background-color: rgba(43, 20, 69, 0.25);
}

/* Efeito de inversÃ£o de cores inteligente (CSS Filter Hack) para forÃ§ar o Calendly a renderizar no Tema Escuro da Grow Website */
.calendly-inline-widget,
.calendly-inline-widget iframe {
    filter: invert(0.92) hue-rotate(15deg) contrast(1.05) brightness(0.95);
    background: transparent !important;
    border-radius: var(--round-lg);
}

.calendly-header {
    background-color: rgba(14, 4, 20, 0.4);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.calendly-header h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.calendly-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.calendly-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.calendly-calendar-mock {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 24px;
}

.calendar-month {
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
}

.calendar-days-mock {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-days-mock span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
}

.calendar-day-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition-smooth);
}

.calendar-day-btn.available {
    background-color: rgba(0, 171, 228, 0.12);
    color: var(--accent-blue);
    font-weight: 700;
}

.calendar-day-btn.available:hover, .calendar-day-btn.selected {
    background-color: var(--accent-blue);
    color: var(--white);
}

.calendly-slots-mock {
    padding-left: 12px;
}

.slots-title {
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slot-btn {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    background-color: transparent;
    padding: 12px;
    border-radius: var(--round-sm);
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slot-btn:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

/* Card Contato Pessoal Dark - Reorganizado para 700px de altura no desktop */
.contact-info-card {
    background-color: var(--surface-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda sutil */
    border-radius: var(--round-lg);
    padding: 44px 40px; /* Padding equilibrado e elegante */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Auto por padrÃ£o no mobile */
    gap: 28px; /* EspaÃ§o entre elementos no mobile */
}

@media (min-width: 992px) {
    .contact-info-card {
        height: 830px; /* Altura exata de 700px para alinhar com o Calendly widget */
        gap: 0; /* EspaÃ§amento distribuÃ­do por justify-content no desktop */
    }
}

.contact-info-card:hover {
    border-color: rgba(152, 109, 214, 0.45);
    box-shadow: 0 20px 45px rgba(152, 109, 214, 0.15);
    background-color: rgba(43, 20, 69, 0.25);
}

.contact-info-card h4 {
    font-size: 1.85rem; /* TÃ­tulo elegante e imponente */
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-align: center;
}

.contact-info-card p.contact-desc {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 25px 0;
    background-color:  rgba(255, 255, 255, 0.05); /* Divisor superior sutil */
    border-radius: 20px;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100px; /* Aumentado para 100px */
    height: 100px; /* Aumentado para 100px */
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    box-shadow: 0 4px 12px rgba(152, 109, 214, 0.2);
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #110722; /* Separa a imagem do aro gradiente */
    display: block;
}

.avatar-wrapper span.status-indicator {
    position: absolute;
    bottom: 3px; /* Ajustado conforme solicitado */
    right: 3px; /* Ajustado conforme solicitado */
    width: 20px; /* Ajustado para 20px */
    height: 20px; /* Ajustado para 20px */
    background-color: #3CDF7D;
    border: 3px solid #110722; /* Borda mais grossa para acompanhar o tamanho */
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(60, 223, 125, 0.6);
}

.profile-details h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.profile-details span.role {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.profile-details p {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.profile-details span.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3CDF7D;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-details span.status-text::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3CDF7D;
    box-shadow: 0 0 6px rgba(60, 223, 125, 0.8);
}

/* Contact Button Wrapper */
.contact-btn-wrapper {
    margin: 30px 0;
    text-align: center;
}

/* Email Box Wrapper - Ajustado para ser uma nota centralizada */
.email-box-wrapper {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.email-box-wrapper p {
    margin: 0;
}

.email-box-wrapper a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.email-box-wrapper a:hover {
    text-decoration: underline;
}

/* Features List - Mais compacta e com espaÃ§amentos harmonizados */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
    background-color: rgba(255, 178, 0, 0.06);
    padding: 6px;
    border-radius: var(--round-full);
}

.feature-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}



/* --- RODAPÃ‰ (#footer) --- */
footer.site-footer {
    background-color: #0e0414;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 0 30px 0;
    position: relative;
    z-index: 2;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 2fr 3fr;
    gap: 48px;
    margin-bottom: 60px;
}

/* Permite que as colunas encolham abaixo do min-content (evita overflow horizontal em mobile) */
.footer-grid > * {
    min-width: 0;
}

.header-logo {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Logo no footer */
.footer-logo {
    height: 55px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text-muted);
}

ul.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin-top: 20px;
}

ul.social-links li a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
    /* Torna SVGs brancos via filter */
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

ul.social-links li a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

ul.social-links li a:hover .social-icon {
    filter: brightness(0) invert(0);
    opacity: 1;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
    opacity: 1;
}

/* Base do rodapÃ© */
.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-base a.sitemap {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-base a.brlab .brlab-icon {
    height: 28px;
    width: auto;
    display: block;
    opacity: 0.45;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.footer-base a.brlab:hover .brlab-icon {
    opacity: 1;
}

.scroll-top-btn {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    background-color: var(--primary);
    color: var(--ink);
    box-shadow: 0 8px 25px var(--gold-glow);
}


/* --- YOUTUBE EMBED MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(14, 4, 20, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #000;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: var(--round-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal-btn {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}


/* --- ANIMAÃ‡Ã•ES --- */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 178, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .company-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .why-use-container {
        grid-template-columns: 1fr;
    }
    
    .why-use-intro {
        text-align: center;
    }
    
    .services-grid, .styles-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .industries-info {
        text-align: center;
    }
    
    .process-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid-modern::before {
        display: none; /* remove linha conectora em resoluÃ§Ãµes menores */
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav.main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2,
    .company-content h2,
    .why-use-intro h2,
    .industries-info h2,
    .why-us-data h2,
    .cta-container h2 {
        font-size: 2.1rem;
    }

    .services-grid, .styles-grid, .blog-grid, .industries-carousel-mock, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .clutch-widget-mock {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .clutch-right {
        text-align: center;
    }
    
    .calendly-grid {
        grid-template-columns: 1fr;
    }
    
    .calendly-calendar-mock {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 24px;
        padding-right: 0;
    }
    
    .calendly-slots-mock {
        padding-left: 0;
        padding-top: 12px;
    }
}


/* --- GET QUOTE FORM MODAL SPECIFICS --- */
.quote-modal-content {
    background: rgba(20, 10, 35, 0.95); /* Tom roxo/escuro profundo mais opaco para legibilidade */
    border: 1px solid rgba(152, 109, 214, 0.25);
    border-radius: var(--round-lg);
    padding: 44px 36px;
    max-width: 500px;
    width: 90%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(152, 109, 214, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar para o modal */
.quote-modal-content::-webkit-scrollbar {
    width: 6px;
}
.quote-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--round-sm);
}
.quote-modal-content::-webkit-scrollbar-thumb {
    background: rgba(152, 109, 214, 0.3);
    border-radius: var(--round-sm);
}
.quote-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(152, 109, 214, 0.5);
}

/* Responsividade de padding para telas de celulares pequenos */
@media (max-width: 480px) {
    .quote-modal-content {
        padding: 32px 20px;
    }
}

/* Custom Close Button for Quote Modal (inside the card to prevent overflow clipping) */
#close-quote-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

#close-quote-modal:hover {
    color: var(--white);
    transform: scale(1.1);
}
#close-quote-modal i {
    font-size: 28px;
}

.modal-overlay.active .quote-modal-content {
    transform: translateY(0) scale(1);
}

.quote-modal-body h3 {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.quote-modal-body h2 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.quote-modal-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Form Styles */
#quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

#quote-form label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

#quote-form input,
#quote-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--round-md);
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

#quote-form input:focus,
#quote-form textarea:focus {
    outline: none;
    border-color: rgba(152, 109, 214, 0.55);
    background: rgba(152, 109, 214, 0.05);
    box-shadow: 0 0 15px rgba(152, 109, 214, 0.15);
}

#quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- ESTADOS DE ERRO DO FORMULÁRIO GET QUOTE --- */
#quote-form .field-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    min-height: 0;
    line-height: 1.4;
}

#quote-form .field-error:empty {
    display: none;
}

#quote-form .input-invalid {
    border-color: rgba(255, 107, 107, 0.6) !important;
    background: rgba(255, 107, 107, 0.05) !important;
}

#quote-form .form-error {
    display: none;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.35);
    border-radius: var(--round-md);
    color: #ff9c9c;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 12px 16px;
    margin-bottom: 4px;
    text-align: left;
}

#quote-form .form-error.visible {
    display: block;
}

/* Honeypot: fora da tela para humanos, presente no DOM para bots */
#quote-form .hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}


/* --- FALLBACK PARA MATERIAL ICONS (Font load failure prevention) --- */
.material-icons {
    display: inline-block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
}


/* --- SUPORTE A PREFERS-REDUCED-MOTION (Acessibilidade e a11y) --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    .gp img,
    .star-shooting,
    .hero-astronaut,
    .rocket-solo-img,
    .rocket-cloud-img,
    .why-use-character img,
    .cta-planet-img img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .industry-card-mock:hover,
    .premium-card:hover,
    .btn-premium-solid:hover,
    .btn-premium-outline:hover,
    .service-card:hover,
    .style-card:hover {
        transform: none !important;
    }
}




/* ===================================================================
   PÁGINAS INTERNAS DE ANIMATION STYLES (/2d-standard-explainer-video/ etc.)
   =================================================================== */

/* --- Hero da página de estilo --- */
.style-hero-section {
    padding: 150px 5% 70px;
    position: relative;
}

.style-hero-container {
    max-width: 1240px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    color: var(--text-muted);
}

.breadcrumbs li + li::before {
    content: "›";
    margin-right: 8px;
    color: var(--text-muted);
}

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

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs li[aria-current] {
    color: var(--white);
    font-weight: 600;
}

.style-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 60px;
    align-items: center;
}

.style-hero-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.style-hero-content h1 {
    font-size: 2.9rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-blue, #00ABE4);
    margin-bottom: 18px;
}

.style-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.style-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.style-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.5;
}

.style-bullets .material-icons {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* Thumbnail do reel com botão de play */
.reel-thumb {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--round-lg);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.reel-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reel-thumb:hover img {
    transform: scale(1.03);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 178, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(255, 178, 0, 0.18), 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.reel-play-btn .material-icons {
    font-size: 44px;
    color: #1a0b26;
}

.reel-thumb:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}

/* --- Grid de cases --- */
.cases-section {
    padding: 70px 5% 40px;
    position: relative;
}

.cases-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.case-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    color: inherit;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 178, 0, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.case-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.case-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.case-card:hover .case-thumb img {
    transform: scale(1.05);
}

.case-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(14, 4, 20, 0.75);
    border: 1px solid rgba(255, 178, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.case-play .material-icons {
    font-size: 30px;
    color: var(--primary);
}

.case-card:hover .case-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.case-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
}

.case-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

.case-style-tag {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(255, 178, 0, 0.1);
    border: 1px solid rgba(255, 178, 0, 0.25);
    border-radius: 100px;
    padding: 5px 12px;
}

/* --- CTA do canal do YouTube --- */
.yt-channel-cta {
    max-width: 1240px;
    margin: 56px auto 0;
    text-align: center;
}

.yt-channel-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.yt-channel-cta .btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.yt-btn-icon {
    width: 24px;
    height: 22px;
}

/* --- Responsivo --- */
@media (max-width: 992px) {
    .style-hero-section {
        padding-top: 130px;
    }

    .style-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .style-hero-content h1 {
        font-size: 2.3rem;
    }

    .cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .style-hero-content h1 {
        font-size: 2rem;
    }
}


/* ===================================================================
   MOBILE UX & CONVERSÃO — auditoria de responsividade 2026-07
   Prioridades: conteúdo primeiro, conversão de leads, menos scroll.
   =================================================================== */

/* --- Barra de conversão fixa (mobile/tablet) --- */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(14, 4, 20, 0.88);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(255, 178, 0, 0.25);
        transform: translateY(110%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-cta-bar.visible {
        transform: translateY(0);
    }

    .mobile-cta-bar .btn-premium-solid {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* --- Tablet e celular (≤768px) --- */
@media (max-width: 768px) {
    /* Personagem decorativo do why-use: só ocupa espaço no fluxo mobile */
    .why-use-character {
        display: none;
    }

    /* Blog: carrossel horizontal com snap (4 cards empilhados custavam ~2100px de scroll) */
    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card-wrapper {
        flex: 0 0 82%;
        max-width: 340px;
        scroll-snap-align: center;
    }

    /* Alvos de toque ≥44px (links do rodapé e ícones sociais) */
    .footer-col ul li a {
        display: inline-block;
        padding: 7px 0;
    }

    ul.social-links li a {
        width: 44px;
        height: 44px;
    }

    /* Compactação de seções longas */
    .process-card-modern {
        padding: 24px 22px;
    }

    .why-card {
        padding: 26px 22px;
    }
}

/* --- Celulares (≤576px) --- */
@media (max-width: 576px) {
    /* Hero: garantir H1 + parágrafo + CTAs acima da dobra (iPhone SE 667px) */
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .hero-buttons {
        gap: 12px;
    }

    /* Astronauta sobreposto ao player: decorativo, cobre conteúdo em telas estreitas */
    .hero-astronaut {
        display: none;
    }

    /* Visuais decorativos que só empurram o conteúdo para baixo em telas pequenas */
    .company-visual {
        display: none;
    }

    .why-us-visual {
        display: none;
    }

    /* Metade dos glows (blur de 150px é caro em GPU de celular) */
    .glow-2,
    .glow-4,
    .glow-6 {
        display: none;
    }

    /* Cards de estilo: imagem mais baixa, conteúdo mais cedo */
    .style-img-wrapper {
        height: 200px;
    }

    /* Número de fundo dos passos do processo: menor, menos dominante */
    .step-bg-number {
        font-size: 3.2rem;
    }

    /* Última seção antes do rodapé precisa respirar acima da barra fixa */
    .site-footer {
        padding-bottom: 90px;
    }
}


/* ===================================================================
   AJUSTES DO RELATÓRIO MOBILE 2026-07-06 (9 observações em dispositivo real)
   =================================================================== */

@media (max-width: 768px) {

    /* [.20] STATS: grid quebrado (4 colunas espremidas) -> 2x2 compacto */
    .stats-grid-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .stat-card-premium {
        padding: 20px 16px;
        align-items: center;
        text-align: center;
    }

    .stat-number-wrapper {
        font-size: 2.1rem;
    }

    .stat-label {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .clutch-card-premium {
        padding: 20px 16px;
        text-align: center;
    }

    .clutch-rating-value {
        font-size: 1.9rem;
    }

    /* [.21] WHY-USE (01-04): slider horizontal com snap, como o blog */
    .why-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .why-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .why-card {
        flex: 0 0 78%;
        max-width: 330px;
        scroll-snap-align: center;
    }

    /* [.22] SERVICES: card mega-compacto | ícone | título | inline */
    .services-grid {
        gap: 12px;
    }

    .service-card {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 16px 20px;
        text-align: left;
    }

    .service-icon-box {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon-box svg {
        width: 28px;
        height: 28px;
    }

    .service-card h4 {
        margin: 0;
        font-size: 1.05rem;
    }

    /* [.23] PROCESS: | ícone | título | inline, texto abaixo em toda a largura */
    .process-card-modern {
        display: grid;
        grid-template-columns: 56px 1fr;
        column-gap: 16px;
        align-items: center;
        padding: 20px;
    }

    .process-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .process-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }

    .process-card-modern h4 {
        margin: 0;
    }

    .process-card-modern p {
        grid-column: 1 / -1;
        margin: 12px 0 0;
    }

    .step-bg-number {
        font-size: 2.4rem;
        top: 10px;
        right: 14px;
    }

    /* [.24] WHY-US: só títulos em lista, 1 por linha (texto continua no desktop) */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .why-us-item {
        align-items: center;
        padding: 9px 0;
    }

    .why-us-item p {
        display: none;
    }

    .why-us-item h4 {
        margin: 0;
    }

    /* [.25] CTA: planeta no dobro da largura com crop lateral, sem texto por cima */
    .cta-section {
        overflow: hidden;
        padding-top: 40px;
    }

    .cta-container {
        padding-bottom: 44px; /* respiro entre o botão e o planeta */
    }

    .cta-planet-img {
        margin-top: 0;      /* remove a sobreposição com o conteúdo */
        width: 200%;
        max-width: none;
        margin-left: -50%;  /* centraliza; excedente cortado pelo overflow */
    }
}

@media (max-width: 576px) {

    /* [.19] HERO: botões empilhados, largura total, sem quebra de linha */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn-premium-solid,
    .hero-buttons .btn-premium-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        padding: 15px 20px;
    }

    /* [.26] CARD DO CLAUDIO: foto em linha própria, conteúdo abaixo em toda a largura */
    .profile-box {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    .profile-details {
        width: 100%;
    }

    /* [.27] FOOTER: cada coluna em toda a largura */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-brand {
        margin-bottom: 14px;
    }

    .footer-col h3 {
        margin-top: 20px;
    }
}
