* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(22, 49, 83, 0.8) 40%,
      rgba(22, 49, 83, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.content img {
  width: 250px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.6));
}

.content p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5em;
  max-width: 70vw;
}

.content h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 5.8em;
  font-weight: bold;
  max-width: 70vw;
  margin-bottom: 25px;
}

.content button {
  font-size: 18px;
  margin-top: 35px;
  padding: 10px 15px 10px 15px;
  border-radius: 15px;
  border: none;
  color: rgb(255, 255, 255);
  background-color: #c98c00;
}

.content button:hover {
  color: rgb(255, 255, 255);
  background-color: #d39400;
  transition: all 0.3s;
}


.sobre {
  background-color: #f4f4f4;
  color: #222;
  padding: 60px 20px;
  text-align: center;
}

.sobre h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.sobre p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.glass-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(14, 76, 105, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.glass-menu .logo img {
  height: 60px;
}

.servicos {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.servicos h2 {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #000;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.servico {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.servico .icone {
  min-width: 60px;
  min-height: 60px;
  background-color: #163153;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico .icone img {
  width: 24px;
  height: 24px;
}

.servico h3 {
  font-size: 1.1em;
  margin: 0 0 5px 0;
  color: #000;
}

.servico p {
  font-size: 0.95em;
  color: #555;
  margin: 0;
}

.diretrizes {
  background-color: #2c4656;
  /* azul escuro */
  color: white;
  text-align: center;
}

.faixa-titulo {
  background-color: #c98c00;
  /* amarelo mostarda */
  padding: 20px 0;
}

.faixa-titulo h2 {
  font-size: 2em;
  margin: 0;
  color: white;
}

.diretrizes-conteudo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px 60px;
}

.diretriz {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.diretriz .icone {
  width: 100px;
  height: 100px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diretriz .icone img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  /* transforma SVG escuro em branco */
}

.diretriz h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.diretriz p {
  font-size: 0.95em;
  line-height: 1.5;
  max-width: 300px;
}

.depoimentos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.depoimentos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.depoimentos .imagem {
  flex: 1 1 350px;
  text-align: center;
}

.depoimentos .imagem img {
  max-width: 100%;
  height: auto;
}

.depoimentos .texto {
  flex: 2 1 500px;
}

.depoimentos .texto h2 {
  font-size: 2em;
  color: #1c2e3f;
  margin-bottom: 40px;
  text-align: left;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px 60px;
}

.depoimento p {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.depoimento strong {
  font-weight: bold;
  color: #163153;
}

.contato {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.contato-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
}

.mapa {
  flex: 1;
  min-height: 500px;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.formulario {
  flex: 1;
  padding: 40px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formulario h2 {
  color: #444;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.formulario p {
  font-size: 0.95em;
  color: #777;
  margin-bottom: 30px;
}

.form-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid .campo {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.formulario label {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

.formulario input,
.formulario textarea {
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px;
  font-size: 1em;
  background: transparent;
  resize: none;
  margin-bottom: 20px;
  font-family: inherit;
}

.formulario button {
  width: 180px;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background-color: #c98c00;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s;
}

.formulario button:hover {
  background-color: #a67100;
}

.rodape {
  background-color: #163153;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.rodape-conteudo {
  max-width: 800px;
  margin: 0 auto;
}

.rodape .redes-sociais {
  margin-bottom: 20px;
}

.rodape .redes-sociais a {
  margin: 0 12px;
  display: inline-block;
  transition: transform 0.3s;
}

.rodape .redes-sociais a:hover {
  transform: scale(1.1);
}

.rodape .redes-sociais img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  /* deixa o SVG branco */
  transition: filter 0.3s;
}

.rodape .redes-sociais a:hover img {
  filter: invert(52%) sepia(86%) saturate(297%) hue-rotate(5deg) brightness(98%) contrast(94%);
  /* cor mostarda (#c98c00) */
}

.rodape p {
  font-size: 1em;
  margin: 0;
}

.modal-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #16315390;
  backdrop-filter: blur(15px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-glass ul {
  list-style: none;
  text-align: center;
}

.modal-glass li {
  margin: 20px 0;
}

.modal-glass a {
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  text-decoration: none;
  transition: 0.3s;
}

.modal-glass a:hover {
  color: #ffcc00;
}

.modal-glass .fechar {
  position: absolute;
  top: 20px;
  right: 45px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

.menu-button {
  color: rgb(255, 255, 255);
  background-color: #00000000;
  border: none;
  font-size: 25px;
}

.logotipo-menu {
  height: 100px;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.redes-sociais-menu img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  /* deixa o SVG branco */
  transition: filter 0.3s;
}

.redes-sociais-menu a:hover img {
  filter: invert(52%) sepia(86%) saturate(297%) hue-rotate(5deg) brightness(98%) contrast(94%);
  /* cor mostarda (#c98c00) */
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #097c33;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #25D366;
  transition: all 1s;
}

@media (max-width: 1024px) {
  .content h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.3em;
    font-weight: bold;
    max-width: 70vw;
    margin-bottom: 25px;
  }

  .content p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
    max-width: 70vw;
  }

  .content button {
  font-size: 15px;
}

.servico {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

 .depoimentos {
    flex-direction: column-reverse;
  }

    .coluna.imagem {
    order: 2;
  }

  .coluna.texto {
    order: 1;
  }

  .glass-menu {
  width: 100vw;
}

.glass-menu .logo img {
  height: 60px;
}

.contato-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.form-grid .campo {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.form-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}
}