/* =======================================================
   1. CONFIGURAÇÕES GERAIS
   ======================================================= */

   :root {
    --primary-blue: #0056ff;
    --bg-black: #000;
    --bg-card: #0a0a0a;
    --text-white: #fff;
    --text-gray: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg-black); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* =======================================================
   2. CABEÇALHO E MENU (OVERLAY)
   ======================================================= */
#main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 5%; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
}
.logo-img { height: 40px; }
.menu-btn { font-size: 30px; cursor: pointer; color: #fff; }

#nav-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #000; z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease;
}
#nav-menu.active { opacity: 1; visibility: visible; } 
.close-btn { position: absolute; top: 30px; right: 5%; font-size: 40px; cursor: pointer; }

.menu-links { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.menu-links a { font-size: 32px; text-transform: uppercase; font-weight: 900; letter-spacing: 2px; }
.menu-links a:hover { color: var(--primary-blue); }

.menu-links .menu-cta {
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue);
    padding: 12px 40px; border-radius: 50px; margin-top: 15px;
}

/* =======================================================
   3. SEÇÃO DE PROJETOS (O CONSERTO DO GRID E IMAGENS)
   ======================================================= */
.projects-section { padding: 100px 5%; text-align: center; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    text-align: left;
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card:hover { border-color: var(--primary-blue); transform: translateY(-5px); }

/* TAMANHO PADRONIZADO DAS IMAGENS */
.img-wrapper {
    width: 100%;
    height: 220px; /* Ajuste aqui a altura que desejar */
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 'cover' preenche tudo, 'contain' deixa a logo inteira */
    filter: grayscale(1);
    transition: 0.5s;
    opacity: 0.8;
}

.project-card:hover .project-img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

.project-card h3 { 
    font-size: 13px; font-weight: 900; text-transform: uppercase; 
    padding: 20px 15px 5px; color: #fff; 
}

.project-card p { 
    font-size: 11px; color: #888; 
    padding: 0 15px 20px; min-height: 60px;
}

.view-project { 
    display: block; padding: 0 15px 20px; font-size: 10px; 
    color: #fff; font-weight: bold; text-transform: uppercase; text-decoration: underline; 
}

/* =======================================================
   4. HOME (HERO E MANIFESTO)
   ======================================================= */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; position: relative; text-align: center; }
