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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.topo {
  background: #fff;
  padding: 15px 40px; /* espaçamento lateral */
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 40px;
}

/* Logo um pouco mais pro centro */
.logo {
  height: 80px;
  margin-left: 60px;
}

/* Menu com menos espaço */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.secao {
  padding: 60px 0;
}

.secao h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cinza {
  background-color: #f5f5f5;
}

.rodape {
  background: white;
  color: #0c4ba8;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 100;
}

/* NOVO: banner com imagem à esquerda e texto à direita */
.banner-lado {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.container-banner {
  display: flex;
  width: 100%;
  height: 100%;
}

.lado-esquerdo {
  width: 50%;
  height: 100%;
}

.lado-esquerdo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lado-direito {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: #1d3c50;
}

.lado-direito h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.lado-direito p {
  font-size: 1.1rem;
}
/* Envolve a logo + menu */
.container-topo {
  display: flex;
  align-items: center;
  gap: 40px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

/* Itens de menu */
.menu li a {
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #264e6a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu li i {
  color: #7ac9e2;
  font-size: 18px;
}

/* Ícone do Instagram */
.instagram-icon {
  background-color: #0c4a73;
  color: white;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  margin-right: 40px;
}

/* Espaçamento entre header e banner */
.slider {
  margin-top: 120px;
}

.sobre-nos {
  background: linear-gradient(to right, #cbd1e6, #ffffff);
  padding: 60px 0;
}

.texto-sobre h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111;
}

.texto-sobre p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  word-spacing: -0.3px; /* reduz ainda mais o espaçamento */
  hyphens: auto;        /* permite hifenização automática */
}

.icone-sobre {
  font-size: 2.5rem;
  color: #000;
}

.icone-sobre img {
  width: 70px;
  height: auto;
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #000;
}

.imagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.titulo-sobre {
  display: flex;
  align-items: center;
  gap: 20px;
}

.container-sobre {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.texto-sobre {
  width: 50%; /* mais espaço pro texto */
  min-width: 300px;
}

.imagens-sobre {
  width: 35%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; /* espaçamento entre as molduras */
}

.imagens-sobre img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border: 2px solid #C7E3F9; /* cor da moldura */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* sombra leve */
  border-radius: 8px; /* cantos suavemente arredondados */
}
.divisao-banner-sobre {
  height: 20px;
  background: #e0e7f1;
  margin-bottom: -10px;
  border-top: 2px solid #b8c4d9;
  box-shadow: 0 -3px 6px rgba(0,0,0,0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

.produtos-secao {
  padding: 80px 0;
  background: linear-gradient(to right, #b2c7e5, #dbe6f5); /* fundo azulado bonito */
  text-align: center;
}

.container-produto {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}

.titulo-produto {
  font-family: 'FS Ostro', sans-serif;
  font-size: 3rem;
  color: #0b2c4d;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.imagem-produto img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contato */
.contato {
  background-color: #f0f3fa;
  padding: 60px 20px;
}

.container-contato {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.contato-info {
  flex: 1;
  min-width: 300px;
  color: #1d1d1d;
}

.contato-info h2 {
  font-size: 2rem; /* ajustado para tamanhos médios e responsivos */
  margin-bottom: 30px;
  color: #123b56; /* cor mais forte e coerente com a identidade visual */
  text-align: left; /* garante alinhamento à esquerda */
  font-weight: 600;
  border-left: 6px solid #7ac9e2;
  padding-left: 15px;
}

.descricao-contato {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.descricao-contato i {
  min-width: 24px; /* fixa largura dos ícones */
  font-size: 20px;
  color: #1d1d1d;
}

.descricao-contato span {
  font-size: 1.1rem;
  color: #1d1d1d;
}

.icone-email {
  font-size: 50px;
  color: #1d1d1d;
}

.contato-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.formulario-contato {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-linha {
  display: flex;
  gap: 15px;
}

.input-linha input {
  flex: 1;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Segoe UI', sans-serif;
}

form button {
  background: #5c658a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #4b5375;
}


/* Rodapé */
.rodape-final {
  background-color: #2d6b7c;
  color: white;
  padding: 40px 20px;
}

.container-rodape {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.coluna {
  flex: 1;
  min-width: 220px;
}

.coluna p, .coluna h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.logo-rodape {
  width: 200px;
  margin-bottom: 15px;
}

.icone-social {
  display: inline-block;
  background-color: #1a4c5b;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.icone-social:hover {
  background-color: #264e6a;
}

@media (max-width: 768px) {
  .container-topo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .banner-lado {
    flex-direction: column;
    height: auto;
  }

  .lado-esquerdo, .lado-direito {
    width: 100%;
    height: auto;
  }

  .container-sobre {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .texto-sobre, .imagens-sobre {
    width: 90%;
  }

  .rodape {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .rodape img {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .container-topo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    margin-left: 0;
    height: 60px;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: 20px;
  }

  .instagram-icon {
    margin-right: 20px;
    font-size: 20px;
    padding: 6px 8px;
    position: absolute;
    right: 10px;
    top: 25px;
  }
}
@media (max-width: 768px) {
  .banner-lado {
    flex-direction: column;
    height: auto;
  }

  .container-banner {
    flex-direction: column;
  }

  .lado-esquerdo,
  .lado-direito {
    width: 100%;
    height: auto;
  }

  .lado-esquerdo img {
    height: auto;
    width: 100%;
  }

  .lado-direito {
    padding: 20px;
    text-align: center;
  }
}

.rodape-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rodape-logo img {
  max-width: 150px;
}

.rodape-info p {
  margin: 0;
  line-height: 1.6;
}

.rodape-redes {
  text-align: center;
}

.icone {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

.icone-social {
  width: 30px;
  margin: 10px 5px;
}

.footer {
  background-color: #2b6d7f;
  color: white;
  display: flex;
  justify-content: space-between; /* distribui com mais espaço */
  align-items: flex-start;
  padding: 20px 40px;
  font-size: 16px; /* aumentou o tamanho da fonte */
  flex-wrap: wrap;
}

.footer-col {
  padding: 10px;
}

.footer-col.logo {
  flex: 0 0 auto;
  text-align: left;
}

.footer-col.info {
  flex: 1;
  text-align: center;
}

.footer-col.social {
  min-width: 150px;
  text-align: right;
}

.footer-col.social a {
  color: white;
  margin-right: 10px;
  font-size: 22px;
}

.footer-col.social a:hover {
  color: #ccc;
}

.footer i {
  margin-right: 6px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  background-color: #1ebc59;
}
.footer-col.logo img {
  width: 180px; /* aumentou um pouco a logo */
}
.divisao-moldura {
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #cbd1e6, #ffffff);
  border-top: 2px solid #a0b0d5;
  border-bottom: 2px solid #a0b0d5;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-col.logo img {
    margin: 0 auto;
  }

  .footer-col.social {
    text-align: center;
  }

  .footer-col.social a {
    font-size: 24px;
    margin: 0 10px;
  }
}
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.banner-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.banner-texto {
  flex: 1 1 50%;
  padding: 20px 40px;
}

.banner-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #123b56;
}

.banner-texto p {
  font-size: 1.1rem;
  color: #333;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.logo {
    order: -1; /* faz a logo vir antes */
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-col.logo img {
    margin: 0 auto;
    width: 120px; /* tamanho ideal para celular */
  }

  .footer-col.info {
    width: 100%;
    text-align: center;
  }

  .footer-col.social {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
}





