:root {
    --text-muted: #555555;
}

/* ==========================================================================
   Estilos específicos para la sección Capillas Ardientes
   ========================================================================== */

/* --- HERO BANNER GENERAL --- */
.servicios-hero {
    background-color: var(--bg-dark);
    padding: 75px 20px;
    text-align: center;
    color: var(--white);
}

.servicios-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

.servicios-hero .hero-subtitle {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #cccccc;
}

/* --- SUBMENÚ DE SERVICIOS (MINI MENÚ DE CÁPSULA) --- */
/* --- FILAS DE MODELOS (Distribución 50% / 50%) --- */
.modelos-capillas {
    padding-top: 15px;
    padding-bottom: 50px;
}

.modelo-row {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.modelo-row::after {
    content: "";
    display: table;
    clear: both;
}

/* Columna de Texto */
.modelo-card-info {
    width: 50%;
    float: left;
    padding: 50px 45px;
    box-sizing: border-box;
}

.icon-gold {
    margin-bottom: 20px;
}

.modelo-card-info h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 21px;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

.modelo-card-info p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}

/* Columna de Imagen */
.modelo-image-placeholder {
    width: 50%;
    float: left;
    height: 320px;
    background-color: #dddddd; /* Indicador gris base */
    box-sizing: border-box;
    position: relative;
}

.img-fluid-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- CTA: AYUDA INMEDIATA --- */
.ayuda-inmediata-section {
    padding: 20px 20px 80px 20px;
}

.ayuda-box {
    background-color: #030303;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}

.ayuda-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 0 0 15px 0;
}

.ayuda-box p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14.5px;
    color: #cccccc;
    margin-bottom: 30px;
}

.btn-llamar, .btn-formulario {
    display: inline-block;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 13px 28px;
    margin: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-llamar {
    background-color: var(--gold-bg-btn);
    color: #000000;
}

.btn-formulario {
    background-color: transparent;
    color: var(--white);
    border: 1px solid #444444;
}

.btn-formulario:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   MEDIA QUERIES (Responsividad)
   ========================================================================== */

@media (max-width: 992px) {
    .modelo-card-info {
        width: 100%;
        float: none;
        padding: 35px 30px;
    }
    
    .modelo-image-placeholder {
        width: 100%;
        float: none;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .servicios-hero h1 {
        font-size: 32px;
    }

            .btn-llamar, .btn-formulario {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}