@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);
}

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);
}

/* --- 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;
}

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

.section-header h2 {
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.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: 8px 20px;
    font-size: 13px;
}

/* --- 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: 32px;
    list-style: none;
}

nav.main-nav ul li a.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    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: 32px;
    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-top: 160px;
    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;
}

/* 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;
}

.rocket-illustration {
    /* Ocupa toda a coluna visual para ficar na mesma altura do conteúdo */
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px var(--purple-glow));
}



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

.company-content h2 {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.15;
    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 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-use-intro h2 {
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.2;
    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;
    height: auto;
    display: block;
    border-radius: var(--round-lg);
    filter: drop-shadow(0 10px 30px rgba(152, 109, 214, 0.25));
}

.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: 32px;
}

.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: 32px;
}

.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, #76c043 0%, #5bb929 100%); /* Base verde vibrante 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;
}

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

.industries-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 64px;
    align-items: center;
}

.industries-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.industries-info h2 {
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

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

.industries-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.industry-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    background: none;
    border: none;
    padding: 0;
}

.industry-logo-item svg {
    color: var(--white);
    opacity: 0.35;
    width: 70px;
    height: auto;
    max-height: 28px;
    transition: var(--transition-smooth);
}

.industry-logo-item:hover svg {
    opacity: 0.95;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* Slider de Indústrias */
.industries-slider-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.industries-slider-viewport {
    overflow: hidden;
    width: 648px;
    max-width: 100%;
    border-radius: var(--round-lg);
}

@media (max-width: 1200px) {
    .industries-slider-viewport {
        width: 424px; /* Displays 2 cards */
    }
}

@media (max-width: 480px) {
    .industries-slider-viewport {
        width: 200px; /* Displays 1 card */
    }
}

.industries-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: max-content;
    padding: 10px 0;
}

.industries-slider-track .industry-card-mock {
    width: 200px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    overflow: visible; /* Permite vazamento de sombras de forma limpa */
    aspect-ratio: 3/4;
    background: var(--surface-card-dark);
    border: 1px solid transparent; /* Sem borda no estado normal */
    border-radius: var(--round-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    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);
}

.industries-slider-track .industry-card-mock:hover {
    transform: translateY(-8px);
    border-color: rgba(152, 109, 214, 0.45);
    background: rgba(43, 20, 69, 0.4);
    box-shadow: 0 15px 30px rgba(152, 109, 214, 0.15);
}

.industries-slider-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--ink);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.play-badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 40px;
    height: 40px;
    border-radius: var(--round-full);
    background-color: var(--primary);
    color: var(--ink);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px var(--gold-glow);
    z-index: 3;
}

.play-badge-icon i {
    font-size: 20px;
    margin-left: 2px;
}

.industry-card-mock:hover .play-badge-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.industry-card-mock:hover .industry-visual-svg svg {
    filter: brightness(0.4);
    transform: scale(1.1);
}

.industry-visual-svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(28, 15, 48, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 3px solid transparent; /* Sem borda no estado normal */
    position: relative;
    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);
}

.industry-card-mock:hover .industry-visual-svg {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(152, 109, 214, 0.4);
}

.industry-visual-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.industry-card-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
    transition: color 0.4s;
}

.industry-card-content i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: color 0.4s;
}


/* --- 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;
}

/* 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);
}

.process-card-modern:hover .step-bg-number {
    color: rgba(255, 178, 0, 0.08);
    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 {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px var(--purple-glow));
    animation: floatAnimation 8s ease-in-out infinite alternate;
    z-index: 2;
}



.why-us-data h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 40px;
}

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

.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;
}

.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;
}

.blog-card {
    background: var(--surface-card-dark);
    border: 1px solid transparent; /* Sem borda no estado normal */
    border-radius: var(--round-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible; /* Permite vazamento de sombras de forma limpa */
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    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);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(152, 109, 214, 0.45); /* Borda aparece no hover */
    background: rgba(43, 20, 69, 0.4);
    box-shadow: 0 20px 40px rgba(152, 109, 214, 0.15);
}

.blog-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 32px auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 15, 48, 0.8);
    border: 3px solid transparent; /* Sem borda no estado normal */
    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);
}

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

.blog-card:hover .blog-img-wrapper {
    border-color: var(--primary); /* Moldura circular acende no hover */
    box-shadow: 0 0 15px rgba(152, 109, 214, 0.4);
}

.blog-card:hover .blog-img-wrapper svg,
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-info span.category {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary); /* Corrigido de azul para laranja padrão */
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-info h4 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 16px;
    min-height: 52px;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--white);
    transition: color 0.3s;
}

.blog-card:hover .blog-info h4 a {
    color: var(--primary);
}

.blog-info h4 a {
    color: inherit;
    text-decoration: none;
}

.blog-info time {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.65;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Mantém a data alinhada na base do card */
}


/* --- 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 {
    color: var(--primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-container h2 {
    font-size: 3rem;
    color: var(--white);
    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);
}

.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 */
.contact-info-card {
    background-color: var(--surface-card-dark);
    border: 1px solid transparent; /* Sem borda no estado normal */
    border-radius: var(--round-lg);
    padding: 48px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: visible;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.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.75rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info-card p.contact-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    margin-bottom: 32px;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: var(--round-full);
    object-fit: cover;
}

.avatar-wrapper span.status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background-color: #3CDF7D;
    border: 2px solid var(--canvas-dark);
    border-radius: var(--round-full);
}

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

.profile-details span.role {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 6px;
}

.profile-details p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.profile-details span.reply-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.6;
    display: block;
    margin-top: 6px;
}

/* Features Lista */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

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

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

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

.email-box-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(14, 4, 20, 0.3);
    border-radius: var(--round-md);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.email-box-wrapper i {
    font-size: 28px;
    color: var(--accent-blue);
}

.email-content-box h5 {
    font-size: 1rem;
    color: var(--white);
}

.email-content-box a {
    color: var(--accent-blue);
    font-weight: 700;
}


/* --- 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;
}

/* Logo no header */
.header-logo {
    height: 48px;
    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;
    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: 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: 32px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav.main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .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;
    }
}
