/*
 * ESTILO CELESTIAL MINIMALISTA
 * Paleta de colores:
 * #F0F8FF (Alice Blue) - Fondo suave, etéreo.
 * #FFFFFF (Blanco) - Para contenido principal y luces.
 * #336699 (Azul Celeste Oscuro) - Para texto y contraste minimalista.
 * #87CEEB (Sky Blue) - Para detalles sutiles y subrayados.
 */

body {
    /* Fondo que sugiere un cielo nocturno muy claro o nebulosa distante */
    background-color: #F0F8FF; /* Alice Blue */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #336699; /* Azul Celeste Oscuro para el texto */
    margin: 0;
    padding: 0;
}

.celestial-section {
    /* Contenedor central, flotando ligeramente */
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95); /* Blanco ligeramente transparente */
    /* Sutil elevación para efecto celestial */
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.3); /* Sombra suave azul claro */
    border-radius: 15px; /* Bordes redondeados sutiles */
}

.celestial-content {
    /* Flexibilidad básica para el contenido */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- TÍTULOS --- */

.celestial-title {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Fuente con serifa para un toque divino */
    font-size: 2.5em;
    font-weight: 300; /* Ligero, minimalista */
    color: #336699;
    margin-bottom: 10px;
    padding-bottom: 15px;
    position: relative;
    /* Efecto de luz o halo sutil */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(135, 206, 235, 0.4);
}

.celestial-title::after {
    /* Línea divisoria minimalista y celestial */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #87CEEB; /* Sky Blue */
    border-radius: 5px;
}

.celestial-subtitle {
    font-size: 1.6em;
    font-weight: 400;
    color: #336699;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #87CEEB; /* Subrayado fino y etéreo */
    padding-bottom: 5px;
}

/* --- TEXTO Y PÁRRAFOS --- */

.celestial-detail {
    width: 100%;
    max-width: 700px; /* Ancho de lectura cómodo */
    margin-top: 20px;
    line-height: 1.8; /* Espaciado para facilitar la lectura */
    text-align: justify;
}

.celestial-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #336699;
}

.celestial-text.intro {
    font-style: italic;
    font-weight: 500;
    color: #336699;
    margin-bottom: 30px;
}

/* --- MEDIA QUERIES PARA ADAPTACIÓN MÓVIL --- */
@media (max-width: 768px) {
    .celestial-section {
        margin: 30px 15px;
        padding: 20px;
    }
    .celestial-title {
        font-size: 2em;
    }
    .celestial-subtitle {
        font-size: 1.4em;
    }
}