/* =========================================
   INTRODUCCIÓN A PRECIOS (Contenedor restringido)
   ========================================= */
.prices-intro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

.prices-h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

/* =========================================
   CONTENEDORES DE TABLAS Y TARIFAS
   ========================================= */
.table-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

.table-container h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-weight: normal;
    letter-spacing: -0.02em;
    color: var(--color-black);
    text-align: center;
}

/* =========================================
   TABLA HORARIOS (Diseño Zen / Minimalista)
   ========================================= */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.data-table th, .data-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Divisor sutil */
}

.data-table th {
    background-color: transparent;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: normal;
    border-bottom: 1px solid var(--color-black);
}

.col-hora {
    background-color: transparent;
    font-style: italic;
    color: var(--color-black);
    font-weight: 500;
}

/* Badges Tipográficos (Sin fondos sólidos) */
.badge {
    display: inline-block;
    padding: 0.2rem 0;
    font-size: 0.85rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.pilates-aparatos {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}

.pilates-suelo {
    color: rgba(0, 0, 0, 0.6);
}

.ecm {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

/* =========================================
   GRID TARIFAS
   ========================================= */
.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tarifa-card h3 {
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    font-size: 1.25rem;
}

.tarifa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarifa-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tarifa-servicio {
    flex: 1;
    padding-right: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.tarifa-precio {
    white-space: nowrap;
    font-weight: 500;
}

/* =========================================
   VISTA RESPONSIVA HORARIOS
   ========================================= */
.mobile-schedule {
    display: none;
}

@media (max-width: 768px) {
    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .day-card {
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--color-white);
    }

    .day-title {
        background-color: var(--color-black);
        color: var(--color-white);
        margin: 0;
        padding: 1rem;
        text-align: center;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: normal;
    }

    .day-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .day-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .day-list li:last-child {
        border-bottom: none;
    }

    .day-list .time {
        font-weight: 500;
        color: var(--color-black);
        font-size: 0.95rem;
    }

    .tarifa-card:first-child h3 {
        margin-top: 0;
    }
}
