:root {
    --primary: #1a1a1a;
    --accent: #a68a64; 
    --light: #f9f9f9;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    color: #333; 
    line-height: 1.6; 
    overflow-x: hidden; 
    background-color: var(--white);
    padding-top: 70px; /* IMPORTANTE: Abre espaço para a navbar fixa */
}

/* --- NAVBAR & LOGO --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px !important;
    background-color: #000000 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 5% !important;
    z-index: 9999 !important;
    border-bottom: 1px solid #222;
}

.main-logo {
    height: 45px !important;
    width: auto !important;
    display: block !important;
}

.navbar nav ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    gap: 20px !important;
}

.navbar nav ul li a {
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar nav ul li a:hover { color: var(--accent) !important; }

/* --- HERO BANNER --- */
.hero {
    height: calc(100vh - 70px);
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff;
}

.hero h1 { font-size: 3rem; font-weight: 200; letter-spacing: 10px; margin-bottom: 20px; text-transform: uppercase; }
.hero p { font-size: 1rem; font-weight: 200; letter-spacing: 2px; margin-bottom: 30px; }

/* --- BOTOES --- */
.btn-primary { 
    display: inline-block; 
    padding: 15px 40px; 
    border: 1px solid #fff; 
    color: #fff; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    transition: 0.4s; 
}
.btn-primary:hover { background: #fff; color: #000; }

/* --- SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.about, .portfolio, .testimonials, .section-3d, .tech-section { padding: 80px 0; text-align: center; }
.subtitle { text-transform: uppercase; letter-spacing: 5px; font-size: 0.65rem; color: var(--accent); display: block; margin-bottom: 15px; font-weight: 600; }
h2 { font-weight: 200; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 50px; font-size: 2rem; }

/* --- PORTFOLIO --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.project-card { position: relative; overflow: hidden; height: 400px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.project-card:hover img { transform: scale(1.1); }
.project-info { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    color: #fff; text-align: left; opacity: 0; transition: 0.5s; 
}
.project-card:hover .project-info { opacity: 1; }

/* --- SEÇÃO 3D --- */
.section-3d { background: var(--light); }
.grid-3d { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; text-align: left; }
.card-3d img { width: 100%; box-shadow: 15px 15px 30px rgba(0,0,0,0.1); }
.features-3d { list-style: none; margin: 20px 0; }
.features-3d li { margin-bottom: 10px; font-size: 0.85rem; padding-left: 20px; position: relative; }
.features-3d li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* --- TECNOLOGIA --- */
.tech-section { background: #111; color: #fff; }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.tech-item i { color: var(--accent); font-size: 2rem; margin-bottom: 20px; display: block; }

/* --- ANIMAÇÃO DE CIDADES (MARQUEE INFINITO CORRIGIDO) --- */
.atendimento-cidades {
    padding: 60px 0;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden; /* Esconde o que sai da tela lateralmente */
    width: 100%;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap; /* IMPEDE QUE AS CIDADES QUEBREM LINHA */
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-direction: row; /* FORÇA A LINHA HORIZONTAL */
    gap: 60px; 
    animation: scroll-left 80s linear infinite; /* Velocidade elegante para a Gama */
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    white-space: nowrap; /* REFORÇA A LINHA ÚNICA */
}

/* O ponto dourado sofisticado entre as cidades */
.marquee-content span::after {
    content: '•';
    margin-left: 60px;
    color: #a68a64; 
    font-weight: bold;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- FOOTER --- */
footer { padding: 60px 5% 30px; background: #0a0a0a; color: #fff; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: left; }
.footer-logo { width: 150px; margin-bottom: 20px; }
.footer-column h3 { color: var(--accent); font-size: 0.8rem; margin-bottom: 20px; text-transform: uppercase; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 50px;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #444; 
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Estilo do link do mapa no rodapé */
.link-mapa {
    display: inline-block;
    margin-top: 15px;
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid #555;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-mapa i {
    margin-right: 5px;
    color: #25D366; /* Um toque de verde para chamar atenção */
}

.link-mapa:hover {
    color: #25D366;
    border-bottom-color: #25D366;
}

/* Ajuste fino dos ícones sociais */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Cores originais ao passar o mouse */
.footer-social a[title="Instagram"]:hover { color: #E1306C; transform: translateY(-3px); }
.footer-social a[title="Facebook"]:hover { color: #1877F2; transform: translateY(-3px); }
.footer-social a[title="YouTube"]:hover { color: #FF0000; transform: translateY(-3px); }
.footer-social a[title="TikTok"]:hover { color: #00f2fe; transform: translateY(-3px); }
/* --- WHATSAPP --- */
.whatsapp-container { position: fixed; bottom: 20px; right: 20px; z-index: 99999; display: flex; flex-direction: column; align-items: flex-end; }
.whatsapp-message { background: #fff; color: #333; padding: 10px 15px; border-radius: 10px; font-size: 13px; margin-bottom: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid #eee; }
.whatsapp-float { width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

@media (max-width: 768px) {
    .navbar nav ul { display: none; }
    .grid-3d { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
}


/* --- ESTILO DAS MARCAS PARCEIRAS (ROLAGEM INFINITA) --- */
.marcas-parceiras-scroll {
  width: 100%;
  height: 130px; /* Trava a altura exata da faixa branca */
  background-color: #ffffff; 
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  overflow: hidden; 
  position: relative;
}

.marcas-track {
  height: 100%; /* Ocupa 100% do espaço e força o alinhamento central */
  display: flex;
  align-items: center; 
  width: max-content; 
  animation: rolarMarcas 35s linear infinite; 
}

/* Opcional: Pausa a rolagem quando o cliente coloca o mouse em cima */
.marcas-track:hover {
  animation-play-state: paused;
}

.marca-slide {
  height: 40px !important; /* Trava a altura para não explodir */
  width: auto !important;
  max-width: 180px; 
  object-fit: contain;
  margin: 0 40px; /* Espaço entre uma logo e outra */
  mix-blend-mode: multiply; /* Tira o fundo branco das fotos JPG */
  filter: grayscale(100%) opacity(60%);
  transition: all 0.3s ease;
}

.marca-slide:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.1);
}

/* A "mágica" que faz rodar infinitamente */
@keyframes rolarMarcas {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
  /* -50% porque duplicamos a lista, então quando chega na metade, ele reseta perfeito */
}

/* Ajuste para telas de celular */
@media (max-width: 768px) {
  .marca-slide {
    height: 30px !important;
    margin: 0 25px;
  }
}

/* --- RODAPÉ PREMIUM (Estilo Criare) --- */
.footer-premium {
    background-color: #050505;
    color: #f1f1f1;
    padding: 70px 0 20px 0;
    font-family: inherit;
}

/* O "display: flex" é o que coloca as colunas lado a lado */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 40px;
}

.footer-coluna {
    flex: 1;
    min-width: 150px;
}

.footer-coluna h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-coluna p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #999999;
    margin: 4px 0;
}

/* Tira as bolinhas azuis da lista */
.footer-coluna ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-coluna ul li {
    margin-bottom: 15px;
}

/* Tira a cor azul padrão e o sublinhado dos links */
.footer-coluna ul li a {
    color: #999999 !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-coluna ul li a:hover {
    color: #ffffff !important;
}

/* Ajuste do botão de mapa e redes sociais */
.link-mapa {
    display: inline-block;
    margin-top: 15px;
    color: #ffffff !important;
    font-size: 0.85rem;
    text-decoration: none !important;
    border-bottom: 1px solid #555;
    padding-bottom: 2px;
}

.link-mapa i {
    margin-right: 5px;
    color: #25D366; 
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: #ffffff !important;
    font-size: 1.3rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-social a[title="Instagram"]:hover { color: #E1306C !important; transform: translateY(-3px); }
.footer-social a[title="Facebook"]:hover { color: #1877F2 !important; transform: translateY(-3px); }
.footer-social a[title="YouTube"]:hover { color: #FF0000 !important; transform: translateY(-3px); }
.footer-social a[title="TikTok"]:hover { color: #00f2fe !important; transform: translateY(-3px); }

/* Faixa Final com CNPJ */
.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 25px 20px 0;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
    color: #666666;
}

/* Responsividade: Celular empilha as colunas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}



