
/* --- HERO BANNER --- */
.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;
}

/* --- SECCIÓN DE DETALLE: GALERÍA + TEXTO --- */
.tanatologica-detalle {
    padding: 50px 20px 60px 20px;
}

.tanatologica-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.tanatologica-media {
    flex: 1 1 45%;
}

.tanatologica-info {
    flex: 1 1 55%;
    padding-top: 10px;
}

.tanatologica-info h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tanatologica-info p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 15px;
}

.info-box-tanatologica {
    background-color: #f8f9fa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 22px 25px;
    margin-top: 25px;
}

.info-box-tanatologica p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Galería de imágenes (imagen principal + miniaturas clickeables) */
.foto-principal {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.foto-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-miniaturas {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.miniatura {
    flex: 1;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.miniatura.active,
.miniatura:hover {
    border-color: var(--gold-primary);
}

/* --- 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 (max-width: 900px) {
    .tanatologica-layout {
        flex-direction: column;
    }

    .foto-principal {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .servicios-hero h1 {
        font-size: 32px;
    }

    .tanatologica-info h1 {
        font-size: 28px;
    }

    .btn-llamar, .btn-formulario {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
