
body {
    background: linear-gradient(135deg, #ffe6f0, #ffd6eb, #ffcce6);
    color: #7a2c56;
    text-align: center;
}

/* HEADER */
header {
    background-color: #ffb6d9;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
     color: white;
    font-size: 38px;
}



/* NAV */
nav {
    background-color: #ff99cc;
    padding: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}


/* SECCIONES */
section {
    width: 80%;
    margin: 40px auto;
    background-color: #fff0f6;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}



section h2 {
    margin-bottom: 15px;
    color: #d63384;
}



.submenu li {
    background-color: #ffd6eb;
    margin: 10px 0;
    padding: 12px;
    border-radius: 15px;

}



.submenu li a {
    text-decoration: none;
    font-weight: bold;
    color: #a61e4d;
}

.descripcion {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    color: #7a2c56;
}

/* FOOTER */
footer {
    background-color: #ff99cc;
    color: white;
    padding: 20px;
    margin-top: 40px;
}