/* ============================================================
   DISEÑO MOBILE FIRST - CENTROS (CENTRED BADGE)
   ============================================================ */

:root {
    --fondo-oasis: #e3f2fd;
    --azul-titulo: #1976d2;
    --azul-filtro: #bbdefb;
    --azul-boton: #2196f3;
    --azul-hover: #1565c0;
    --borde-suave: #e1f5fe;
}

/* --- ESTILOS BASE (MÓVIL) --- */
body {
    background-color: var(--fondo-oasis) !important;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* FIX CRÍTICO HEADER */
.main-content {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

.section-title {
    color: var(--azul-titulo);
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

/* FILTROS */
.filters-container {
    background-color: var(--azul-filtro) !important;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filters-container label {
    color: #1565c0;
}

/* CARDS */
.centro-card-custom {
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid var(--borde-suave) !important;
}

.img-centro-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid #64b5f6;
    padding: 3px;
    background: #fff;
}

.img-centro-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nombre-centro-card {
    color: var(--azul-titulo);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

/* MODIFICACIÓN: Badge centrado */
.badge-tipo {
    display: inline-block;
    font-size: 0.75rem;
    padding: 5px 15px;
    border: 1px solid var(--azul-titulo);
    color: var(--azul-titulo);
    border-radius: 50px;
    font-weight: 700;
    background-color: #f8fbff;
}

.btn-centros-custom {
    background-color: var(--azul-boton) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 700;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* PAGINACIÓN */
.pagination-custom {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pagination-custom .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    color: var(--azul-titulo);
    border: 1px solid var(--azul-filtro);
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--azul-boton);
    border-color: var(--azul-boton);
    color: #fff;
}

/* --- AJUSTES PARA ESCRITORIO (min-width: 768px) --- */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .img-centro-wrapper {
        width: 110px;
        height: 110px;
    }

    .centro-card-custom:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(25, 118, 210, 0.1) !important;
        border-color: var(--azul-boton) !important;
    }

    .btn-centros-custom:hover {
        background-color: var(--azul-hover) !important;
        transform: translateY(-2px);
    }
}