﻿/* =========================================================
   RESET BÁSICO
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.65;
}


/* =========================================================
   COLORES LITÚRGICOS
   ========================================================= */
.color-adviento,
.color-cuaresma           { --liturgical-color: #5A2A83; }
.color-navidad,
.color-pascua             { --liturgical-color: #D4AF37; }
.color-tiempo-ordinario   { --liturgical-color: #2E7D32; }

.color-martirio,
.color-apostoles          { --liturgical-color: #B71C1C; }
.color-santos             { --liturgical-color: #D4AF37; }
.color-espiritu-santo     { --liturgical-color: #D32F2F; }

.color-marianas           { --liturgical-color: #1E3A8A; }
.color-gaudete,
.color-laetare            { --liturgical-color: #C2185B; }

.color-difuntos           { --liturgical-color: #3A3A3A; }


/* =========================================================
   CONTENIDO GENERAL
   ========================================================= */
main {
    max-width: 1100px;
    margin: 10px auto;
    padding: 0 35px;
}

h2 {
    font-size: 2rem;
    margin: 30px 0 0;
    color: #42214b;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #5A2A83;
}

p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: justify;
}

.cita-estilizada {
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.65;
    text-align: justify;
    border-left: 50px solid #5A2A83;
    padding-left: 15px;
    margin: 40px 0;
    color: #5A2A83;
    font-style: italic;
}

.palabra-inicial {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5A2A83;
}


/* =========================================================
   ESTACIONES
   ========================================================= */
.estacion {
    background: #e2d8e4;
    border-radius: 12px;
    padding: 20px 60px;
    margin: 30px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.estacion h2 {
    margin-top: 0;
}

.estacion h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

.estacion p {
    font-size: 1.3rem;
    line-height: 1.65;
}


/* =========================================================
   IMAGEN + TEXTO
   ========================================================= */
.estacion-media {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin: 1.2rem 0;
}

.estacion-media img {
    width: 200px;
    height: auto;
    margin: auto 0 0 0;
    /*border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);*/
    flex-shrink: 0;
}

.estacion-texto p:first-child {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {

    main {
        padding: 0 18px;
    }

    .estacion {
        padding: 20px;
    }

    .estacion-media {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .estacion-media img {
        width: 70%;
        max-width: 260px;
    }
}
