/* ===================================
   ✅ 0. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   =================================== */
:root {
    --color-bg: #050505;
    --color-text: #E6E7E8;
    --grad-start: #0A2F62;
    --grad-mid: #eec34c;
    --grad-cinza: #d3d3d3;
    --grad-end: #0477E3;
    
    /* --main-gradient: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end)); */
     --main-gradient: linear-gradient(90deg, var(--grad-mid));
    --font-main: 'Garet', 'Gotham Light', sans-serif;
}

/* Importação das Fontes Locais */
@font-face { font-family: 'Garet'; src: url('./fonts/Garet-Book.otf') format('opentype'); font-weight: normal; }
@font-face { font-family: 'Garet'; src: url('./fonts/Garet-Heavy.otf') format('opentype'); font-weight: bold; }

/* Família Gotham */
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-Book.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-BookItalic.otf') format('opentype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-MediumItalic.otf') format('opentype'); font-weight: 500; font-style: italic; }
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-Light.otf') format('opentype'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Gotham'; src: url('./fonts/Gotham-LightItalic.otf') format('opentype'); font-weight: 300; font-style: italic; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
}

/* #0A2F62 Azul forte - #429ADC Azul fraco - #E8BC43 Dourado Claro - #CC9A2F Dourado Escuro - #6F747B Cinza Escuro - #9F9F9F Cinza Medio - #E6E7E8 Cinza Claro */

/* ===================================
   ✅ 1. BACKGROUND ANIMADO "CYBER"
   =================================== */
.animated-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -2;
    /* Linhas mais sutis e elegantes */
    background-image: 
        linear-gradient(rgba(192, 148, 4, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 234, 175, 0.5) 1px, transparent 1px);
    background-size: 100px 100px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 5s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    /* Vinheta radial para focar no centro e esconder as bordas do grid */
    background: radial-gradient(circle, transparent 10%, #050505 80%);
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px); }
}

/* ===================================
   ✅ 2. CABEÇALHO (HEADER)
   =================================== */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* LOGO MOBILE (Imagem) - Padrão: Escondida no Desktop */
.header-logo-mobile {
    /* display: none; */
    text-decoration: none;
    display: block;
}

.header-logo-mobile img {
    height: 35px; /* Define um tamanho fixo para a logo no PC */
    width: auto;
    display: block;
}

/* Navigation - Centralizada no Desktop */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-family: 'Garet Book', sans-serif; /* Usando Garet como base */
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: normal;
}

/* HOVER COM DEGRADÊ NO TEXTO */
.nav-links li a:hover {
    font-family: 'Garet Book', sans-serif;
    font-weight: bold; /* Garet Heavy */
    background-image: var(--main-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 15px rgba(238, 195, 76, 0.3);
}

/* Botão Neon */
.neon-button {
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--main-gradient);
    z-index: -1;
    border-radius: 50px;
}

.neon-button:hover {
    box-shadow: 0 0 20px rgba(238, 195, 76, 0.4), 0 0 40px rgba(238, 195, 76, 0.2);
    transform: scale(1.05);
}

/* ===================================
   ✅ 3. MENU HAMBURGUER & MOBILE
   =================================== */
.mobile-menu-icon {
    display: none; /* Escondido no Desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}

/* Estado Aberto do Ícone (X) */
.mobile-menu-icon.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.mobile-menu-icon.open .bar:nth-child(2) { opacity: 0; }
.mobile-menu-icon.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* MEDIA QUERIES (Tablets e Celulares até 900px) */
@media (max-width: 900px) {
    
    /* 1. Exibir Logo Imagem no canto esquerdo */
    .header-logo-mobile { 
        display: block; 
    }
    .header-logo-mobile img {
        height: 30px; /* Ajuste o tamanho da logo aqui */
        width: auto;
        display: block;
    }
    
    /* 2. Mostrar ícone menu */
    .mobile-menu-icon { display: flex; }

    /* 3. Esconder botão CTA no topo (opcional, para limpar visual) */
    /* .neon-button { display: none; } */

    /* 4. Menu Lateral Deslizante */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Começa escondido à direita */
        width: 75%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        border-left: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0; /* Desliza para dentro */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-links li a {
        font-size: 1.4rem; /* Links maiores no celular */
    }
}

/* ===================================
   ✅ 4. HERO BANNER (LOGO GIGANTE)
   =================================== */
.hero-section {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px; /* Espaço para não bater no header */
    position: relative;
    overflow: hidden; 
}

/* Container para garantir que o vídeo cubra a Hero Section */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Fica ACIMA do background (-2), mas ABAIXO da logo */
    pointer-events: none; /* Deixa clicar através do vídeo */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O vídeo em si */
.alpha-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a tela inteira sem distorcer */
    opacity: 0.8; /* Ajuste opcional: se o vídeo brigar muito com a logo, diminua aqui */
    mix-blend-mode: screen; /* TRUQUE: Ajuda a eliminar bordas pretas se houver */
}