.video-bg { position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); z-index:-1; }
.manifesto-title { font-size: clamp(40px, 8vw, 80px); line-height: 0.9; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.highlight { color: var(--primary-blue); }
.subheadline { max-width: 700px; margin: 0 auto 40px; color: #ccc; }

.cta-button { padding: 18px 35px; font-weight: bold; text-transform: uppercase; border-radius: 4px; display: inline-block; cursor: pointer; }
.cta-button.primary { background: #fff; color: #000; margin-right: 15px; }
.cta-button.secondary { border: 1px solid var(--primary-blue); color: var(--primary-blue); }

.about-avel { padding: 100px 5%; text-align: center; background: #000; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 900px; margin: 50px auto; text-align: left; }
.about-bullets li { list-style: none; margin-bottom: 15px; color: #ccc; position: relative; padding-left: 20px; }
.about-bullets li::before { content: "→"; position: absolute; left: 0; color: var(--primary-blue); }

/* =======================================================
   5. PÁGINA CONTRATAR (FORMULÁRIO)
   ======================================================= */
.contact-page { padding: 160px 5% 80px; min-height: 100vh; display: flex; align-items: center; }
.container-flex { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; gap: 80px; align-items: flex-start; }

.info-side { flex: 1; }
.info-side h1 { font-size: clamp(60px, 10vw, 100px); line-height: 0.85; font-weight: 900; margin-bottom: 30px; }
.form-side { flex: 1.2; }
.row { display: flex; gap: 20px; margin-bottom: 20px; }
.group { flex: 1; display: flex; flex-direction: column; }
.group.full { width: 100%; margin-bottom: 20px; }
.group label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: #888; font-weight: bold; }

.group input, .group select, .group textarea {
    background: #111; border: 1px solid #222; padding: 18px; color: white; outline: none; transition: 0.3s;
}
.group input:focus, .group select:focus, .group textarea:focus { border-color: var(--primary-blue); }

.btn-submit {
    width: 100%; padding: 22px; background: var(--primary-blue); color: white; border: none; 
    font-weight: 900; cursor: pointer; text-transform: uppercase; font-size: 14px; transition: 0.3s;
}

/* =======================================================
   6. PÁGINA PROJETOS.HTML (ESTILOS ESPECÍFICOS)
   ======================================================= */
.page-header { padding: 180px 5% 60px; background: #000; text-align: center; border-bottom: 1px solid #111; }
.page-header h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 900; text-transform: uppercase; }
.portfolio-page .projects-grid { grid-template-columns: repeat(3, 1fr); }

/* =======================================================
   7. PARCEIROS E RODAPÉ
   ======================================================= */
.partners-section { padding: 60px 5%; text-align: center; border-top: 1px solid #111; }
.partners-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 30px; }
.partner-logo { height: 35px; filter: grayscale(1); opacity: 0.6; }

.final-cta { padding: 100px 5%; text-align: center; background: #050505; }
footer { background: #000; padding: 80px 5% 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; border-top: 1px solid #111; }
.footer-col h3 { font-size: 12px; color: #444; margin-bottom: 20px; text-transform: uppercase; }
.copyright { grid-column: 1 / -1; text-align: center; padding-top: 40px; font-size: 12px; color: #444; }

/* =======================================================
   8. RESPONSIVIDADE
   ======================================================= */
@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .container-flex { flex-direction: column; }
}
@media (max-width: 600px) {
    .projects-grid, .portfolio-page .projects-grid { grid-template-columns: 1fr; }
    .row { flex-direction: column; }
    .img-wrapper { height: 200px; }
}
/* =======================================================
   RESPONSIVIDADE: GRID NO DESKTOP -> CARROSSEL NO MOBILE
   ======================================================= */

@media (max-width: 768px) {
    /* 1. O container pai esconde a barra de scroll e permite o deslize */
    .grid-wrapper {
        width: 100%;
        overflow-x: auto; /* Ativa o scroll horizontal */
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch; /* Deixa o deslize suave no iPhone */
    }

    /* Esconde a barra de rolagem para um visual mais limpo */
    .grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* 2. O grid vira uma linha infinita (Flex) */
    .projects-grid {
        display: flex; 
        grid-template-columns: none; /* Desativa as colunas do desktop */
        gap: 15px;
        padding-left: 5%; /* Margem inicial para o primeiro card */
        padding-right: 5%; /* Margem final para o último card */
    }

    /* 3. Cada card ganha um tamanho fixo para não "esmagar" a logo */
    .project-card {
        min-width: 80vw; /* Cada projeto ocupa 80% da largura da tela do celular */
        flex-shrink: 0;  /* Impede que o navegador diminua o card */
    }

    /* 4. Ajuste da imagem para manter a proporção no carrossel */
    .img-wrapper {
        height: 200px;
    }

    .project-img {
        object-fit: contain; /* Garante que a logo apareça inteira no celular */
        padding: 20px;      /* Dá um respiro para a logo não tocar nas bordas */
    }
}
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0; /* Mais respiro em cima e embaixo */
    background: #000;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px; /* Aumentei o espaço entre as logos */
    width: max-content; /* Faz o trilho ter o tamanho exato do conteúdo */
    animation: scroll-infinito 20s linear infinite;
}

.partner-logo {
    height: 80px; /* Aumentei o tamanho aqui (antes era 60) */
    width: auto;
    filter: grayscale(1) brightness(0.6);
    opacity: 0.7;
    transition: 0.3s;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Animação simplificada que não depende de cálculos manuais de pixel */
@keyframes scroll-infinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Ele move metade da div e reseta */
}
.marketing-venda {
    background-color: #000;
    padding: 100px 0; /* Espaçamento grande para respirar */
    display: flex;
    justify-content: center;
    width: 100%;
}

.venda-wrapper {
    max-width: 1200px;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 60px; /* Espaço entre imagem e texto */
}

.venda-image {
    flex: 1.2; /* Deixa a imagem maior que o texto */
}

.venda-image img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.venda-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.venda-tagline {
    color: #888;
    text-transform: lowercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.venda-title {
    color: #fff;
    font-size: clamp(32px, 4vw, 56px); /* Título bem grande e responsivo */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.venda-description {
    color: #ccc;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 480px;
}

.venda-btn {
    display: inline-block;
    padding: 18px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 12px; /* Arredondamento conforme a imagem */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.venda-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Ajuste para Celulares */
@media (max-width: 900px) {
    .venda-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .venda-content {
        align-items: center;
    }

    .venda-description {
        margin: 0 auto 30px;
    }
}/* Estado inicial da animação */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Estado quando a seção aparece na tela */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}.venda-title-impact {
    color: #fff;
    /* Fonte Inter ou Montserrat são as que chegam nesse visual */
    font-family: 'Inter', sans-serif; 
    font-size: 58px;        /* Tamanho grande */
    font-weight: 900;       /* Peso máximo (Black) */
    line-height: 0.9;      /* Linhas quase encostando para dar o efeito de bloco */
    letter-spacing: -3px;   /* Letras bem juntas como na imagem */
    margin-bottom: 25px;
    text-align: left;
    max-width: 650px;       /* Controla onde a frase quebra */
}

.venda-description {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 35px;
    max-width: 520px;
    opacity: 0.9;
    font-weight: 400;
}

.venda-btn-outline {
    display: inline-block;
    padding: 18px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 14px;    /* Arredondamento conforme a imagem */
    text-transform: uppercase;
    transition: 0.3s ease;
}

.venda-btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Alinhamento da Seção */
.venda-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 20px;
}

.venda-image {
    flex: 1;
}

.venda-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.venda-content {
    flex: 1.2;
}

/* Ajuste para telas menores */
@media (max-width: 1100px) {
    .venda-title-impact {
        font-size: 42px;
        letter-spacing: -2px;
    }
    .venda-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}.venda-title-impact {
    color: #fff;
    /* Archivo Black ou Inter com peso 900 dão esse efeito de "letra gorda" */
    font-family: 'Archivo Black', sans-serif; 
    font-size: 65px;         /* Aumentei para ocupar mais espaço lateral */
    font-weight: 900;
    line-height: 0.85;       /* Quase encostando uma linha na outra */
    letter-spacing: -4px;    /* Letras muito juntas, efeito de bloco único */
    margin-bottom: 20px;
    text-align: left;
    text-transform: none;    /* Mantém maiúsculas e minúsculas como no print */
}

.venda-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 450px;       /* Força o texto a ficar em 2 ou 3 linhas igual ao print */
    font-weight: 400;
}

/* Ajuste da Imagem para não ficar gigante */
.venda-image img {
    width: 100%;
    height: 420px;          /* Altura fixa para manter a proporção da foto */
    object-fit: cover;
    border-radius: 12px;    /* Arredondamento suave do print */
}

/* Alinhamento geral */
.venda-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
}
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 5% 40px;
    border-top: 1px solid #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.footer-insights h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-insights a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal {
    margin-top: 50px;
}

.legal-link {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    color: #666;
    font-size: 12px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 30px;
}

.footer-btn {
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* Botão WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp-float img {
    width: 35px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .footer-right {
        align-items: flex-start;
    }
}
/* Container dos ícones no topo direito */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço entre o insta e a logo */
    margin-bottom: 30px; /* Espaço antes do botão */
}

/* Controla o tamanho do ícone do Instagram */
.social-icon {
    width: 24px;  /* Tamanho pequeno e discreto */
    height: 24px;
    object-fit: contain;
    display: block;
    /* Se sua imagem for colorida e você quiser branca igual ao print, descomente a linha abaixo: */
    /* filter: brightness(0) invert(1); */
}

/* Controla o tamanho da logo da Avel */
.footer-logo {
    height: 25px; /* Altura harmônica com o ícone */
    width: auto;
}/* --- Estrutura Geral --- */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 5% 40px; /* Espaçamento generoso */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Separa esquerda e direita */
    align-items: flex-start; /* Alinha tudo ao topo */
}

/* --- Lado Esquerdo --- */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre os blocos de texto */
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    margin-top: 20px;
}

.legal-link {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.copyright {
    color: #666;
    font-size: 11px;
    max-width: 400px;
}

/* --- Lado Direito (Onde estava o problema) --- */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinha tudo à direita */
    gap: 40px; /* Distância entre os ícones e o botão */
}

.social-row {
    display: flex;
    align-items: center;
    gap: 20px; /* Distância entre o ícone do Insta e a Logo */
}

/* Força os ícones a ficarem pequenos e alinhados */
.icon-img {
    width: 24px;  /* Tamanho exato */
    height: 24px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1); /* TORNAR BRANCO se a imagem for colorida */
}

.logo-img {
    height: 20px; /* Altura da logo Avel */
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Garante que fique branco */
}

/* Estilo do Botão */
.btn-footer {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 50px; /* Borda redonda estilo pílula */
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-footer:hover {
    background-color: #fff;
    color: #000;
}

/* --- WhatsApp Flutuante --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.whatsapp-float img { width: 28px; }

/* --- Mobile --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    .footer-right {
        align-items: flex-start; /* No celular alinha à esquerda */
        width: 100%;
    }
    .social-row {
        width: 100%;
        justify-content: flex-start;
    }
}.site-footer {
    background-color: #000;
    color: #fff;
    padding: 100px 0 40px 0; /* Aumentei o padding superior para dar ar premium */
    width: 100%;
}

.footer-container {
    max-width: 1300px; /* Largura máxima do conteúdo */
    width: 90%;        /* Margem de segurança nas laterais */
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* ISSO SEPARA OS DOIS LADOS */
    align-items: flex-start;        /* Alinha os topos */
}

/* Lado Esquerdo */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espaço vertical entre marca, insights e legal */
}

