/* TOPO DO SITE */
.site-header {
  background-color: #004aad;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover,
.menu a:focus {
  color: #ffdd57;
  outline: none;
}

.whatsapp-btn a {
  background: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.whatsapp-btn a:hover,
.whatsapp-btn a:focus {
  background: #1ebe57;
  outline: none;
}

/* Responsivo */
@media (max-width: 720px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* PRODUTO CONTAINER */
.produto-container {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card grande - carrossel */
.produto-carrossel {
  flex: 3;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  min-width: 280px;
  background: #f7f7f7;
}

.produto-carrossel img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: none;
  transition: opacity 0.5s ease;
  padding: 10px;
  background: white;
}

.produto-carrossel img.active {
  display: block;
  opacity: 1;
}

.carrossel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  box-sizing: border-box;
  pointer-events: none;
}

.carrossel-controls button {
  pointer-events: all;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 36px;
  transition: background 0.3s;
}

.carrossel-controls button:hover,
.carrossel-controls button:focus {
  background: rgba(0,0,0,0.7);
  outline: none;
}

/* Card pequeno */
.produto-destaque {
  flex: 1;
  background: #004aad;
  color: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 220px;
}

.produto-destaque h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.preco {
  font-size: 10rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffdd57;
}

.produto-destaque p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.btn-comprar {
  background: #ffdd57;
  color: #004aad;
  border: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-comprar:hover,
.btn-comprar:focus {
  background: #ffc107;
  outline: none;
}

/* Responsividade */
@media (max-width: 720px) {
  .produto-container {
    flex-direction: column;
    align-items: center;
  }

  .produto-carrossel,
  .produto-destaque {
    width: 100%;
    max-width: 400px;
  }

  .produto-carrossel img {
    height: 220px;
  }
}

/* SKILLS DA EMPRESA */
.skills {
  background: #f9f9f9;
  padding: 60px 20px;
}

.skills-title {
  text-align: center;
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 40px;
  font-weight: bold;
}

.skills-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.skill-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover,
.skill-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.skill-card h3 {
  color: #004aad;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* CARACTERÍSTICAS DO PRODUTO */
.caracteristicas {
  background: #004aad;
  color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.caracteristicas-container {
  display: flex;
  flex-direction: row; /* imagem na frente */
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* Coluna da imagem */
.caracteristicas-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.caracteristicas-imagem.ativo {
  opacity: 1;
}

.caracteristicas-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Coluna do texto */
.caracteristicas-conteudo {
  flex: 1;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.caracteristicas-conteudo.ativo {
  opacity: 1;
}

.caracteristicas-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffdd57;
}

.caracteristicas-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas-lista li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}

.caracteristicas-lista li.ativo {
  opacity: 1;
}

.caracteristicas-lista li:nth-child(1) { animation-delay: 0.3s; }
.caracteristicas-lista li:nth-child(2) { animation-delay: 0.5s; }
.caracteristicas-lista li:nth-child(3) { animation-delay: 0.7s; }
.caracteristicas-lista li:nth-child(4) { animation-delay: 0.9s; }
.caracteristicas-lista li:nth-child(5) { animation-delay: 1.1s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsividade */
@media (max-width: 920px) {
  .caracteristicas-container {
    flex-direction: column;
  }

  .caracteristicas-imagem,
  .caracteristicas-conteudo {
    opacity: 1 !important;
    animation: none !important;
  }

  .caracteristicas-lista li {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* SEÇÃO DE COMENTÁRIOS */

.comentarioForm {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.comentarios {
  max-width: 1000px;
  margin: 80px auto 40px auto;
  padding: 0 20px;
}

.comentarios h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
  color: #004aad;
  font-weight: bold;
}

.comentarios-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Reduzi de 280px para 220px */
  gap: 20px; /* Diminuir espaçamento um pouco */
  max-width: 900px; /* Limita a largura total da lista */
  margin: 0 auto;
}

.comentario {
  padding: 20px;
  font-size: 0.9rem; /* Reduzi um pouco o tamanho da fonte para melhor encaixe */
}


.comentario:hover,
.comentario:focus-within {
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.comentario .nome {
  font-weight: 700;
  color: #004aad;
  font-size: 1.1rem;
}

.comentario .texto {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Botão "Ler mais" dentro do comentário */
.comentario .btn-ler-mais {
  color: #004aad;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  padding: 0;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.comentario .btn-ler-mais:hover,
.comentario .btn-ler-mais:focus {
  color: #ffdd57;
  outline: none;
}

/* OUTROS BOTÕES GERAIS */
.btn {
  background-color: #004aad;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover,
.btn:focus {
  background-color: #002f75;
  outline: none;
}

/* Link estilo botão */
.btn-link {
  background: transparent;
  color: #004aad;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  transition: color 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
  color: #ffdd57;
  outline: none;
}

/* RESET E PADRÕES */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Scrollbar customizado opcional */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #004aad;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #002f75;
}
.comentarios-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.comentarios-viewport {
  overflow: hidden;
  width: 100%;
}

.comentarios-carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.comentario-card {
  flex: 0 1 240px;  /* flex-grow:0, flex-shrink:1, base 240px */
  max-width: 240px; /* limita o máximo */
  min-width: 200px; /* opcional: define mínimo para não ficar muito pequeno */
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comentario-btn {
  background-color: #004aad;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.comentario-btn:hover,
.comentario-btn:focus {
  background-color: #002f75;
  outline: none;
}

/* Se quiser deixar fixo na lateral do carrossel, pode posicionar assim: */
.comentario-btn.next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 10;
}

/* Se tiver botão anterior, pode estilizar .comentario-btn.prev igual, só ajustar left */

/* form comentario */
.form-comentario {
  margin: 50px auto;
  padding: 50px;
  background: #004aad;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  font-family: 'Arial', sans-serif;
  color: white;
  width: 100%;
}

.form-comentario h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.form-comentario form {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Inputs lado a lado */
.inputs-lado-a-lado {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: stretch;
}

/* Nome e Empresa em coluna */
.inputs-nome-empresa {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Estilo dos inputs */
.inputs-nome-empresa input[type="text"],
textarea[name="comentario"] {
  padding: 10px 14px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #333;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  height: 42px;
}

.inputs-nome-empresa input[type="text"]:focus,
textarea[name="comentario"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffdd57;
}

textarea[name="comentario"] {
  flex: 2;
  min-height: 94px; /* equivalente à soma de 2 inputs + gap */
  resize: none;
}

/* Botão de upload quadrado e menor */
.upload-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00306f;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  width: 90px;
  min-width: 50px;
  height: 94px;
  transition: background-color 0.3s ease;
  position: relative;
  border: 2px solid #ffdd57;
}

.upload-label:hover {
  background: #00285c;
}

.upload-label input[type="file"] {
  display: none;
}

/* Botão de enviar com ícone, altura reduzida */
.btn-enviar {
  background: #ffdd57;
  border: none;
  padding: 0 18px;
  height: 94px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-enviar:hover {
  background: #ffc107;
}

.btn-enviar svg {
  width: 60px;
  height: 22px;
  fill: #004aad;
}

/* Responsividade */
@media (max-width: 768px) {
  .form-comentario form,
  .inputs-lado-a-lado {
    flex-direction: column;
  }

  .upload-label,
  .btn-enviar {
    width: 100%;
    height: 50px;
  }

  textarea[name="comentario"] {
    min-height: 80px;
  }
}
/* SESSAO ENDEREÇO */
.secao-endereco {
  background: #004aad;
  color: white;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.endereco-conteudo {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.endereco-info {
  flex: 1;
  min-width: 280px;
}

.endereco-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffdd57;
}

.endereco-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.endereco-mapa {
  flex: 2;
  min-height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .endereco-conteudo {
    flex-direction: column;
  }

  .endereco-mapa {
    height: 300px;
  }
}


header {
      background-color: #005aa7;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
    }

    .orcamento-btn {
      padding: 10px 20px;
      background-color: #ffffff;
      color: #005aa7;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .orcamento-btn:hover {
      background-color: #e2e2e2;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      max-width: 600px;
      width: 100%;
      position: relative;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .modal-content h2 {
      margin-top: 0;
    }

    .modal-content label {
      display: block;
      margin: 10px 0 5px;
      font-weight: bold;
    }

    .modal-content input,
    .modal-content textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .modal-content textarea {
      resize: vertical;
      height: 80px;
    }

    .close-modal {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }

    .submit-btn {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #005aa7;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .submit-btn:hover {
      background-color: #004080;
    }
	
.orcamento-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background 0.3s;
}

.orcamento-fixo:hover {
  background-color: #0056b3;
}
