* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Cambié la fuente a algo más moderno */
    background-color: #e9ecef;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header con gradiente y sombra */
header {
    background: linear-gradient(135deg, #80c1e6, #5aa7d1);
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Bordes redondeados */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Suave transición */
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #f5f5f5;
}

main {
    flex: 1;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    background-color: white;
    padding: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

/* Efecto hover para las secciones */
section:hover {
    transform: translateY(-5px); /* Eleva un poco la sección al pasar el cursor */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 15px;
}

p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8; /* Mejora la legibilidad */
}

/* Botones decorativos en las secciones (opcional) */
button {
    background-color: #80c1e6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5aa7d1;
}

footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
    margin-top: auto;
    font-size: 0.9rem;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); /* Sombra superior */
}
