/* Colores clave:
   Fondo: #f7d5d5 (Rosado más intenso)
   Rojo oscuro (Header/Líneas): #922b2b
   Rojo Títulos: #a33232
   Líneas sutiles: #cccccc (Gris claro)
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    /* 1. Fondo principal: ROSADO UNIFORME para toda la página */
    background-color: #f7d5d5; 
    color: #000000; /* Texto principal en NEGRO */
    line-height: 1.6;
    font-size: 15px; 
}

header {
    background-color: #922b2b; 
    color: white; /* Letras del título en BLANCO */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); 
    border-bottom: 3px solid #6a1f1f; 
}

header h1 {
    margin: 0;
    font-size: 2.8em; 
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif; 
}

main {
    max-width: 900px; 
    margin: 20px auto;
    
    /* 2. Fondo del main: EL MISMO ROSADO que el body */
    background-color: #f7d5d5; 
    
    /* Eliminamos cualquier borde blanco */
    border: none; 

    
    /* Padding para crear el espacio rosado alrededor de las secciones */
    padding: 10px; 
}

.card {
    /* 3. Fondo de las secciones: ¡TRANSPARENTE! Para que se vea el fondo ROSADO */
    background-color: transparent; 
    padding: 25px 25px 15px 25px; 
    
    /* Margen entre secciones */
    margin-bottom: 0; 
    margin-top: 0;
    
    /* La línea roja gruesa */
    border-top: 5px solid #a33232; 
    
    border-radius: 0; 
}

.card:not(:first-child) {
    margin-top: 15px; 
}

.card:first-child {
    border-top: none; 
    margin-top: 0; 
    padding-top: 25px;
    padding-bottom: 5px; 
}

h2 {
    color: #a33232; 
    /* Línea divisoria sutil */
    border-bottom: 2px solid #cccccc; 
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.6em; 
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Color del texto principal */
p {
    color: #000000;
    margin-bottom: 15px;
}

/* Estilo de Listas */
ul {
    list-style: none; 
    margin-left: 0;
    padding: 15px;
    color: #000000; 
    
    /* Borde gris sutil */
    border: 1px solid #cccccc; 
    margin-top: 15px;
    background-color: transparent; 
}

li {
    margin-bottom: 8px;
    text-indent: -15px; 
    padding-left: 15px; 
    font-weight: bold;
}

li::before {
    content: "•"; 
    color: #a33232;
    font-weight: bold;
    display: inline-block; 
    width: 15px;
}

/* El resto de estilos se mantiene, asegurando la transparencia */
.content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
    border: 1px solid #cccccc; 
    padding: 10px;
    background-color: transparent; 
}

.content-with-image ul {
    border: none;
    padding: 0;
}

.gnu-logo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    margin-top: -10px; 
    padding: 5px; 
    background-color: transparent; 
    border-radius: 3px; 
}

pre {
    background-color: transparent; /* Fondo gris claro para el código */
    border: 1px solid #cccccc; 
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    color: #000000; 
    line-height: 1.4;
}

strong {
    font-weight: bold;
}

footer {
    background-color: #922b2b; 
    color: white; 
    text-align: right; 
    padding: 15px 20px;
    font-size: 0.85em; 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.4); 
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    color: white; 
}