.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: 3rem;
    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;
}

/* 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: #215373;
    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, #3497D5, #2975A4); /* Gradiente de azul escuro para azul claro */
	color: #fff;
    font-size: 18px;
    padding: 12px 20px;
    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: #0FD3BC;
    color: #00FEE1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.9), 
                0 0 40px rgba(0, 255, 153, 0.9);
}
.btn-whatsapp:hover {
    background-color: #0FD3BC;
    color: #00FEE1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(6, 207, 250, 0.4), 
                0 0 40px rgba(6, 207, 250, 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: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.2;
   
    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;
    }
}





/* Modal (janela de imagem ampliada) */
.modal-imagem-custom {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Imagem dentro do modal */
.modal-imagem-custom img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Botão fechar (X) */
.fechar-modal-custom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Botão Ampliar Foto */
.btn-ampliar-foto {
    margin: 10px auto;
    display: block;
    padding: 8px 16px;
    background-color: #444;
    color: white;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.btn-ampliar-foto:hover {
    background-color: #222;
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    .produto-item {
        width: 90%;
    }

    .modal-imagem-custom img {
        max-width: 95%;
    }
}

}






































.persianas-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.conteudo {
    display: flex;
    flex-direction: column; /* Garante que os elementos fiquem um abaixo do outro */
    align-items: center;
}

.persianas-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0px;
}

.linha {
    width: 150px; /* Largura da linha */
    height: 3px; /* Espessura */
    background-color: #00BBFF; /* Cor */
    margin-bottom: 15px; /* Espaço entre a linha e a descrição */
}

.descricao {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    line-height: 1.5;
    margin: 0; /* Remove margens extras */
}

@media (max-width: 600px) {
    .persianas-section h2 {
        font-size: 1.5rem;
    }

    .linha {
        width: 60px; /* Linha menor em telas pequenas */
    }

    .descricao {
        font-size: 1rem;
    }
}
