/* style.css - Diseño para personas mayores */
body {
    font-family: Arial, Helvetica, sans-serif; /* Fuente clara y sin adornos */
    background-color: #0a1030; /* Azul oscuro espacial */
    color: #ffffff; /* Texto blanco para alto contraste */
    margin: 0;
    padding: 20px;
    font-size: 18px; /* Tamaño base grande */
    line-height: 1.6;
}

/* Contenedor principal */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a1f3a; /* Fondo ligeramente más claro */
    padding: 30px;
    border-radius: 25px; /* Bordes redondeados */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Títulos */
h1 {
    font-size: 48px; /* Título enorme */
    text-align: center;
    color: #ffd966; /* Amarillo estelar */
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px #000000;
}

h2 {
    font-size: 32px;
    color: #ffb347; /* Naranja cálido */
    margin: 20px 0 10px 0;
    text-align: center;
}

/* Imagen */
img {
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    border: 4px solid #ffd966;
    max-width: 90%; /* Adaptable pero no demasiado grande */
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Texto explicativo */
p {
    font-size: 22px; /* Texto grande */
    text-align: justify;
    padding: 0 20px;
    background-color: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

/* Botones grandes */
.boton {
    display: inline-block;
    background-color: #ffb347;
    color: #0a1030;
    font-size: 28px; /* Botones enormes */
    font-weight: bold;
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 60px; /* Muy redondeados */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.boton:hover {
    background-color: #ffa01e;
    transform: scale(1.05); /* Efecto suave al pasar el ratón */
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.boton:active {
    transform: scale(0.95);
}

/* Contenedor de botones */
.navegacion {
    text-align: center;
    margin: 30px 0;
}

/* Pie de página */
.fecha {
    text-align: center;
    color: #aaccff;
    font-size: 20px;
    margin-top: 20px;
    font-style: italic;
}
/* CABECERA DEL SITIO - El Cielo en tu Mano */
.cabecera-sitio {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 15px 15px 15px;
    background: linear-gradient(145deg, #0f1a2f, #0a1025);
    border-radius: 50px;
    border-bottom: 3px solid #ffd966;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.titulo-sitio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icono-celeste {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.nombre-sitio {
    font-size: 52px;
    margin: 0;
    background: linear-gradient(135deg, #ffd966, #ffaa33);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    letter-spacing: 2px;
    font-weight: bold;
}

.lema-sitio {
    font-size: 24px;
    color: #cce4ff;
    margin: 12px 0 5px 0;
    background: none;
    padding: 0;
    text-align: center;
    font-style: italic;
    border-top: 1px dashed rgba(255,217,102,0.5);
    display: inline-block;
    padding-top: 8px;
}

/* Ajuste responsive para móviles */
@media (max-width: 768px) {
    .nombre-sitio {
        font-size: 36px;
    }
    .icono-celeste {
        font-size: 32px;
    }
    .lema-sitio {
        font-size: 18px;
    }
}