/* Importar Roboto desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Estilos del header */
header {
    background: linear-gradient(to right, #0C0118, #3F057E, #B40FE7);
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;
}

/* Espacio para el logo */
.logo {
    width: 150px;
    height: 50px;
    margin-right: 2rem;
}

.logo-img {
    width: 100%;
    height: 100%;
}

/* Estilos de la navegación */
nav {
    flex-grow: 1;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #e1bee7;
    transition: color 0.3s ease;
} 

/* Estilos del contenido principal */
.content {
    background-color: #dbb6e0;  /* Morado muy claro */
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Para asegurar que el contenido tenga un buen contraste */
.content h1, .content h2, .content h3 {
    color: #3F057E;  /* Morado oscuro para títulos */
}

.content p {
    color: #333;  /* Color oscuro para mejor legibilidad del texto */
    line-height: 1.6;
} 

/* Estilos adicionales para el contenido */
.content section {
    margin-bottom: 2rem;
}

.content h1 {
    color: #3F057E;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content h2 {
    color: #3F057E;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.content h3 {
    color: #7b1fa2;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

/* Estilos para listas */
.content ul, .content ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Estilos para elementos específicos */
.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Estilos para texto en negrita */
.content strong {
    color: #4a148c;
}

/* Estilos para subsecciones numeradas */
.subsection {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
} 

footer {
    background-color: #0C0118;
    color: white;
    padding: 1rem;
    text-align: center;
}


