:root {
    --azul-escuro: #043561;    /* Azul principal (títulos, header) */
    --cinza-claro: #d4d4d4;    /* Fundo */
    --cinza-medio: #d9d9d9;    /* Bordas, detalhes */
    --laranja: #ff7a00;        /* Destaque / CTA */
    --preto: #111111;
}

html {
  scroll-behavior: smooth;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Inter', sans-serif;
    color: var(--preto);
}

h1, h2{
  font-family: 'EB Garamond', serif;
  font-weight: 700;
}

.header {
    width: 100%;
    background-color: var(--cinza-claro);
   
}

.nav-bar {
    
    margin: 0 auto;
    padding: 0px 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bar-logo img {
    height: 130px;
    width: auto;
    
}

.nav-bar-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.nav-bar-menu a {
    text-decoration: none;
    color: var(--azul-escuro);
    font-weight: bold;
    transition: 0.2s;
}

.nav-bar-menu a:hover {
    color: var(--laranja);
}

button {
    background: var(--laranja);
    color: white;
    border: none;

    padding: 10px 20px;
    border-radius: 4px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s;
    
}

.btn-solicitar{
  margin-bottom: 60px;
}

button:hover {
    filter: brightness(1.1);
}

.hero {
    background-color: var(--cinza-claro);
}

.hero-container {
    
    margin: 0 auto;
    padding: 0 120px;   /* 👈 alinhamento correto com o header */
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    
}

.hero-text h1 {
    font-size: 65px;
    color: var(--azul-escuro);
    line-height: 1.1;
    margin-bottom: 20px;
    
}

.hero-text h1 span {
    color: var(--laranja);
}

.hero-text p {
    font-size: 18px;
    color: var(--azul-escuro);
    margin-bottom: 24px;
    max-width: 520px;
    
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.segmentos {
    background: #ffffff;
    padding-bottom: 50px;
}

.segmentos-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;

    position: relative;
    top: -60px; /* 👈 isso faz os cards subirem sobre o hero */
}

.segmento-card {
    background: rgb(202, 201, 201);
    padding: 40px 24px;
    text-align: center;

    
    box-shadow: inset -1px 0 0 rgba(0,0,0,0.08);
    transition: 0.3s;

    cursor: pointer;
    margin-top: 05px;
}

.segmento-card h3 {
    color: var(--azul-escuro);
    font-size: 20px;
    font-weight: 600;
}

.segmento-card:hover {
    transform: translateY(-6px);
}

.segmento-card:last-child {
    box-shadow: none;
}

.servicos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 10%;
    background: #fff;
}

