/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do body */
body {
     font-family: 'Georgia', serif; 
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Banner */
.banner {
    margin-top: 20px;
    text-align: center;
}

.banner-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}



.oferecemos .container1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px;
    border: 4px solid #fff;
    border-radius: 8px;
    background-color: white;
}

.oferecemos h2 {
    font-size: 2rem;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.oferecemos p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Galeria (não responsiva) */
.galeria {
    display: grid;
    grid-template-columns: 280px 280px 280px; /* Largura fixa */
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.box-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 300px;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.box-img img:hover {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: hwb(0 0% 100% / 0.502);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Depoimentos */
.depoimentos {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap; /* Para evitar quebra feia em telas menores */
}

.depoimento {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.estrelas {
    font-size: 1.8rem;
    color: #f5c518;
    margin-bottom: 5px;
}

.comentario {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: justify;
}

.cliente {
    margin-top: 8px;
    font-weight: bold;
    color: #000000;
    font-size: 0.95rem;
}


.nossos-produtos {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Centraliza o container */
    padding: 40px 20px;
    background: #e3d8c4;
    border-radius: 20px;
    text-align: center;
   
}

.nossos-produtos h2 {
    font-size: 2rem;
    color:#000000;
    margin-bottom: 30px;
}

.produtos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-lista {
    background-color: #000000;
    color: white;
    border-radius: 12px;
    padding: 25px 30px;
    width: 500px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.titulo-card {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    border-bottom: 1px solid #ffffff50;
    padding-bottom: 10px;
}

.card-lista p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Informações da Empresa e Fale Conosco */
.informacoes {
    background-color: #f9f9f9;
    padding: 40px 20px;
}

.informacoes h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-empresa, .fale-conosco {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 48%; /* Faz as colunas ocuparem quase metade do espaço */
}

.info-empresa ul, .fale-conosco ul {
    list-style-type: none;
    padding-left: 0;
}

.info-empresa li, .fale-conosco li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.info-empresa strong, .fale-conosco strong {
    color: #000000;

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .info-empresa, .fale-conosco {
        width: 80%;
    }
}
/* Rodapé */
.rodape {
    background-color: lch(87.68% 97.83 143.8); /* Cor de fundo azul */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.rodape .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rodape {
    background-color:hwb(10 2% 69%);
    color: white;
    text-align: center;
    padding: 20px 10px;
  }
  
  .logo-rodape {
    font-weight: bold;
    font-size: 18px;
  }
  
  .links-rodape {
    margin: 10px 0;
  }
  
  .links-rodape a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .links-rodape a:hover {
    text-decoration: underline;
  }
  
  .direitos-rodape {
    font-size: 14px;
  }
  
 .whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .whatsapp-float:hover {
    background-color: #20b858;
    transform: scale(1.1);
  }
  
  .whatsapp-float i {
    line-height: 1;
  }
}