/* ============================================================
   BANDA: banda_tarifas
   Archivo: banda_tarifas.html.twig
   ============================================================ */

.banda_tarifas {
    background-color: #f5f7f8;
}

.banda_tarifas .subtitulo_principal {
    font-size: 1.1rem;
    max-width: 600px;
}

/* --- Titular de área --- */
.banda_tarifas .titular_area {
    font-size: clamp(1.25rem, 3vw, 2.2rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.banda_tarifas .titular_area::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: currentColor; /* ← añade aquí tu color corporativo */
}

/* --- Tarjeta --- */
.banda_tarifas .tarjeta_tarifa {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 71, 187, 0.06);
    transition: all 500ms ease-in-out;
}

.banda_tarifas .tarjeta_tarifa:hover {
    box-shadow:
        0 0 1px #2477fc,
        0 0 2px #2477fc,
        0 0 13px #2477fc,
        inset 0 0 10px rgba(0, 255, 255, 0.05);
}

/* --- Cabecera tarjeta --- */
.banda_tarifas .cabecera_tarjeta {
    text-align: center;
}

/* --- Etiqueta de área --- */
.banda_tarifas .etiqueta_area {
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Nombre tarifa --- */
.banda_tarifas .nombre_tarifa {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

/* --- Precio --- */
.banda_tarifas .precio {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.banda_tarifas .euro {
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.banda_tarifas .periodo {
    font-size: 0.95rem;
    font-weight:700;
    
}

/* --- Descripción tarifa (contenido raw) --- */
.banda_tarifas .descripcion_tarifa {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 10px 0;
}
.banda_tarifas .zona_precio {
    justify-content: center;
}
.banda_tarifas .descripcion_tarifa ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  
}

.banda_tarifas .descripcion_tarifa li {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    padding-left: 1.8rem;
    position: relative;
    color:#333;
}

.banda_tarifas .descripcion_tarifa li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    content: '\f058';
    position: absolute;
    left: 0;
    top: 0.6rem;
    font-size: 1.1rem;
    line-height: 1;
}

/* --- Compensación ancla (sticky header) --- */
.banda_tarifas .compensacion_ancla::before {
    display: block;
    content: " ";
    margin-top: -100px;
    height: 120px;
    visibility: hidden;
}

/* --- Botones de área --- */
.banda_tarifas .zona_areas_botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.banda_tarifas .btn_area {
    background-color: #fff;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.banda_tarifas .btn_area:hover,
.banda_tarifas .btn_area:focus {
    color: #fff;
}