


/* Produtos Section */
.produtos-detalhados {
    text-align: center;
    padding: 30px 20px;
}

.produtos-detalhados h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.produtos-detalhados p {
    font-size: 16px;
    margin-bottom: 30px;
}

.produtos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajuste para telas dinâmicas */
    gap: 20px;
    justify-items: center;
}

.produto-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.produto-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.produto-item img {
    width: 100%;
    height: 200px; /* Define a altura fixa */
    object-fit: cover; /* Garante que a imagem seja recortada sem distorcer */
    border-radius: 8px;
    margin-bottom: 15px;
}

.produto-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #162447;
}

.produto-item p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.produto-item .btn {
    text-decoration: none;
    background-color: #162447;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.produto-item .btn:hover {
    background-color: #1f4068;
}




.whatsapp-link img {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-link img:hover {
    transform: scale(1.1);
}

/* Estilos para o Modal */
.modal {
    display: none; /* Inicialmente escondido */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    margin: auto;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