/* ===================================
   ✅ CONTROLE DE VÍDEO (DESKTOP VS MOBILE)
   =================================== */

/* Por padrão (Desktop), esconde o mobile e mostra o desktop */
.video-mobile {
    display: none;
}

.video-desktop {
    display: block;
}

/* Na regra existente de @media (max-width: 900px), 
   você pode adicionar isso ou colar este bloco separadamente no final do arquivo 
*/
@media (max-width: 900px) {
    
    /* Esconde o vídeo de desktop */
    .video-desktop {
        display: none;
    }

    /* Mostra o vídeo mobile */
    .video-mobile {
        display: block;
        /* Garante que o vídeo mobile preencha tudo igual ao desktop */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.logo-container {
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 10; /* Fica acima do background */
}

#main-logo-svg {
    width: 100%;
    height: auto;
    max-height: 65vh; /* Limita altura */
    overflow: visible;
    filter: drop-shadow(0 0 30px rgba(238, 195, 76, 0.2));
}

.hero-text {
    margin-top: 2rem;
    font-family: 'Garet Book', sans-serif;
    font-size: 1.2rem;
    opacity: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Gradiente sutil no texto */
    background: linear-gradient(90deg, #ffffff, #aaaaaa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

/* Ajustes Finais para Mobile Pequeno */
@media (max-width: 600px) {
    #main-logo-svg {
        max-height: 45vh; /* Logo menorzinha para caber na tela do celular */
    }
    .hero-text {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
}

/* ===================================
   ✅ SEÇÃO 2: BRANCA (Marketing)
   =================================== */
.white-section {
    position: relative;
    min-height: 100vh; /* Garante altura de tela cheia */
    background-color: #F4F4F4; /* Branco levemente cinza para conforto visual */
    color: #1a1a1a; /* Texto escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Fica por cima da Hero quando rolar */
    overflow: hidden;
}

.content-wrapper {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    width: 100%;           /* Garante que use a tela */
    max-width: 1200px;     /* AUMENTADO de 800px para 1200px */
    margin: 0 auto;        /* Centraliza o container */
}

/* Tipografia da Seção */
.section-number {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.1); /* Apenas contorno sutil */
    line-height: 1;
    margin-bottom: -40px; /* Sobreposição estilosa */
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* ELEMENTOS NEON (LINHAS) */
.neon-line {
    position: absolute;
    height: 4px; /* Espessura da linha */
    border-radius: 10px;
    background: var(--main-gradient);
    box-shadow: 0 0 5px rgba(238, 195, 76, 0.6); /* O brilho neon */
}

/* 1. Linha Topo Centro */
.line-top-center {
    top: 15%;
    left: 50%;
    width: 150px;
    transform: translateX(-50%);
}

/* 2. Linha Bottom Direita */
.line-bottom-right {
    bottom: 10%;
    right: 5%;
    width: 250px;
}

/* ===================================
   ✅ SEÇÃO 2: CARDS E LINHAS NOVAS
   =================================== */

/* Container das linhas atrás do conteúdo */
.lines-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1; /* Fica atrás do texto */
    overflow: hidden;
    pointer-events: none;
}

/* Estilo base da linha animada */
.moving-line {
    position: absolute;
    height: 4px;
    background: var(--main-gradient);
    border-radius: 4px;
    opacity: 0; /* Começa invisível para o GSAP controlar */
    box-shadow: 0 0 10px rgba(238, 195, 76, 0.4);
}

/* Posições variadas para as linhas não ficarem alinhadas */
.moving-line:nth-child(1) { top: 15%; left: -10%; }
.moving-line:nth-child(2) { top: 45%; left: -10%; }
.moving-line:nth-child(3) { top: 70%; left: -10%; }
.moving-line:nth-child(4) { top: 85%; left: -10%; }

/* FORÇAR O GRID A MOSTRAR 3 COLUNAS */
.cards-grid {
    display: grid;
    /* Isso garante 3 colunas de tamanho igual no Desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
    width: 100%;
}

/* CARD DESIGN */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    cursor: default;

    text-decoration: none;
    cursor: pointer;
    display: block; /* Garante comportamento de bloco */
    height: 100%; /* Garante altura igual se estiver em flex/grid */

}

/* Efeito Hover no Card (Sobe e Brilha) */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 195, 76, 0.15);
    border-color: rgba(238, 195, 76, 0.3);
}

