/* Estilos de iconos para botones - versión móvil y desktop */
/* Utiliza Font Awesome 6 (ya cargado en el proyecto) */

/* Botón principal (ej. "Reserva tu cita") */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* espacio entre icono y texto */
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary::before {
    content: "\f0c0";
    /* icono de usuario/consulta */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Botón secundario (ej. "Más información") */
.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.3rem;
    font-weight: 500;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    transition: background 0.3s ease;
}

.btn-secondary::before {
    content: "\f105";
    /* icono de flecha derecha */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #218838, #1c7430);
}

/* Ajustes responsive para botones en pantallas pequeñas */
@media (max-width: 480px) {

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .btn-primary::before,
    .btn-secondary::before {
        font-size: 1rem;
    }
}

/* -------------------------------------------------
   Contenedor de opciones al reservar cita
   ------------------------------------------------- */
.service-options {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-options.show {
    opacity: 1;
    transform: translateY(0);
}

/* Botones de servicio (Fisioterapia, Pilates) */
.service-btn {
    text-decoration: none;
    border: none;
    cursor: pointer;
}