.banner-titulo {
    background-image: url('../img/banner-titulo.jpg');
  
    margin-top: 30px;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column; /* Garante que as seções fiquem uma abaixo da outra */
	align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-titulo h1 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}




/* Estilização da seção */
.banner-titulo {
    text-align: center;
    position: relative;
    padding: 0px;
    overflow: hidden;
}

/* Estilização do título */
.banner-titulo h1 {
    font-size: 44px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: aparecerLetras 1.5s ease-out forwards;
}






/* Criando a linha animada abaixo do texto */
.banner-titulo h1::after {
    content: "";
    display: block;
    width: 0;
    height: 2px !important;
    background-color: #fff !important;
    position: absolute;
    left: 0;
    bottom: 15px  !important;
    animation: linhaExpandir 1.5s ease-out forwards 1.2s;
}



/* Media query para telas menores */
@media (max-width: 1024px) {
    .banner-titulo h1 {
        font-size: 36px; /* Ajusta o tamanho da fonte em telas médias */
    }
    .banner-titulo h1::after {
        display: none; /* Remove a linha em telas menores */
    }
}

@media (max-width: 768px) {
    .banner-titulo h1 {
        font-size: 38px; /* Ajusta o tamanho da fonte em telas pequenas */
    }
    .banner-titulo h1::after {
        display: none; /* Remove a linha em telas pequenas */
    }
}

@media (max-width: 480px) {
    .banner-titulo h1 {
        font-size: 32px; /* Ajusta o tamanho da fonte em telas muito pequenas */
    }
    .banner-titulo h1::after {
        display: none; /* Remove a linha em telas muito pequenas */
    }
}




/* Animação para as letras surgirem uma a uma */
@keyframes aparecerLetras {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para a linha expandir */
@keyframes linhaExpandir {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}




















.diferencial {
    background-color: #f4f4f4;
    padding: 0 20px;
    text-align: left;
    margin: 0;
    display: block;
	
}

.diferencial .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.titulo-diferencial {
    background-color: #F9F9F9;
    padding: 10px 0;
    margin: 0;
    width: 100%;

}

.titulo-diferencial h2 {
    font-size: 32px;
    color: #704796;
    font-weight: bold;
    margin: 0;
   text-align: center;
   line-height: 1.0;
}

.diferencial p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
    text-align: center;
}



.lista-beneficios h2 {
    font-size: 25px;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
    text-align: left !important;
}





.diferencial p strong {
    font-weight: bold;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .diferencial h2 { font-size: 28px; }
    .diferencial p { font-size: 16px; }
}

@media (max-width: 480px) {
    .diferencial h2 { font-size: 24px; }
    .diferencial p { font-size: 14px; }
}

.persiana-horizontal {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 20px;
    background-color: #f4f4f4;
}

.persiana-horizontal .container-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.titulo-persiana {
    font-size: 20px;
    font-weight: bold;
    color: #215373;
    text-align: center;
    margin: 0;
}

.descricao-persiana {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
   
    text-align: justify; /* Adicionando justificação do texto */
    max-width: 500px;
    margin: 0;
}

.linha-vertical {
    width: 1px;
    height: 80px;
    background-color: #DCDFE0;
}




.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #704898, #BD78B2, #704898); /* Gradiente de azul escuro */
	color: #fff;
    font-size: 20px;
    padding: 12px 35px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 22px;
}



btn-whatsapp:hover {
    background-color: #D89AF4;
    color: #D89AF4;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.9), 
                0 0 40px rgba(0, 255, 255, 0.9);
}
.btn-whatsapp:hover {
    background-color: #D89AF4;
    color: #D89AF4;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 
                0 0 40px rgba(255, 255, 255, 0.4);
}





.container-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

@media (max-width: 768px) {
    .btn-whatsapp {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .btn-whatsapp {
        font-size: 14px;
        padding: 8px 12px;
    }
}




.lista-beneficios {
    list-style-type: disc; /* Bolinha preta */
    padding-left: 20px; /* Ajuste para mover para a direita com um pequeno recuo */
    text-align: left;
    margin-left: 50px; /* Ajuste para mover a lista mais para a direita */
}

.lista-beneficios li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
    .lista-beneficios {
        padding-left: 40px; /* Ajuste para telas menores */
        margin-left: 30px; /* Ajuste do recuo */
    }
}

@media (max-width: 480px) {
    .lista-beneficios {
        padding-left: 10px; /* Menos recuo em telas muito pequenas */
        margin-left: 20px; /* Ajuste adicional */
    }
}




.botoes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
}

.botao {
    background-color: #fff;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.botao:hover {
    background-color: #183D5D;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .botao {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .botoes-container {
        flex-direction: column;
        align-items: center;
    }

    .botao {
        width: 80%;
        text-align: center;
    }
}









.search-buttons {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0px;
  margin-top: 200px; /* Adicionado para descer */
}

.main-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}

.search-button {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-button:hover {
  color: #0075A0;
  transform: translateY(-5px);
}

.search-button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
  .search-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 30px; /* Ajuste extra para telas menores */
  }
}





















   .produto-item {
    width: 100%;
    max-width: 300px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.produto-item:hover {
    transform: scale(1.05);
}

.produto-item img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

.produto-info {
    padding: 15px;
    text-align: justify; /* Justifica o texto */
}

.produto-info h3 {
    font-size: 19px;
    color: #444;
    margin-bottom: 10px;
    text-align: center; /* Centraliza o título */
}

.produto-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    text-align: justify; /* Justifica o texto */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .produtos-container {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .produtos-container {
        flex-direction: column;
        align-items: center;
    }

    .produto-item {
        width: 80%;
        text-align: center;
    }
}




.centralizado-2 {
  text-align: center; /* Centraliza o texto horizontalmente */
  font-size: 18px; /* Tamanho de fonte padrão */
  line-height: 1.6; /* Espaçamento entre as linhas */
  max-width: 90%; /* Limita a largura para não esticar muito em telas grandes */
  margin: 0 auto; /* Centraliza o bloco dentro do container */
  padding: 20px; /* Espaçamento interno */
}

@media (max-width: 768px) {
 .centralizado-2 {
    font-size: 16px; /* Reduz o tamanho da fonte em telas pequenas */
    padding: 15px; /* Ajuste no padding para telas menores */
  }
}

@media (max-width: 480px) {
.centralizado-2 {
    font-size: 16px; /* Reduz ainda mais o tamanho da fonte em telas bem pequenas */
    padding: 10px; /* Ajuste adicional no padding */
  }
}