.footer-brand {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

.footer-group h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-group a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.legal-link {
    display: block;
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    margin-bottom: 10px;
}

.copyright {
    color: #666;
    font-size: 11px;
    max-width: 450px;
}

/* Lado Direito */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinha ícones e botão na direita */
    gap: 50px;             /* Espaço entre ícones e o botão */
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 25px; /* Espaço entre o ícone do Insta e a logo Avel */
}

.icon-small {
    width: 22px;
    height: 22px;
}

.logo-small {
    height: 22px;
    width: auto;
}

.btn-footer {
    padding: 18px 35px;
    border: 2px solid #fff;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-footer:hover {
    background: #fff;
    color: #000;
}.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px; /* Espaço para não ficar colado na seção anterior */
    margin-bottom: 15px;
    display: block;
}

.legal-content p {
    margin-bottom: 20px;
    color: #ffffff; /* Texto branco conforme o print */
    font-size: 16px;
    line-height: 1.5;
}
.legal-header {
    padding: 30px 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.header-logo { height: 25px; }

.header-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.6;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.last-update {
    text-align: left;
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 25px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-box {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}/* Configuração Base da Seção */
.marketing-venda {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
}

.venda-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Permite quebrar linha em telas menores */
}

.venda-image {
    flex: 1;
    min-width: 300px; /* Garante que a imagem não suma */
    max-width: 500px;
}

.venda-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.venda-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.venda-title-impact {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.venda-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Ajuste do Botão Outline */
.venda-btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.venda-btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- RESPONSIVIDADE (MOBILE) --- */

@media (max-width: 768px) {
    .venda-wrapper {
        flex-direction: column; /* Empilha imagem e texto */
        text-align: center;
        gap: 30px;
    }

    .venda-content {
        text-align: center; /* Centraliza o texto no celular */
    }

    .venda-title-impact {
        font-size: 1.8rem; /* Diminui o título para não quebrar layout */
    }

    .venda-image {
        max-width: 100%; /* Imagem ocupa largura total no mobile */
    }
}/* Container da Grade de Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Estilização do Card "Em Desenvolvimento" */
.developing-card {
    background: #0a0a0a !important;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.developing-card .img-wrapper {
    background: #000;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-moving {
    width: 100px !important;
    opacity: 0.2;
    filter: grayscale(1);
    animation: pulseLogo 3s infinite alternate;
}

.badge-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0066ff;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Barra de Progresso */
.progress-container {
    width: 100%;
    height: 4px;
    background: #111;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 50%;
    height: 100%;
    background: #0066ff;
    animation: moveProgress 2s infinite linear;
}

/* Efeito de Brilho (Shimmer) */
.shimmer-overlay {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmerEffect 2.5s infinite;
}

@keyframes pulseLogo {
    from { transform: scale(1); opacity: 0.2; }
    to { transform: scale(1.1); opacity: 0.4; }
}

@keyframes moveProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes shimmerEffect {
    100% { left: 100%; }
}/* Container de Destaque */
.portfolio-featured {
    background-color: #000; /* Garante o fundo preto */
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.featured-flex-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* O Card em Destaque */
.developing-card-featured {
    background: linear-gradient(145deg, #0a0a0a, #151515);
    border: 1px solid #222;
    border-radius: 20px;
    max-width: 500px; /* Largura do card */
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.developing-card-featured .img-wrapper {
    background: #000;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-moving {
    width: 140px !important;
    opacity: 0.4;
    animation: pulseLogo 3s infinite alternate ease-in-out;
}

.badge-status {
    position: absolute;
    top: 20px;
    background: #0066ff;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    z-index: 3;
}

/* Barra de Progresso Estilizada */
.progress-container {
    width: 80%;
    height: 8px;
    background: #1a1a1a;
    margin: 25px auto;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 40%;
    height: 100%;
    background: #0066ff;
    border-radius: 10px;
    animation: loadingMove 2.5s infinite ease-in-out;
}

/* Efeito de Brilho (Shimmer) */
.shimmer-overlay {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmerEffect 3s infinite;
    z-index: 1;
}

/* TEXTOS */
.developing-card-featured h3 {
    font-family: 'Archivo Black', sans-serif;
    color: #fff;
    margin-top: 25px;
    font-size: 1.4rem;
    padding: 0 20px;
}

.developing-card-featured p {
    color: #888;
    font-size: 1rem;
    padding: 10px 30px;
    line-height: 1.5;
}

/* ANIMAÇÕES */
@keyframes pulseLogo {
    from { transform: scale(1); opacity: 0.4; filter: brightness(1); }
    to { transform: scale(1.1); opacity: 0.7; filter: brightness(1.5); }
}

@keyframes shimmerEffect {
    100% { left: 100%; }
}

@keyframes loadingMove {
    0% { transform: translateX(-100%); width: 30%; }
    50% { width: 60%; }
    100% { transform: translateX(250%); width: 30%; }
}

/* Responsividade */
@media (max-width: 600px) {
    .developing-card-featured {
        max-width: 90%;
    }
}.form-side input:focus, 
.form-side select:focus, 
.form-side textarea:focus {
    border-color: #0066ff; /* Azul da Avel */
    outline: none;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.btn-submit {
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}/* --- Página de Contato Premium --- */
.contact-page {
    background-color: #000;
    color: #fff;
    padding: 100px 20px;
    min-height: 100vh;
}

.container-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* --- Lado Esquerdo: Textos --- */
.info-side h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem); /* Fonte fluida */
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.info-side .highlight {
    color: #0066ff; /* Azul da Avel */
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.info-side h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-side p {
    color: #888;
    max-width: 400px;
    line-height: 1.6;
}

.contact-meta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.meta-item small {
    display: block;
    color: #555;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 5px;
}

.meta-item p {
    color: #fff;
    font-weight: 600;
}

/* --- Lado Direito: Formulário --- */
.form-side {
    flex: 1;
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.group label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
    transition: 0.3s;
}

.form-side input, 
.form-side select, 
.form-side textarea {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

/* Efeito ao focar no campo */
.form-side input:focus, 
.form-side select:focus, 
.form-side textarea:focus {
    outline: none;
    border-color: #0066ff;
    background: #151515;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.15);
}

.form-side input:focus + label {
    color: #0066ff;
}

/* Botão de Envio Estilizado */
.btn-submit {
    width: 100%;
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 20px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Ajustes de Grid do Form */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsividade */
@media (max-width: 900px) {
    .container-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .row {
        grid-template-columns: 1fr;
    }

    .info-side {
        text-align: center;
    }

    .info-side p {
        margin: 0 auto;
    }
}.venda-image img {
  filter: contrast(1.05) brightness(0.9);
}
