/* HERO JESÚS AFECTOS */
.afectos-hero {
    background: linear-gradient(135deg, #b02424 0%, #8b1c1c 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.afectos-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.afectos-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.afectos-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* CONTENEDOR DE REFLEXIONES */
.afectos-content {
    background-color: #faf8f5;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.reflections-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* TARJETA DE REFLEXIÓN */
.reflection-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.reflection-card:hover {
    box-shadow: 0 8px 25px rgba(176, 36, 36, 0.2);
}

/* HEADER DE LA REFLEXIÓN (CLICKABLE) */
.reflection-header {
    width: 100%;
    background-color: white;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reflection-header:hover {
    background-color: #fefdfb;
}

.reflection-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    flex: 1;
}

.reflection-number {
    background: linear-gradient(135deg, #b02424 0%, #8b1c1c 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reflection-title {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.reflection-icon {
    font-size: 2rem;
    color: #b02424;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.reflection-card.active .reflection-icon {
    transform: rotate(45deg);
}

/* CONTENIDO DE LA REFLEXIÓN (COLAPSABLE) */
.reflection-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.reflection-card.active .reflection-content {
    max-height: 3500px;
    padding: 0 2rem 2rem 2rem;
}

.reflection-month {
    color: #b02424;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f5f5f5;
}

.reflection-verse {
    background: linear-gradient(to right, #fef9f5 0%, #fff 100%);
    border-left: 4px solid #b02424;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.reflection-verse-ref {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #b02424;
    font-weight: 600;
    font-style: normal;
}

.reflection-commentary {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.commentary-section {
    margin-bottom: 2rem;
}

.commentary-section:last-child {
    margin-bottom: 0;
}

.commentary-section-title {
    color: #b02424;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.commentary-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.commentary-section p:last-child {
    margin-bottom: 0;
}

.reflection-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e4df;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reflection-date {
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN - JESÚS AFECTOS
   ========================================================================== */

/* TABLET - 1024px
   ========================================================================== */
@media (max-width: 1024px) {
    .afectos-hero {
        padding: 3.5rem 2rem;
    }

    .afectos-title {
        font-size: 2.5rem;
    }

    .reflections-container {
        max-width: 800px;
    }

    .reflection-header {
        padding: 1.3rem 1.8rem;
    }
}

/* MÓVIL GRANDE - 768px
   ========================================================================== */
@media (max-width: 768px) {
    .afectos-hero {
        padding: 3rem 1.5rem;
    }

    .afectos-title {
        font-size: 2rem;
    }

    .afectos-subtitle {
        font-size: 1.1rem;
    }

    .afectos-content {
        padding: 3rem 1.5rem;
    }

    .reflection-header {
        padding: 1.2rem 1.5rem;
    }

    .reflection-info {
        gap: 1rem;
    }

    .reflection-number {
        font-size: 1.2rem;
        min-width: 50px;
        height: 50px;
    }

    .reflection-title {
        font-size: 1.1rem;
    }

    .reflection-content {
        padding: 0 1.5rem;
    }

    .reflection-card.active .reflection-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .reflection-verse {
        padding: 1rem;
        font-size: 1rem;
    }

    .reflection-commentary {
        font-size: 1rem;
    }

    .commentary-section-title {
        font-size: 1.1rem;
    }
}

/* MÓVIL PEQUEÑO - 640px
   ========================================================================== */
@media (max-width: 640px) {
    .afectos-hero {
        padding: 2.5rem 1rem;
    }

    .afectos-title {
        font-size: 1.8rem;
    }

    .afectos-subtitle {
        font-size: 1rem;
    }

    .afectos-content {
        padding: 2.5rem 1rem;
    }

    .reflection-header {
        padding: 1rem 1.2rem;
    }

    .reflection-number {
        font-size: 1rem;
        min-width: 45px;
        height: 45px;
    }

    .reflection-title {
        font-size: 1rem;
    }

    .reflection-icon {
        font-size: 1.5rem;
    }

    .reflection-content {
        padding: 0 1.2rem;
    }

    .reflection-card.active .reflection-content {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .reflection-verse {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .reflection-commentary {
        font-size: 0.95rem;
    }

    .commentary-section-title {
        font-size: 1rem;
    }

    .commentary-section p {
        text-align: left;
    }
}