/* Detalhe colorido no topo do card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--main-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Tipografia do Card */
.card-icon {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Ghotam Light', sans-serif;
    background: var(--main-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.3;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #050505;
    font-weight: bold;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Botão "Todos os Serviços" - Variante Escura */
.button-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.neon-button.dark-variant {
    background: #050505; /* Fundo preto para contrastar no branco */
    color: white;
    padding: 15px 40px;
    border: 1px solid transparent;
}

.neon-button.dark-variant:hover {
    background: white;
    color: #050505;
    border: 1px solid #050505;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* RESPONSIVIDADE: No celular vira 1 coluna */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr; /* Um card por linha no celular */
        padding: 0 10px;
    }

    /* ANTES estava: .neon-button { display: none; } */
    /* AGORA: Esconde APENAS o botão do header, mantendo os outros visíveis */
    #main-header .neon-button {
        display: none;

    }

    /* Ajuste extra para centralizar o botão de serviços no mobile se precisar */
    .button-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Garante um respiro generoso no final da seção de marketing no celular */
    #marketing {
        padding-bottom: 20px; /* Empurra a seção de baixo para longe */
        height: auto; /* Remove altura fixa se houver, deixando crescer */
    }

    /* Opcional: Garante que o botão também tenha uma margem extra */
    #marketing .button-wrapper {
        margin-bottom: 20px;
    }



    /* Isso garante que os cards sejam visíveis por padrão */
.service-card {
    opacity: 1; 
    transform: translateY(0);
    }
    
}

/* ===================================
   ✅ 6. GRID DA GALERIA (GLOBAL E UNIFICADO)
   =================================== */

/* .gallery-grid agora é uma classe para ser usada em qualquer página */
.gallery-grid {
    display: grid;
    width: 100%;
    max-width: 1600px;
    margin: 60px auto;
    /* DESKTOP: 3 COLUNAS FIXAS */
    grid-template-columns: repeat(3, 1fr) !important; 
    /* Altura base da linha (o tamanho do quadrado pequeno) */
    grid-auto-rows: 300px; 
    gap: 15px;
    /* OBRIGATÓRIO: dense faz o 'Tetris' para preencher buracos */
    grid-auto-flow: dense; 
}

/* Item Base (agora suporta <a> também) */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    height: 100%;
    display: block; /* Importante para <a> tags */
    text-decoration: none;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover {
    border-color: #eec34c;
    box-shadow: 0 5px 20px rgba(238, 195, 76, 0.2);
    z-index: 2;
}

/* Overlay de Texto ao passar o mouse (Opcional, para Branding) */
.item-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.gallery-item:hover .item-overlay { opacity: 1; }

/* CLASSES DE TAMANHO (Só funcionam no Desktop) */
.span-col-2 { grid-column: span 2; } 
.span-row-2 { grid-row: span 2; }    

/* RESPONSIVIDADE GALERIA */
@media (max-width: 900px) {
    .gallery-grid {
        /* Mobile: 2 Colunas */
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto;
        gap: 10px;
        padding: 0 15px;
    }
    .gallery-item {
        /* Anula as classes de tamanho no mobile */
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 1 / 1; /* Força quadrado perfeito */
    }
}

/* ===================================
   ✅ SEÇÃO 4: CLIENTES (SCROLLING)
   =================================== */

