/* RESET CSS */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Variáveis */
:root {
  --primary-color: #000000;
  --secondary-color: #000000;
  --background-color: #f5f3f3;
}

/* Geral */
h2 {
  font-size: 1.5em;
  color: var(--primary-color);
}

p {
  font-size: 1em;
  color: var(--secondary-color);
}

/* Cabeçalho */
.cabecalho {
  width: 100%;
  float: left;
  padding: 50px 8%;
  background-color: #242525;
}

.cabecalho2 {
  width: 100%;
  float: left;
  padding: 50px 8%;
  background-color: #f9f6f6;
}

.logo {
  width: 320px;
  height: 100px;
  text-align: left;
}

.cabecalho button {
  width: 15%;
  float: right;
  padding: 15px 10px;
  background-color: #383434;
  color: #000000;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
}

/* Menu */
.menu {
  width: 100%;
  font-size: larger;
  float: left;
  background-color: #242525;
  padding: 18px 8%;
  border-bottom: 5px solid #b83f27;
  font-family: 'Poppins', sans-serif;
}

.menu li {
  float: left;
}

.menu a {
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s;
  position: relative; /* Definindo posição relativa para o pseudoelemento ::after */
  display: inline-block; /* Garantindo que o elemento 'a' não tenha quebras de linha */
}

/* Seção Principal */
.principal {
  width: 100%;
  float: left;
  padding: 50px 8%;
  background-color: #f7f7f7;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.principal h2.titulo {
  font-family: 'Poppins', sans-serif;
  color: #041e53; /* Cor do título */
  font-size: 32px; /* Tamanho da fonte do título */
  margin-bottom: 20px;
}

.principal p.subtitulo + p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; /* Tamanho da fonte maior */
  color: #100e0e;
  margin-bottom: 20px;
  text-align: center;
}

.principal h3.titulo-servicos {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; /* Tamanho da fonte maior */
  font-weight: bold;
  color: #0074b8;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.principal ul.servicos li {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; /* Tamanho da fonte maior */
  color: #444;
  margin-bottom: 10px;
}
.principal ul.servicos li {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; /* Tamanho da fonte maior */
  color: #444;
  margin-bottom: 10px;
}


.principal p.chamada {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 24px; /* Tamanho da fonte maior */
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.principal p.introducao {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; /* Tamanho da fonte maior */
  color: #100e0e;
  text-align: center;
  margin-bottom: 20px;
}

.principal p:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; /* Tamanho da fonte maior */
  text-align: center;
  color: #555;
}

/* Seção Onde Estamos */
.onde-estamos {
  width: 30%;
  float: left;
  padding: 10px 20px;
  background-color: #f8f8f8;
  border: 2px solid #000000;
  border-radius: 10px;
}

.onde-estamos h2 {
  margin-bottom: 5px;
}

.onde-estamos iframe {
  width: 100%;
  height: 250px;
  margin: 20px 0px;
}

