/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Geneva', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #f9f9f9;
}

a {
  color: inherit;
  text-decoration: none;
}
/*Botão Contate nos*/
.btn-contate {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: white;
  color: #686A6C;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contate:hover {
  background-color: #686A6C;
  color: white;
  transform: scale(1.05);
}

/* Header */
header {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

/* Imagem de fundo */
header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Agrupamento logo + texto */
header .logo-area {
  position: absolute;
  top: 15px;       /* mesma posição da logo antes */
  left: 200px;     /* mesma posição da logo antes */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
header .logo {
  position: absolute;
  top: 35px;      /* Ajuste vertical */
  left: 400px;    /* Ajuste horizontal */
  width: 350px;
  height: auto;
  z-index: 2;
}

/* Texto abaixo da logo */
header .header-text {
  position: absolute;
  top: 180px;  /* ajuste manual vertical */
  left: 300px; /* ajuste manual horizontal */
  color: white;
  max-width: 800px;
  text-align: left; /* ou center, conforme preferir */
  z-index: 2;
}

header .header-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

header .header-text p {
  font-size: 1.5rem;
  margin-top: 5px;
}

/* ================================
   SEÇÃO SOBRE
================================= */

.sobre {
  background: #fff;
  padding: 4rem 2rem;
}

.sobre-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-imagem {
  flex: 1 1 400px;
  text-align: center;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sobre-texto {
  flex: 1 1 500px;
  position: relative;
  padding: 1rem 2rem;
}

.fundo-sobre {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #686A6C0a;
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem; /* espaço entre o título e a linha */
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-align: center;
}

.linha-divisoria {
  border: none;
  height: 4px;
  width: 150px;
  background-color: #686A6C;
  margin: 1rem auto; /* centraliza e cria espaço acima e abaixo */
  z-index: 1;
}

.sobre-texto p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: #333;
}

.sobre-texto p span {
  color: #686A6C;
}

/* ================================
   SEÇÃO PROPÓSITO E PRINCÍPIOS
================================= */

.proposito {
  background-color: #ffffff;
  color: #000000;
  padding: 4rem 2rem;
  text-align: center;
}

.proposito .container {
  max-width: 1100px;
  margin: 0 auto;
}

.proposito h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.proposito-section {
  padding: 4rem 2rem;
  background: #fff;
}

.proposito-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.proposito-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.fundo-proposito {
  position: absolute;
  inset: 0;
  background: #686A6C0a;
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}

.proposito-conteudo {
  flex: 1 1 600px;
  background-color: #686A6C0a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.proposito-conteudo h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.cards-proposito {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.card-proposito {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* sombra igual ao service-item */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.card-proposito img {
  max-width: 60px;
  margin-bottom: 0;
}

.card-proposito p {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #020202;
  margin: 0;
}

.card-proposito:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3); /* sombra hover igual ao service-item */
}

.imagem-proposito {
  flex: 1 1 400px;
  text-align: center;
}

.imagem-proposito img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fundo-proposito {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #686A6C0a;
  border-radius: 8px;
  z-index: 0;
}

.card-proposito p {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #020202;
}

/* ================================
   SEÇÃO SERVICES / O QUE FAZEMOS
================================= */

.services-section {
  background: #fff;
  padding: 4rem 2rem;
}

.services-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.services-image {
  flex: 1 1 400px;
  text-align: center;
}

.services-image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* borda arredondada */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* sombra igual */
  object-fit: cover;
}

