css
/* 
Poppins para Títulos (Chamativas e Modernas) 
Use pesos como 500, 600 ou 700 para negrito
*/
h1, h2, h3, h4, h5, h6,a,li {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;

}
/* 
Nunito Sans para Textos (Legível e Amigável) 
Use peso 400 para normal e 700 para negrito no texto
*/
body, p, input,.produtos {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
 
  
}
body,html{

    height: 100%;
  margin: 0;
  padding: 0;
  font-style: normal;
  background: linear-gradient(135deg, #ddfaf5, #f5f5dc); /* fundo degradê suave */
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
  .carousel-item img {
    object-fit: contain;
  height: 60vh; /* Usa 90% da altura da tela */
  width: 100%;
  }
  .carousel-item p{
    color: #f5f5f5;
  }
.carousel-text{
    text-align: center;
}
.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* fundo escuro com opacidade */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
}

.card-img-wrapper:hover .card-img-top {
  transform: scale(1.05);
  opacity: 0.7;
}

.card-img-wrapper:hover .card-overlay {
  opacity: 1;
}
.card-body{
    text-align: center;
}
 h5{
    text-align: center;
}
.footer {
  background-color: #34495e;
  color: #eee;
  font-size: 0.9rem;
  text-align: center;
  padding: 8px 0;  /* pouco espaçamento pra ser pequeno */
  font-family: Arial, sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .contato {
  margin: 0 0 4px 0;
}

.footer .copyright {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
/* Seção do pedido */
#pedido {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.pedido-box {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pedido-box h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.pedido-box .form-control {
  margin-bottom: 15px;
}

.pedido-box .btn-success {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
}
.descricao-produto {
  background-color: #f5f5f5;
  padding: 20px 25px;
  border-left: 5px solid #198754; /* cor verde do Bootstrap */
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 30px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
/* --- Estilos Gerais --- */
:root {
  --cor-primaria: #2c3e50;     /* Azul escuro moderno */
  --cor-secundaria: #8ce73c;   /* Vermelho (pode manter seu tom atual) */
  --cor-texto: #333;           /* Cinza escuro para textos */
  --cor-fundo: #f9f9f9;        /* Fundo claro */
}

body {
  background-color: var(--cor-fundo); /* Troquei o vermelho por um fundo neutro */
  color: var(--cor-texto);
  font-family: 'Playfair Display', serif; /* Mantendo sua fonte escolhida */
}

.navbar {
  background: linear-gradient(135deg, var(--cor-primaria), #34495e) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
  color: white !important;
}

.nav-link:hover {
  color: var(--cor-secundaria) !important;
}
/* --- Cards de Produtos --- */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img-wrapper {
  position: relative;
  flex: 0 0 auto; /* mantém o tamanho da imagem */
}

.card-overlay {
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* --- Seção de Pedido --- */
#pedido {
  background: linear-gradient(135deg, var(--cor-primaria), #34495e);

}
/* --- Responsividade --- */
@media (max-width: 768px) {
  .carousel-item img {
    height: 400px; /* Altura menor em dispositivos móveis */
  }
  
  .card {
    margin-bottom: 15px;
  }
}
/*sobre*/
.sobre-destaque {
  padding: 60px 0;
  background-color: white;
}

.marca-titulo {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cor-primaria);
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  
}

.divisor {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--cor-primaria), var(--cor-secundaria));
  margin: 15px auto;
}

.marca-slogan {
  font-size: 1.2rem;
  color: var(--cor-texto);
  font-style: italic;
}

.sobre-titulo {
  color: var(--cor-primaria);
  border-left: 4px solid var(--cor-secundaria);
  padding-left: 15px;
  margin-bottom: 20px;
}

.sobre-texto {
  line-height: 1.8;
  margin-bottom: 20px;
}

.destaque-info {
  background-color: var(--cor-destaque);
  color: var(--cor-primaria);
  font-weight: 600;
  display: inline-block;
  border-left: 3px solid var(--cor-secundaria);
}

/* Responsivo */
@media (max-width: 768px) {
  .marca-titulo {
    font-size: 2.5rem;
  }
  
  .sobre-content img {
    margin-bottom: 30px;
  }
}
.conteudo-principal {
  flex: 1;
}   
.mySwiper {
  width: 100%;
  height: 400px;  /* Aumente pra 500px ou o tamanho que quiser */
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* pra imagem se adaptar ao contêiner */
  border-radius: 10px;
}
   
       /* .produtos {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            color: #2c3e50;
            text-align: center;
        }
        
        .garantia {
            font-size: 18px;
            margin-bottom: 25px;
            color: #444;
            text-align: center;
        }
        
        .contatoServico {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding: 15px;
            border-radius: 8px;
        }
        
        .contato p {
            font-size: 18px;
            color: #555;
            margin: 0;
        }
        .containerDoServico{
            max-width: 600px;
            margin: 20px auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
  
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 6px;
 
            transition: all 0.3s ease;
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }
           
        .whatsapp-icon {
            max-width: 150px;
      
        }
     
           @media (max-width: 600px) {
            .contatoServico {
            
            }
            
            .produtos {
                font-size: 18px;
            }
            
            .garantia {
                font-size: 16px;
            }
        } */
         .containerDoServico {
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.topoServico {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* ícone e texto alinhados no topo */
}

.produtos {
    font-size: 18px;
    color: #333;
    text-align: left;
}

.contatoServico {
    display: flex;
    align-items: flex-start; /* deixa o botão alinhado ao topo do texto */
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.whatsapp-icon {
    margin-top: 12px;
    width: 50px;
    height: 50px;
}

.garantia {
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}