.servicos-texto .tag {
    background: #ff7a00;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.servicos-texto h1 {
    font-size: 50px;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

.servicos-texto p {
    color: var(--azul-escuro);
    line-height: 1.7;
}

/* Grid dos cards */
.servicos-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card individual */
.card-servico {
    border: 1px solid #e5e5e5;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    background: var(--cinza-claro);
}

/* Ícone */
.card-servico .icone {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Texto */
.card-servico h3 {
    color: var(--azul-escuro);
    font-size: 18px;
}

/* 🔥 EFEITO HOVER */
.card-servico:hover {
    background: #0b1d3a;
    transform: translateY(-6px);
}

.card-servico:hover h3 {
    color: #fff;
}

.card-servico:hover .icone {
    filter: brightness(200%);
}

.quem-somos {
    padding: 80px 10%;
    background: #fff;
}

.quem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quem-imagem img {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.quem-imagem img:hover {
    filter: grayscale(0%);
}
.quem-texto .tag {
    background: var(--laranja);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.quem-texto h2 {
    font-size: 50px;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

.quem-texto p {
    color:var(--azul-escuro);
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 900px) {
    .quem-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quem-imagem img {
        margin: 0 auto;
    }
}

.contador-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
}

.contador-item {
  width: 25%;
  position: relative;
}

.numero {
  font-size: 40px;
  font-weight: bold;
  display: block;
  color:var(--azul-escuro);
}

.contador-item p {
  margin-top: 5px;
  font-size: 16px;
  color:var(--azul-escuro);
}

/* Linha vertical */
.contador-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ddd; /* cor da linha */
}

/* Remove o fundo cinza e dá espaçamento */
.links-uteis {
  background: white; /* tira o cinza */
  padding: 30px 0px;
  width: 100%;
}

/* Wrapper que realmente centraliza o conteúdo */
.links-wrapper {
  max-width: 1000px; /* controla a largura */
  margin: 0 auto; /* centraliza na página */
  text-align: center;
}

/* Título centralizado */
.links-uteis h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: var(--azul-escuro);
}

.links-wrapper {
  max-width: 800px; /* controla a largura total do bloco */
  margin: 0 auto;   /* isso é o principal para CENTRALIZAR */
  text-align: center;
}

.links-container {
  display: flex;
  justify-content: space-between; /* distribui as 3 colunas dentro do espaço central */
  gap: 120px; /* espaço entre as colunas */
}

.links-coluna {
  width: auto;      /* deixa a coluna do tamanho do conteúdo */
  text-align: center; /* mantém os links alinhados à esquerda dentro da coluna */
}


/* Links */
.links-coluna a {
  display: block;
  text-decoration: none;
  color:var(--azul-escuro);
  font-size: 16px;
  margin-bottom: 8px;
}

.links-coluna a:hover {
  text-decoration: underline;
}

.conhecimento {
  padding: 60px 0;
  text-align: center;
  background: #ffffff;
}

.conhecimento h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 45px;
  color: var(--azul-escuro);
}

.videos-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.video-card {
  width: 33.33%;
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border-radius: 6px;
}

.video-titulo {
  margin-top: 10px;
  font-size: 14px;
  color: var(--azul-escuro);
  line-height: 1.4;
  text-align: left;
}

.btn-wrapper {
  margin-top: 30px;
}

.btn-ver-mais {
  display: inline-block;
  background: var(--laranja); /* mesmo laranja do seu site */
  color: white;
  padding: 10px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
}

#clientes {
  text-align: center;
  background-color: white;
  padding: 20px;
}

.titulo-reveal {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 45px;
    color: var(--azul-escuro);
}

.clientes-slider {
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
  margin-bottom: 40px;
}

.clientes-track {
  display: flex;
  width: max-content; 
  gap: 40px;
  animation: scrollClientes 35s linear infinite;
}

.clientes-track img {
  width: 220px;
  opacity: 0.8;
  transition: 0.3s;
  height: 80px;              /* ← força padrão */
  object-fit: contain;       /* ← NÃO distorce */
  flex-shrink: 0;            /* ← MUITO IMPORTANTE */
}

.clientes-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

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

.porque-nos {
  background:var(--cinza-claro);
  padding-top: 60px; /* MENOR espaço no topo */
  padding-bottom: 80px;
  font-family: Arial, sans-serif;
  position: relative;
}


