:root {
    --text-muted: #555555;
    --bg-sidebar: #f8f9fa;
}


/* --- 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;
}

/* --- DISTRIBUCIÓN DEL LAYOUT MAIN (2 COLUMNAS) --- */
.contenido-servicio {
    padding-top: 60px;
    padding-bottom: 90px;
}

.servicio-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.detalles-principal {
    flex: 1.8;
}

/* Títulos H2 de cada bloque interno */
.detalles-principal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    font-weight: 500;
}

/* Descripción */
.bloque-desc {
    margin-bottom: 45px;
}

.bloque-desc p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Características (Grid Asimétrico de 2 Columnas) */
.bloque-caracteristicas {
    margin-bottom: 50px;
}

.grid-caracteristicas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}

.grid-caracteristicas li {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13.5px;
    color: #444444;
    position: relative;
    padding-left: 26px;
    line-height: 1.4;
}

/* Círculo dorado de la captura */
.grid-caracteristicas li::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--gold-bg-btn);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Proceso (Pasos en lista ordenada) */
.bloque-proceso {
    margin-top: 20px;
}

.lista-proceso {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lista-proceso li {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* El círculo numérico dorado */
.numero-step {
    width: 28px;
    height: 28px;
    background-color: var(--gold-bg-btn);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.lista-proceso li p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    margin: 0;
}

/* --- SIDEBAR LATERAL DE CONTACTO (Fondo Gris Claro) --- */
.sidebar-contacto {
    flex: 1;
}

.caja-sidebar {
    background-color: var(--bg-sidebar);
    border-radius: 8px;
    padding: 40px 30px;
}

.caja-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.horario-texto {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Botones del Sidebar */
.botones-contacto {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e1e4e6;
    padding-bottom: 30px;
}

.btn-sidebar-gold, .btn-sidebar-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.btn-sidebar-gold {
    background-color: var(--gold-bg-btn);
    color: #000000;
    gap: 8px;
}

.btn-sidebar-gold:hover {
    background-color: #cfa34f;
}

.btn-sidebar-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.btn-sidebar-dark:hover {
    background-color: #222222;
}

/* Sección Seguros y Beneficios */
.seguros-section {
    background-color: #f8f6f2;
    padding: 60px 20px;
    margin-top: 60px;
}

.seguros-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    color: #16342c;
    margin-bottom: 12px;
}

.seguros-subtitulo {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #666666;
    margin-bottom: 40px;
}

.seguros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto 30px auto;
}

.seguro-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seguro-imagen-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    border-radius: 8px;
    background-color: #f0ede7;
    border: 1px dashed #c9bfae;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seguro-imagen-placeholder span {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    color: #999999;
    padding: 4px;
}

.seguro-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    color: #16342c;
}

.link-mas-seguros {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
}

.link-mas-seguros:hover {
    color: var(--gold-bg-btn);
}

@media (max-width: 700px) {
    .seguros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 992px) {
    .servicio-layout {
        flex-direction: column;
        gap: 50px;
    }

    .sidebar-contacto {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .grid-caracteristicas {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}