/*body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f0ff; /* Fundo lilás claro 
}*/

.image-container {
    width: 50px; /* Largura da imagem */
    height: 50px; /* Altura da imagem */
    border-radius: 50%; /* Tornar a borda circular */
    overflow: hidden; /* Esconder áreas fora do círculo */
    border: 3px solid #fff; /* Borda em roxo */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Fundo branco para contraste */
}



.image-card {
    width: 100px; /* Largura da imagem */
    height: 100px; /* Altura da imagem */
    border-radius: 50%; /* Tornar a borda circular */
    overflow: hidden; /* Esconder áreas fora do círculo */
    border: 3px solid #fff; /* Borda em roxo */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Fundo branco para contraste */
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta a imagem ao círculo */
}


.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

.card p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.form-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.form-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.extra-info {
    margin-top: 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.extra-info.open {
    max-height: 200px; /* Ajuste baseado no conteúdo */
    opacity: 1;
}

label {
    display: block;
    padding: 0 0 0 0;
    font-weight: bold;
}


 select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.formulario {
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(60, 14, 198, 0.1);

}

.compri{
    width: 98%;
}
