.horarios-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.horario-bloque {
    flex: 1;
    min-width: 250px;
}

.horario-bloque h3 {
    color: var(--skilly-green);
    margin-bottom: 0.5rem;
}

.horario-bloque ul {
    padding-left: 1.5rem;
    margin: 0;
}



.horario-aviso {
    width: 50%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.horario-aviso h3 {
    margin-bottom: 0.5rem;
    color: var(--skilly-green);
}

.horario-aviso ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.horario-aviso details {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--skilly-green);
}

.horario-aviso summary {
    font-weight: bold;
    cursor: pointer;
    color: var(--skilly-green);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.horario-aviso summary:hover {
    text-decoration: underline;
}

.horario-aviso p {
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem 0;
}


.reserva-planes {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin: 3rem auto;
    width: 90%;
    flex-wrap: wrap;
}

.plan-card {
    margin-top: 1rem;
    background-color: #ffffff;
    color: #222;
    width: 280px;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

/* Badge POPULAR */
.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--skilly-green);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(122, 201, 67, 0.5);
    letter-spacing: 0.3px;
    z-index: 2;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 18px rgba(122, 201, 67, 0.45);
    }

    50% {
        transform: translateX(-50%) scale(1.06);
        box-shadow: 0 10px 28px rgba(122, 201, 67, 0.65);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 18px rgba(122, 201, 67, 0.45);
    }
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 2px rgba(122, 201, 67, 0.35),
        0 16px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.destacado {
    border: 2px solid var(--skilly-green);
    transform: scale(1.05);
}

.plan-card h3 {
    margin-bottom: 1rem;
}

.plan-includes {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    font-size: 0.85rem;
    color: #555;
}

.plan-includes li {
    margin-bottom: 0.3rem;
}

.btn-detalles {
    background: transparent;
    border: 1px solid var(--skilly-green);
    color: var(--skilly-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    width: 40%;
}

.precio span {
    font-size: 2.5rem;
    color: var(--skilly-green);
}

/* Reutilizamos estilo de precios normales */
.precio-slider {
    margin: 1.5rem 0 1.5rem;
}

/* Número grande (igual que otras cards) */
.precio-slider .precio-num {
    font-size: 2.5rem;
    color: var(--skilly-green);

}

/* Texto € / */
.precio-slider .precio-unidad {
    font-size: 1rem;
    color: #666;
    margin-left: 0.2rem;
}

/* Horas */
.precio-slider .precio-horas {
    font-size: 1rem;
    color: #666;
    margin-left: 0.2rem;
}



.detalle {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.btn-reservar-plan {
    display: inline-block;
    background-color: var(--skilly-green);
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
}

.btn-reservar-plan:hover {
    filter: brightness(0.95);
    transform: scale(1.03);
}

.slider-box {
    margin: 1rem 0;
}

.slider-box input {
    width: 100%;
}

/* Input horas */
.slider-box input[type="number"] {
    width: 50%;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
}

.slider-box input[type="number"]:focus {
    outline: none;
    border-color: var(--skilly-green);
    box-shadow: 0 0 0 2px rgba(122, 201, 67, 0.25);
}

.slider-box .hint {
    font-size: 0.75rem;
    color: #777;
    font-weight: normal;
}

.precio-slider {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.reserva-extra {
    text-align: center;
    margin: 4rem auto 2rem;
}

.reserva-extra p {
    margin-bottom: 1.5rem;
}

.price-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    width: 50%;
    margin: 1rem auto 0;
    border-radius: 6px;
    line-height: 1.4;
    background-color: rgba(255, 0, 0, 0.06);
    padding: 0.8rem 1rem;
}

.clases-extra {
    width: 70%;
    margin: 3rem auto 5rem;
}

/* CONTENEDOR */
.extra-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* CARD */
.extra-card {
    width: 200px;
    height: 150px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    color: #222;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 2px rgba(122, 201, 67, 0.35),
        0 16px 40px rgba(0, 0, 0, 0.12);
}

/* TEXTO HORAS */
.extra-time {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* BOTÓN */
.extra-btn {
    font-size: 0.75rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background-color: var(--skilly-green);
    color: #000;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.faq-section {
    width: 70%;
    margin: 3rem auto 5rem;
}

.faq-section details {
    background-color: #fafafa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid transparent;
    margin-bottom: 2px;
}



.faq-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Desactivamos las pseudo-líneas del sectionTitle */
.faq-title .sectionTitle::before,
.faq-title .sectionTitle::after {
    content: none;
}

/* Creamos líneas limpias y controladas */
.faq-title::before,
.faq-title::after {
    content: "";
    flex: 1;
    height: 3px;
    background-color: var(--skilly-green);
    opacity: 0.6;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .badge-popular {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
        top: -12px;
        animation: none;
        /* sin animación en móvil */
    }

    .price-disclaimer {
        width: 90%;
        font-size: 0.8rem;
    }

    .clases-extra {
        width: 90%;
        padding: 1.5rem;
    }
}