.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tag {
  background: var(--laranja);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

h2 {
  font-size: 32px;
  color: var(--azul-escuro);
  margin-bottom: 25px;
}

.itens {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.check {
  color: white;
  font-size: 10px;
  font-weight: bold;
  background-color: var(--laranja);
  padding: 5px 10px
}

.item h3 {
  margin: 0;
  font-size: 20px;
  color: var(--azul-escuro);
}

.item p {
  margin: 5px 0 0;
  color: #555;
}

/* Responsivo */
@media (max-width: 900px) {
  .conteudo {
    grid-template-columns: 1fr;
  }

  .video iframe {
    height: 250px;
  }
}

.video{
    margin-top: 20px;
}

.depoimentos {
  padding: 80px 35%;
  text-align: center;
  background: white;
}

.depoimentos h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px;
  margin-bottom: 40px;
}

.slider {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.slides {
  position: relative;
  min-height: 250px;
}

.slide {
  display: none;
  animation: fade 1s ease-in-out;
}

.slide.ativo {
  display: block;
}

.slide p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.cliente {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.avatar {
  width: 60px;
  height: 60px;
  background: #2a1b5d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.info strong {
  display: block;
  font-size: 16px;
}

.info span {
  font-size: 14px;
  color: #777;
}

/* Bolinhas */
.dots {
  margin-top: 25px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.dot.ativo {
  background: #2a1b5d;
}

/* Animação suave */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.footer {
  background: #041a44; /* azul do seu layout */
  padding: 60px 50px;
  color: white;
}

/* CTA do topo */
.cta-contato {
  text-align: center;
  margin-bottom: 60px;
}

.cta-contato h2 {
  color: #fff;
  font-size: 35px;
  margin-bottom: 10px;
}

.btn-whatsapp {
  display: inline-block;
  background: #ff7a18;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 colunas iguais */
  align-items: start;
  gap: 40px;
}

/* LOGO (esquerda) */
.footer-logo .logo-footer {
  max-width: 220px;
}

/* LINKS (centro) */
.footer-links-wrapper {
  display: flex;
  justify-content: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-links li, h3 {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

/* MAPA (direita) */
.footer-map h3 {
  margin-bottom: 10px;
  text-align: center;
}

/* RESPONSIVO (celular) */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links-wrapper {
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-bottom {
  background: #ff7a18; /* laranja igual ao seu print */
  text-align: center;
  padding: 12px 0;
  
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

.dev-link {
  color: #ffffff;
  text-decoration: none
}

.dev-link:hover {
  opacity: 0.8;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* deixa alinhado à esquerda */
  gap: 15px;
}

/* Container dos ícones */
.footer-social {
  display: flex;
  gap: 10px;
}

/* Container dos ícones (embaixo da logo) */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* Botões laranja */
.social-icons .icon {
  width: 36px;
  height: 36px;
  background: #ff7a18; /* laranja do site */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px; /* pode trocar por 4px se quiser mais quadrado */
  text-decoration: none;
  font-size: 18px;
}

/* Efeito hover (opcional) */
.social-icons .icon:hover {
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

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

/* ======== MENU RESPONSIVO ======== */
@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
    padding: 10px 16px;
  }

  .nav-bar-logo img {
    height: 150px;
  }

  .nav-bar-menu {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin: 15px 0;
  }

  .btn-orcamento :single-button {
    width: 100%;
  }

  .btn-solicitar {
    width: 80%;
    margin-bottom: 5px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .segmentos-container {
    grid-template-columns: 1fr;
    top: 0;
  }
}

@media (max-width: 900px) {
  .servicos {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .servicos-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .links-container {
    flex-direction: column;
    gap: 30px;
  }

  .links-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .videos-container {
    flex-direction: column;
    gap: 30px;
  }

  .video-card {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .conteudo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Container dos 3 itens */
  .itens {
    max-width: 420px;   /* limita largura para não espalhar */
    margin: 0 auto;     /* centraliza o conjunto */
  }

  /* Cada linha (✔ + texto) */
  .item {
    display: grid;
    grid-template-columns: 40px 1fr; /* coluna fixa pro V + texto */
    align-items: flex-start;
    gap: 12px;
  }

  /* Centraliza o ✔ dentro da coluna fixa */
  .item .check {
    display: flex;
    justify-content: center;
  }
}


@media (max-width: 900px) {
  .depoimentos {
    padding: 60px 16px;
  }
}

@media (max-width: 900px) {
  .clientes-track img {
    width: 160px;
    height: 60px;
  }
}

@media (max-width: 900px) {
  .footer {
    padding: 50px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contador-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* espaçamento entre os números */
  }

  .contador-item {
    width: auto;
    position: unset;
  }
}