.clients-section {
    position: relative;
    padding: 30px 0;
    background: #ffffff; /* Um pouco mais claro que o fundo total, para destacar */
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.text-center { text-align: center; }

/* CONTAINER DO MARQUEE */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Esconde o que sai da tela */
    white-space: nowrap; /* Impede que quebre linha */
    padding: 20px 0;
    
    /* Efeito de Fade nas laterais para suavizar a entrada/saída */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 60px; /* Espaço entre as logos */
    will-change: transform;
    animation: scrollMarquee 100s linear infinite; /* Ajuste a velocidade aqui (40s) */
}

/* A LOGO EM SI (TÉCNICA DE MASKING) */
.client-logo-mask {
    width: 180px;
    height: 100px;
    background-color: #444; /* Cor padrão (Cinza escuro) */
    
    /* A mágica: O SVG vira uma máscara */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    
    transition: all 0.3s ease;
    cursor: pointer;
}

/* EFEITO AO PASSAR O MOUSE (Acende o Neon) */
.client-logo-mask:hover {
    background-color: var(--grad-end); /* Fica branco brilhante */
    filter: drop-shadow(0 0 10px rgba(238, 195, 76, 0.6)); /* Glow Roxo */
    transform: scale(1.1);
}

/* VARIAÇÕES DE CORES (O JS vai aplicar aleatoriamente) */
.logo-grad-1 { background: var(--grad-mid); } /* Vermelho/Rosa */
.logo-grad-2 { background: var(--grad-mid); }   /* Roxo */
.logo-grad-3 { background: var(--grad-mid); }   /* Azul */
.logo-grad-4 { background: var(--grad-mid); } /* Branco Neutro */

/* ANIMAÇÃO */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move metade (já que duplicamos a lista) */
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .marquee-track {
        gap: 50px;
        animation-duration: 60s; /* Mais rápido no celular */
    }

    .marquee-track {
        display: flex;       /* Garante que é flexbox */
        flex-wrap: nowrap;   /* OBRIGATÓRIO: Impede que quebre para a linha de baixo */
        gap: 40px;           /* Espaço um pouco menor para fluir melhor */
        width: max-content;  /* Garante que a largura seja a soma de todos os itens */
    }
    .client-logo-mask {
        width: 160px; /* Logos menores no celular */
        height: 100px;
    }
}

/* ===================================
   ✅ SEÇÃO 5: CONTATO (REF: IMAGE_1543B9)
   =================================== */
.contact-section {
    background-color: #ffffff;
    color: #050505;
    padding: 100px 0;
    position: relative;
    z-index: 20;
    overflow: hidden; /* Importante para a animação vindo de fora */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Mais espaço entre colunas */
    align-items: flex-start; /* Alinha no topo */
}

/* LADO ESQUERDO (INFO) */
.contact-logo {
    height: 35px;
    margin-bottom: 40px;
    display: block;
}

/* Título Centralizado e Grande */
.contact-title {
    font-size: 3.5rem; /* Fonte bem grande conforme imagem */
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    text-align: left; /* Título no MEIO */
}

/* Texto descritivo alinhado à ESQUERDA (Não justificado) */
.contact-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
    text-align: left; 
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-link, .email-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    font-weight: 700; /* Negrito */
    transition: 0.3s;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: translateX(5px);
}

/* LADO DIREITO (FORMULÁRIO) */
.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 10px; /* Leve ajuste visual */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 900; /* Extra bold */
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs cinza claro com cantos arredondados */
.form-group input, 
.form-group textarea {
    padding: 15px;
    background: #F2F2F2; /* Cinza da imagem */
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #000;
    width: 100%;
    transition: 0.3s;
}

/* Placeholder style */
::placeholder {
    color: #aaa;
    font-weight: 300;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* BOTÃO DE ENVIO (PRETO COM BORDA NEON) */
.neon-button-submit {
    position: relative;
    background: #000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
}

/* Borda Gradient Neon atrás do botão */
.neon-button-submit::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--main-gradient);
    z-index: -1;
    border-radius: 50px;
}

.neon-button-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===================================
   ✅ FOOTER (RODAPÉ)
   =================================== */
.main-footer {
    background-color: #050505;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    position: relative;
    z-index: 20;
}

.footer-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, #0A2F62, #eec34c, #d3d3d3);

}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinha verticalmente */
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col img {
    height: 25px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.brand-col p {
    font-size: 0.8rem;
    line-height: 1.4;
}

.links-col ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.links-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.links-col ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--main-gradient);
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .brand-col { align-items: center; }
}