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

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

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

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

/* CONTENEDOR DE CAPÍTULOS */
.pastoral-content {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

/* TARJETA DE CAPÍTULO */
.chapter-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;
}

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

/* HEADER DEL CAPÍTULO (CLICKABLE) */
.chapter-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;
}

.chapter-header:hover {
    background-color: #fafafa;
}

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

.chapter-icon-custom {
    font-size: 2rem;
    color: #b02424;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/* CONTENIDO DEL CAPÍTULO (COLAPSABLE) */
.chapter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

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

.chapter-author {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f5f5f5;
}

.chapter-prayer {
    background-color: #fef9f5;
    border-left: 4px solid #b02424;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

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

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

.chapter-text p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.chapter-text p:last-child {
    margin-bottom: 0;
}

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

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

/* ESTILOS ESPECÍFICOS PARA SANTOS POBRES */
.saint-subtitle {
    color: #b02424;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f5f5f5;
}

.saint-image-container {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
}

.saint-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.saint-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(176, 36, 36, 0.2);
}

.chapter-number {
    background-color: #b02424;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN - PASTORAL VOCACIONAL
   ========================================================================== */

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

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

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

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

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

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

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

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

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

    .chapter-info {
        gap: 1rem;
    }

    .chapter-icon-custom {
        font-size: 1.5rem;
        min-width: 40px;
    }

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

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

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

    .chapter-prayer {
        padding: 1rem;
        font-size: 1rem;
    }

    .chapter-text {
        font-size: 1rem;
    }

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

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

    .saint-image-container {
        max-width: 350px;
    }
}

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

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

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

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

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

    .chapter-icon-custom {
        font-size: 1.3rem;
        min-width: 35px;
    }

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

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

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

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

    .chapter-prayer {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .chapter-text {
        font-size: 0.95rem;
    }

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

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

    .saint-image-container {
        max-width: 300px;
        margin: 1.5rem auto;
    }

    .chapter-number {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        min-width: 50px;
    }
}