.onde-estamos li {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.onde-estamos i {
  margin-right: 5px;
}

/* Seção de Produtos */
.container {
  text-align: center;
  padding: 20px;
}

.titulo {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box {
  background-color: var(--background-color);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.box:hover {
  transform: translateY(-5px);
}

.titulo-produto {
  font-size: 18px;
  color: var(--primary-color);
  margin: 10px 0;
}

.estoque {
  font-size: 16px;
  color: #2ecc71;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-comprar {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  margin-top: 10px;
}

.btn-comprar:hover {
  background-color: #0056b3;
}

/* Botões */
.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  font-size: 16px;
  border: none;
  padding: 10px 50px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.whatsapp-button i {
  margin-right: 5px;
}

.whatsapp-button:hover {
  background-color: #3de4567b;
}

/* Estilização do botão */
form button {
  border: none;
  border-radius: 0.5rem;
  color: white;
  background: #1d90f5;
  cursor: pointer;
  transition: 0.3s;
  padding: 1rem 2rem; /* Adicionando espaçamento interno ao botão */
  font-size: 1rem; /* Tamanho da fonte do botão */
  text-transform: uppercase; /* Transforma o texto em maiúsculas */
}

button:hover,
button:focus {
  outline: none;
  background: #1c70d3;
}

button:disabled {
  cursor: not-allowed;
  background: #555b69;
}

/* Ícone do envelope no botão */
button i {
  margin-right: 0.5rem; /* Adiciona espaço à direita do ícone */
}


.servicos-button {
  display: inline-block;
  background-color: #595b5a;
  color: #fff;
  font-size: 16px;
  border: none;
  padding: 10px 50px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.servicos-button i {
  margin-right: 5px;
}

.servicos-button:hover {
  background-color: #6b706f;
}

/* Botão WhatsApp para chamar */
.talk-button {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 1000;
}

/* Rodapé */
footer {
  background-color: #212121;
  color: #ffffff;
  padding: 20px;
  text-align: center; /* Adicione esta propriedade para centralizar o conteúdo */
}

/* Remova a seguinte regra de estilo */
.container {
  display: flex;
  justify-content: center;
}

/* Remova a seguinte regra de estilo */
.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 800px;
}

/* Remova a seguinte regra de estilo */
.info-column {
  flex: 1;
  padding: 0 20px;
}

.service-text {
  color: #ffffff;
}

h3 {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 60px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  text-decoration: underline;
}

/* Direitos autorais */
.copyright {
  background-color: #212121;
  color: #ffffff;
  text-align: center;
  padding: 8px;
}

/* Estilização da seção "Precisando de Assistência" */
.contato-novo {
  background: #3c3b3b; /* Cor de fundo branca */
  color: #333; /* Texto em preto */
  padding: 2rem;
  text-align: left; /* Texto à esquerda */
}

/* Estilização do formulário */
form {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto; /* Centraliza o formulário horizontalmente */
  background: #f2f2f2; /* Cor de fundo mais clara e atraente */
  padding: 2rem;
  border-radius: 0.5rem; /* Borda arredondada */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Estilização dos elementos do formulário */
label,
input,
textarea,
button {
  display: block;
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc; /* Bordas claras */
  border-radius: 0.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  outline: none;
  border-color: #1d90f5; /* Cor mais destacada ao focar */
  box-shadow: 0 0 0 0.125rem #1d90f5; /* Realça a borda ao focar */
}

button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.25rem;
  background: #1d90f5; /* Cor de fundo azul */
  color: #fff; /* Texto em branco */
  cursor: pointer;
  transition: background 0.3s;
}

button:hover,
button:focus {
  outline: none;
  background: #1c70d3; /* Cor de fundo ligeiramente mais escura ao passar o mouse */
}

button:disabled {
  cursor: not-allowed;
  background: #555b69; /* Cor de fundo mais escura para o botão desativado */
}

/* Estilização do texto */
.custom-text {
  text-align: center; /* Centraliza o texto horizontalmente */
  margin-bottom: 20px; /* Adicione espaço abaixo do texto */
  color: #ffffff; /* Texto em branco */
  font-family: "Poppins", sans-serif; /* Use a fonte Open Sans */
  font-size: 2rem; /* Aumente o tamanho da fonte para 2rem (ou o valor desejado) */
}

/* Estilização do botão personalizado */
.custom-button {
  border: none;
  border-radius: 0.5rem;
  color: white;
  background: #1d90f5;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  width: 100%;
  padding: 1rem;
  font-weight: 700;
}

.custom-button:hover,
.custom-button:focus {
  outline: none;
  background: #1c70d3;
}

.custom-button:disabled {
  cursor: not-allowed;
  background: #555b69;
}

/* Estilização das avaliações */
.avaliacoes {
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #333;
  max-width: 900px; /* Largura máxima */
  margin: 0 auto;
}

.titulo-avaliacoes {
  font-size: 38px; /* Aumente o tamanho do título */
font-weight: lighter;  margin-bottom: 50px; /* Aumente a margem inferior */
  font-family: 'Poppins', sans-serif;
}

.avaliacoes-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0; /* Aumente o espaçamento superior e inferior */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.avaliacao-item {
  flex: 0 0 auto;
  width: 350px; /* Aumente a largura do item */
  margin-right: 30px; /* Aumente o espaço entre os itens */
  padding: 15px; /* Aumente o preenchimento */
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s;
  text-align: left;
  scroll-snap-align: start;
}

.avaliacao-item:last-child {
  margin-right: 0;
}

.avaliacao-item:hover {
  transform: scale(1.00); /* Reduzi o valor aqui */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


.avaliacao-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Aumente a margem inferior */
}

.avaliacao-header img {
  width: 60px; /* Aumente o tamanho da imagem */
  height: 60px; /* Aumente o tamanho da imagem */
  border-radius: 50%;
  margin-right: 15px; /* Aumente a margem direita */
  object-fit: cover;
}

.nome-cliente {
  font-weight: bold;
  font-size: 20px; /* Aumente o tamanho da fonte do nome do cliente */
  color: #333;
}

.data-avaliacao {
  font-size: 16px; /* Aumente o tamanho da fonte da data */
  color: #999;
}

.estrelas {
  font-size: 24px; /* Aumente o tamanho das estrelas */
  color: #FFD700;
  margin: 10px 0; /* Aumente a margem das estrelas */
}

.avaliacao-texto {
  font-size: 18px; /* Aumente o tamanho da fonte do texto da avaliação */
  color: #555;
}

/* Cabeçalho Imagens */

.cabecalho2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #f7f7f7; /* Cor de fundo preta */
  }

  .custom-title {
    font-family: 'Poppins', sans-serif; /* Use a fonte Poppins */
    font-size: 36px; /* Tamanho personalizado (ajuste conforme necessário) */
    text-align: left; /* Centralize o texto horizontalmente */
    color: #090909; /* Cor do texto (ajuste conforme necessário) */
    /* Outros estilos personalizados, como cor de fundo, podem ser adicionados aqui */
  }  

/* Estilo do Carrossel */
.carousel {
  display: flex;
  overflow: hidden; /* Oculta qualquer conteúdo que exceda a área do carrossel */
  max-width: 75%; /* Reduz o tamanho do carrossel para 75% do contêiner pai */
  margin: 0 auto; /* Centraliza o carrossel horizontalmente */
  position: relative;
}

.carousel img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #333; /* Borda mais espessa com uma cor suave */
  border-radius: 15px; /* Cantos arredondados para o carrossel */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Sombra suave para destacar o carrossel */
  transition: transform 0.3s ease-in-out; /* Transição suave no hover */
  cursor: pointer; /* Muda o cursor para indicar que as imagens são clicáveis */
}

.carousel img:hover {
  transform: scale(1.05); /* Zoom suave no hover */
}

/* Botões de Navegação */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para os botões */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.8); /* Efeito de destaque no hover */
}

.carousel-prev {
  left: 0;
  margin-left: 10px;
}

.carousel-next {
  right: 0;
  margin-right: 10px;
}