.services-content {
  flex: 1 1 600px;
  background-color: #686A6C0a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.services-content h2.section-title {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  margin-bottom: 0.5rem; /* espaço entre o título e a linha */
  font-weight: 900;
  text-align: center; /* centraliza o texto */
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-item {
  background: #f4f4f4;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 2px 6px rgba(235, 7, 7, 0.1);
  transition: background-color 0.3s ease;
}

.service-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* aplica a cor laranja nos itens ímpares */
.service-item:nth-child(odd) {
  background: #e0e0e0;
  color: #333;
}

.service-item:nth-child(odd) .dot {
  background: #555;
}

/* Aplica a cor escura nos pares */
.service-item:nth-child(even) {
  background: #686A6C;
  color: white;
}

.service-item:nth-child(even) .dot {
  background: white;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  word-break: normal;         /* NÃO força quebra no meio da palavra */
  overflow-wrap: break-word;  /* Permite quebrar só quando realmente necessário */
  hyphens: none;              /* Evita hifenização automática */
}

.service-item {
  min-height: 120px; /* mantém altura mínima para evitar desalinhamento */
}

.service-item.orange {
  background: #686A6C;
  color: white;
}

.service-item.orange .dot {
  background: white;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* ================================
   SEÇÃO NOSSOS DIFERENCIAL
================================= */

.diferenciais-section {
  background: #fff;
  padding: 4rem 2rem;
}

.diferenciais-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.diferencial-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.diferencial-card p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ================================
   FOOTER ESTILIZADO
================================= */
.rodape {
  background: #111;
  color: #ddd;
  padding: 3rem 1.5rem 1rem;
  font-family: 'Inter', sans-serif;
}

.rodape-container {
  display: flex;
  justify-content: space-between; /* Espaça os 3 blocos lado a lado */
  align-items: center; /* Alinha verticalmente no centro */
  max-width: 1200px; /* Limita a largura máxima, opcional */
  margin: 0 auto; /* Centraliza horizontalmente o container */
  padding: 20px;
}

.rodape-col {
  flex: 1 0 auto;
}

/* Logo */
.rodape-logo {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza imagem e texto */
  text-align: center;  /* centraliza o texto */
}

.rodape-logo img {
  max-width: 150px;
  margin-bottom: 0.75rem; /* ajuste fino */
}

.rodape-logo p {
  color: #aaa;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Contato */
.rodape-contato h4 {
  text-align: center;
  flex: 1; /* Faz o contato expandir e ficar centralizado */
  padding: 0 20px;
  color: #ccc; /* Exemplo de cor */
}

.rodape-contato p {
  text-align: center;
  margin: 0.4rem 0;
  color: #ccc;
  font-size: 0.95rem;
}

/* Redes Sociais */
.rodape-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rodape-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rodape-social a {
  background: #ffffff;
  color: #111;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rodape-social a:hover {
  background: #686A6C;
  transform: scale(1.1);
}

.rodape-social i {
  font-size: 20px;
}

/* Parte final do rodapé */
.rodape-final {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}

/* --- MOBILE RESPONSIVO HEADER --- */
@media (max-width: 768px) {
header {
  height: 60vh;
}

header .logo {
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
}

header .header-text {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  width: 320px;
  padding: 0 15px;
  text-align: center;
  color: white;
  z-index: 2;
}

header .header-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

header .header-text p {
  font-size: 1.1rem;
  margin-top: 9px;
  line-height: 1.4;
}
}
/* ===== MOBILE NOSSOS SERVIÇOS ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* sempre 2 por linha */
    gap: 1rem;
    justify-content: center;
  }

  .services-wrapper {
    justify-content: center;
  }

  .services-content {
    padding: 1rem;
  }

  .services-content h2.section-title {
    font-size: 1.4rem;
  }

  .service-item {
    padding: 0.75rem;
    min-height: 100px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(4n + 1),
  .service-item:nth-child(4n + 4) {
    background: #e0e0e0;
    color: #333;
  }
  .service-item:nth-child(4n + 1) .dot,
  .service-item:nth-child(4n + 4) .dot {
    background: #555;
  }

  .service-item:nth-child(4n + 2),
  .service-item:nth-child(4n + 3) {
    background: #686A6C;
    color: white;
  }
  .service-item:nth-child(4n + 2) .dot,
  .service-item:nth-child(4n + 3) .dot {
    background: white;
  }
}

/* Remove o grid de 1 coluna no mobile pequeno */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* força 2 colunas mesmo em celulares menores */
  }
}
/* ===== MOBILE NOSSOS DIFERENCIAIS ===== */
@media (max-width: 768px) {
  .proposito-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .proposito-section {
    margin-bottom: 0.2rem;
  }

  .imagem-proposito {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .imagem-proposito img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .proposito-conteudo {
    order: 1;
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
    margin-bottom: 1rem;
  }

  .proposito-conteudo h2 {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
  }

  .cards-proposito {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    animation: none !important; /* remove animação */
    overflow: visible !important;
    justify-content: center;
  }

  .cards-container-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .card-proposito {
    width: 100%; /* ocupa toda célula */
    max-width: 160px; /* limita tamanho máximo */
    height: auto;
    margin: 0 auto; /* centraliza o card na célula */
    background: #fff; /* mantém fundo branco */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-proposito img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .card-proposito p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #333;
    flex-shrink: 0;
    border-radius: 8px;
  }

  /* Oculta barra de rolagem se houver */
  .cards-proposito::-webkit-scrollbar {
    display: none;
  }
}
/* ===== MOBILE CONTATO ===== */
@media (max-width: 768px) {
  .rodape-container {
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
  }

  .rodape-col {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
  }

.rodape-contato {
    margin-top: 0.2rem;  /* diminui o espaço acima do contato */
  }

.rodape-logo img {
    max-width: 150px;
    height: auto;
}

.social-icons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    margin: 10px 0 0 0; /* margem superior pequena, sem negativa */
    padding: 0;
    gap: 15px;
  }

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0; /* remove margens que podem empurrar para os lados */
  }
}

.social-icons a:hover {
    background-color: #686A6C;
    color: #fff;
  }
/* ===============================
   ANIMAÇÕES AO SCROLL (.reveal)
================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
  transition: opacity 0.10s ease, transform 0.5s ease;
}
