/* Reset básico para consistência */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte moderna e legível; importe do Google Fonts se quiser */
    background: linear-gradient(135deg, #ffe4e1, #ffb6c1); /* Gradiente suave de fundo */
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #ff69b4, #ff1493); /* Gradiente rosa vibrante */
    color: white;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 20px 20px; /* Bordas arredondadas na parte inferior */
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

section {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Animação sutil ao hover */
}

section:hover {
    transform: translateY(-5px); /* Levanta ligeiramente ao passar o mouse */
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff69b4;
    font-size: 1.8rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaçamento uniforme */
}

label {
    font-weight: bold;
    color: #555;
}

input, select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
    outline: none;
}

button {
    padding: 15px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(135deg, #ff1493, #dc143c);
    transform: scale(1.05); /* Cresce ligeiramente */
}

button:active {
    transform: scale(0.98);
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 40px;
    border-radius: 15px 15px 0 0;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    section {
        margin: 20px;
        padding: 20px;
    }
    input, select, button {
        font-size: 0.9rem;
    }
}