.btn-login-white {
    background-color: #ffffff;
    color: #0d6efd;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fc;
    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('/assets/images/texture-light.svg');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    opacity: 0.06; /* controla la opacidad aquí */
    z-index: -1;
}


.btn-login-white:hover,
.btn-login-white:focus {
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
    color: #0a58ca; /* azul más intenso en hover */
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

.bounce-button {
    animation: bounce 2s infinite;
}

.subscription-card {
    width: 250px;
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    color: inherit;
    background-color: var(--card-bg);
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscription-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: inherit;
    opacity: 0.9;
    z-index: 0;
    border-radius: 1rem;
}

.subscription-card * {
    position: relative;
    z-index: 1;
}

.subscription-card:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.subscription-card .btn {
    font-weight: bold;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.8);
    color: #000;
    transition: background-color 0.2s ease;
}

.subscription-card .btn:hover {
    background-color: rgba(255,255,255,1);
}

.blurred {
    position: relative;
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease-in-out;
}

.blurred::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.65);
}

 #calendar {
     background-color: white;
     border-radius: 8px;
     box-shadow: 0 0 10px rgba(0,0,0,0.05);
     padding: 1rem;
     font-family: "Segoe UI", Roboto, sans-serif;
 }

/* Modal sobrio */
/* Estilo más serio y profesional para cabecera del modal */
#calendarModal .modal-header {
    background-color: #212529 !important; /* fondo gris oscuro */
    color: #fff !important;
    border-bottom: none;
    border-radius: 1px 1px 0 0;
}

#calendarModal .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
}

#calendarModal .btn-close {
    filter: brightness(0) invert(1); /* icono blanco */
}

#calendarModal .modal-content {
    border-radius: 1rem;
    border: none;
    background-color: #f8f9fc;
}

/* Botones de selección de hora */
.btn-agendar {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    color: #212529;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.btn-agendar:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

/* Si están deshabilitados (ocupados) */
.btn-agendar.disabled,
.btn-agendar:disabled {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
    opacity: 1;
}

/* Separación de bloques */
#calendarModal .modal-body .row > div {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

/* Estilo para los botones del header */
.fc .fc-button {
    background-color: #0d6efd; /* Bootstrap primary */
    border-color: #0d6efd;
    color: white;
    font-weight: 500;
}

.fc .fc-button:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.fc .fc-button:disabled {
    opacity: 0.5;
}

/* Títulos de los días */
.fc .fc-col-header-cell-cushion {
    font-weight: 600;
    color: #333;
}

/* Estilo de los eventos */
.fc-event {
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85rem;
}

.fc-event-title {
    font-weight: 500;
}

.fc-toolbar-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #212529;
}

.fc-day-today {
    background-color: #e9f5ff !important;
}

/* Quitar apariencia de enlace en los días del calendario */
.fc-daygrid-day-number {
    color: #212529 !important; /* color neutro (gris oscuro) */
    text-decoration: none !important;
    font-weight: 500;
}

/* Cambiar el cursor al pasar sobre un día */
.fc-daygrid-day:hover {
    cursor: pointer;
    background-color: rgba(13, 110, 253, 0.05); /* azul suave de fondo al pasar */
    transition: background-color 0.2s ease;
}


.dropdown-menu {
    border-radius: .75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.dropdown-item {
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar .dropdown-toggle.btn {
    background-color: #fdfdfd;
    font-weight: 500;
}

.navbar .dropdown-toggle .bi {
    font-size: 1rem;
}

#newsletter-popup.minimized {
    width: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

#newsletter-popup.minimized #newsletter-content {
    display: none;
}

#newsletter-popup.minimized #newsletter-toggle {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 8px 14px;
    font-size: 14px;
    color: #343a40;
    width: auto;
    min-width: 180px;
    margin: 0 auto;
    display: block;
}

#newsletter-popup #newsletter-toggle:hover {
    background-color: #f8f9fa;
    color: #212529;
    cursor: pointer;
}
