/* Bonete Lite - Estilos específicos */

/* Variables CSS para Bonete Lite */
:root {
    --bonete-primary: #667eea;
    --bonete-secondary: #764ba2;
    --bonete-success: #28a745;
    --bonete-warning: #ffc107;
    --bonete-danger: #dc3545;
    --bonete-info: #17a2b8;
    --bonete-light: #f8f9fa;
    --bonete-dark: #343a40;
    --bonete-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Elementos de suscripción */
.suscripcion-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.suscripcion-card:hover {
    border-color: var(--bonete-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.suscripcion-card.active {
    border-color: var(--bonete-success);
    background: linear-gradient(to bottom, #d4edda, #f8f9fa);
}

.suscripcion-card.expired {
    border-color: var(--bonete-danger);
    background: linear-gradient(to bottom, #f8d7da, #f8f9fa);
    opacity: 0.8;
}

.suscripcion-header {
    background: var(--bonete-gradient);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.suscripcion-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.suscripcion-subtitle {
    opacity: 0.9;
    margin-top: 0.5rem;
}

.suscripcion-body {
    padding: 2rem;
}

.suscripcion-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--bonete-primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

.price-description {
    color: #6c757d;
    margin-top: 0.5rem;
}

.suscripcion-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.suscripcion-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.suscripcion-features li:last-child {
    border-bottom: none;
}

.suscripcion-features i {
    width: 20px;
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-included i {
    color: var(--bonete-success);
}

.feature-excluded i {
    color: var(--bonete-danger);
}

.feature-premium i {
    color: var(--bonete-warning);
}

/* Botones específicos de Bonete Lite */
.btn-bonete {
    background: var(--bonete-gradient);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-bonete:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-bonete:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: white;
}

.btn-bonete-outline {
    background: transparent;
    border: 2px solid var(--bonete-primary);
    color: var(--bonete-primary);
}

.btn-bonete-outline:hover {
    background: var(--bonete-primary);
    color: white;
}

/* Card Headers con gradientes */
.card-header {
    background: linear-gradient(128deg, #5F76F8 0%, #3754F6 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
}

.card-header-title {
    background: linear-gradient(128deg, #5F76F8 0%, #3754F6 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
}

.card-header-title h3,
.card-header-title h4,
.card-header-title h5,
.card-header-title h6 {
    margin: 0;
    font-weight: 600;
}

/* Gradientes específicos por tipo de card */
.card-success .card-header {
    background: linear-gradient(135deg, #3754F6 0%, #F6343C 100%);
}

.card-primary .card-header {
    background: linear-gradient(128deg, #5F76F8 0%, #3754F6 100%);
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 1020;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.form-label i {
    color: #6c757d;
    margin-right: 0.25rem;
}

/* Progreso de suscripción */
.progress-suscripcion {
    height: 10px;
    border-radius: 10px;
    background: #e9ecef;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-suscripcion .progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-bar-bonete {
    background: var(--bonete-gradient);
}

.progress-bar-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.progress-bar-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Alertas personalizadas */
.alert-bonete {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--bonete-primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--bonete-primary);
}

.alert-bonete .alert-heading {
    color: var(--bonete-primary);
    font-weight: bold;
}

.alert-upgrade {
    border-left-color: var(--bonete-warning);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(253, 126, 20, 0.1));
    color: #856404;
}

.alert-expired {
    border-left-color: var(--bonete-danger);
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    color: #721c24;
}

/* Tarjetas de características */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bonete-primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--bonete-dark);
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Estadísticas de suscripción */
.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badges personalizados */
.badge-bonete {
    background: var(--bonete-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-trial {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.badge-premium {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.badge-expired {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

/* Tema específico para registro Lite */
.registro-lite-bg {
    background: var(--bonete-gradient);
    min-height: 100vh;
}

.registro-lite-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
}

.registro-lite-header {
    background: var(--bonete-gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.registro-lite-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

/* Utilidades específicas */
.text-bonete {
    color: var(--bonete-primary) !important;
}

.bg-bonete {
    background: var(--bonete-gradient) !important;
}

.border-bonete {
    border-color: var(--bonete-primary) !important;
}

.shadow-bonete {
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .suscripcion-body {
        padding: 1rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .btn-bonete {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

.card-info .card-header {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.card-warning .card-header {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}
.d-flex.gap-fix > * + * {
    margin-left: 0.35rem;
}

/* Cards base */
.card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem 1.5rem;
}

.card-footer {
    background: #f8f9fa;
    border: none;
    padding: 1rem 1.5rem;
}

.btn-block {
    width: 100%;
    margin-bottom: 0.5rem;
}

.container-fluid {
    padding: 1rem;
}

/* Form Controls */
.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Botones */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: all 0.15s ease-in-out;
}

.btn-return {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.20rem 0.20rem;
    transition: all 0.15s ease-in-out;
    margin-right: 0.5rem;
    color: #ffffff;
    /* transparente */
}

.btn-return:hover {
    background-color: rgba(255, 255, 255, 0.935);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-outline-light {
    border: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Alerts */
.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #2196f3;
    border-radius: 0.5rem;
    padding: 1.25rem;
    color: #0d47a1;
}
        .evento-card {
            border: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            overflow: hidden;
        }
                .evento-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .evento-header {
            background: linear-gradient(135deg, #5F76F8 0%, #3754F6 100%);
            color: white;
            padding: 1rem;
            border: none;
        }
        .evento-titulo {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .evento-titulo a {
            color: white !important;
            text-decoration: none !important;
        }

        .evento-titulo a:hover {
            text-decoration: underline !important;
        }

        .evento-fecha {
            font-size: 0.85rem;
            opacity: 0.9;
        }
                .badge-estado {
            font-size: 0.75rem;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-weight: 500;
            white-space: nowrap;
        }


 /* Detalles del evento */
        .evento-detalle {
            padding: 0;
        }

        .evento-icono {
            width: 35px !important;
            height: 35px !important;
            background: linear-gradient(135deg, #3754F6 0%, #F6343C 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* Información financiera */
        .evento-financiero {
            background: #f8f9fa;
            margin: 0 -1.25rem;
            padding: 1rem 1.25rem;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .evento-monto {
            padding: 0.5rem 0;
        }

        /* Card de filtros */
        .card-header h5 {
            color: #fff;
            font-weight: 600;
        }
/* Responsive Design */
@media (max-width: 768px) {
    .sticky-top {
        position: relative;
        top: auto;
    }

    .col-lg-4 {
        margin-top: 1rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }

    .card-header {
        padding: 1rem;
    }
    .card-header-title {
        padding: 1rem;
    }

    .card-footer {
        padding: 1rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .alert-info {
        padding: 1rem;
    }

    .alert-info .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .alert-info i {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }

    .btn-group-responsive {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .btn-group-responsive .btn {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .text-lg-right {
        text-align: left !important;
        margin-top: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item strong {
        min-width: auto;
        margin-bottom: 0.25rem;
    }

    .table-responsive {
        font-size: 0.85rem;
    }

    .card-header h3,
    .card-header h4 {
        font-size: 1.1rem;
    }
    .card-header-title h3,
    .card-header-title h4 {
        font-size: 1.1rem;
        font-weight: 500;
    }

            .evento-header {
                padding: 0.75rem;
            }

            .evento-titulo {
                font-size: 0.9rem;
            }

            .evento-fecha {
                font-size: 0.8rem;
            }

            .badge-estado {
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
            }

            .evento-financiero {
                margin: 0 -1rem;
                padding: 0.75rem 1rem;
            }

            .evento-icono {
                width: 30px !important;
                height: 30px !important;
                font-size: 0.8rem !important;
                margin-right: 8px !important;
            }
        }

@media (max-width: 576px) {
    .card-body {
        padding: 1rem 0.75rem;
    }

    .card-header {
        padding: 0.75rem;
    }

    .card-footer {
        padding: 0.75rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .form-control,
    .form-select {
        padding: 0.625rem 0.75rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .alert-info h5 {
        font-size: 1.1rem;
    }

    .dropdown-menu {
        width: 100%;
    }

    .section {
        padding: 1rem !important;
    }

    .info-item strong {
        font-size: 0.9rem;
    }

    .table {
        font-size: 0.8rem;
    }

    .card-header h3,
    .card-header h4 {
        font-size: 1rem;
    }
    .card-header-title h3,
    .card-header-title h4 {
        font-size: 1rem;
        font-weight: 500;
    }

    /* Espaciado vertical en móvil */
    .row.g-3 {
        --bs-gutter-y: 1rem;
    }
                .evento-card {
                margin-bottom: 1rem;
            }
     /* Texto truncado para títulos largos */
        .evento-titulo a {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
                .gap-2 {
            gap: 0.5rem;
        }

}

.invalid-feedback {
    display: block;
}

/* Estilos para los cards de servicios */
.servicio-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.servicio-header {
    background: linear-gradient(45deg, #3754F6 0%, #F6343C 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: between;
    align-items: center;
}

.servicio-body {
    padding: 15px;
}

.input-group-sm .form-control {
    height: 32px;
}

/* Select2 personalizado */
.select2-container--bootstrap4 .select2-selection--single,
.select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
    line-height: 2.25rem !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.5rem !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2.25rem !important;
    padding-left: 1rem !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2.25rem !important;
}

/* select2 siempre el 100% */
.select2-max-width {
    width: 100% !important;
}

/* Estilos para inputs de tiempo */
input[type="time"] {
    cursor: pointer;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
}

input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}


/* Asegurar que los selectores de tiempo tengan el step correcto */
input[type="time"][step="300"] {
    /* Intervalos de 5 minutos */
}

/* Estilos para Select2 de clientes */
.select2-result-repository {
    padding: 5px;
}

.select2-result-repository__title {
    font-weight: 500;
    color: #333;
}

.select2-result-repository__description {
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
}

.select2-container--bootstrap4 .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #007bff;
    color: white;
}

.select2-container--bootstrap4 .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0056b3;
    color: white;
}

/* Elementos editables */
.editable-description {
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    min-height: 20px;
    padding: 5px;
}

.editable-description:hover {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Información responsive */
.card-info {
    margin-bottom: 1rem;
}

.section-title {
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0.25rem 0;
}

.info-item strong {
    min-width: 120px;
    margin-right: 0.5rem;
    color: #495057;
}

/* Botones responsivos */
.btn-group-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.btn-group-responsive .btn {
    flex: 0 0 auto;
    margin-bottom: 0;
}

/* Dropdown mejorado */
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Error messages */
.text-danger {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mejoras de espaciado */
.section {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.table-responsive {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Estados de loading para el botón */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Mejoras en la tipografía */
h4,
h5,
h6 {
    font-weight: 600;
}

/* Iconos con mejor espaciado */
i.fas,
i.far {
    text-align: center;
}

/* Consistencia con AdminLTE */
.content-wrapper {
    background-color: #f4f6f9;
}

/* Estilos específicos para el módulo de Turnos y Agendas */
.turno-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease;
}

.turno-item:hover {
    border-color: #007bff !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.turno-numero {
    color: #3754F6;
    font-weight: 600;
}

.eliminar-turno {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.eliminar-turno:hover {
    opacity: 1;
}

/* Días de la semana en turnos */
.form-check {
    margin-bottom: 0.25rem;
}

.form-check-input:checked {
    background-color: #3754F6;
    border-color: #3754F6;
}

.form-check-label {
    font-weight: 500;
    color: #495057;
    user-select: none;
}

/* Template oculto */
template {
    display: none !important;
}

/* Badge de estado de agenda */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
}

.bg-success {
    background-color: #28a745 !important;
    color: white;
}

.bg-danger {
    background-color: #dc3545 !important;
    color: white;
}

.bg-info {
    background-color: #17a2b8 !important;
    color: white;
}

/* Mejoras para responsive en módulo de turnos */
@media (max-width: 768px) {
    .turno-item .row {
        flex-direction: column;
    }

    .turno-item .col-md-3,
    .turno-item .col-md-6 {
        margin-bottom: 1rem;
    }

    .d-flex.gap-2 {
        flex-wrap: wrap;
    }
}

/* Estilos para el calendario público */
.fc-toolbar {
    margin-bottom: 1rem !important;
}

.fc-button-group {
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.fc-daygrid-day-number {
    color: #495057;
    font-weight: 500;
}

.fc-day-past {
    background-color: #f8f9fa;
    opacity: 0.6;
}

.fc-day-future:hover {
    background-color: rgba(63, 116, 246, 0.05) !important;
}

/* Estilos para modal de reservas */
.modal-reserva .form-label.required::after {
    content: ' *';
    color: #dc3545;
    font-weight: bold;
}

.btn-whatsapp:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

/* Animaciones suaves */
.card, .turno-item, .btn {
    transition: all 0.3s ease;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
