/* =============================================
   Bloqueos de Disponibilidad - Landing Page
   ============================================= */

/* Días bloqueados en evo-calendar */
.calendar-day.day-blocked {
    background-color: #f1f1f1 !important;
    color: #b0b0b0 !important;
    cursor: not-allowed !important;
    position: relative;
    pointer-events: none;
}

.calendar-day.day-blocked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: #dc3545;
    transform: rotate(-45deg);
    opacity: 0.6;
}

.calendar-day.day-blocked:hover {
    background-color: #e9e9e9 !important;
    transform: none !important;
}

/* Hour cards bloqueadas por bloqueo administrativo */
.hour-card.blocked {
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%) !important;
    border: 1px dashed #fca5a5 !important;
    opacity: 0.85;
}

.hour-card.blocked h4 {
    text-decoration: line-through;
    color: #b91c1c;
}

.hour-card.blocked .btn {
    background-color: #fecaca !important;
    color: #b91c1c !important;
    border: none;
    cursor: not-allowed;
}

.hour-card.blocked .blocked-reason {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
}

.hour-card.blocked .blocked-reason i {
    font-size: 0.7rem;
}

/* Mensaje de día completamente bloqueado */
.day-blocked-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border: 1px solid #fecaca;
    border-radius: 1rem;
    margin: 1rem 0;
}

.day-blocked-message .blocked-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
    display: block;
    animation: pulse-blocked 2s ease infinite;
}

.day-blocked-message h3 {
    color: #991b1b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.day-blocked-message p {
    color: #7f1d1d;
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.85;
}

.day-blocked-message .blocked-motivo {
    background: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 500;
    color: #dc2626;
    border: 1px solid #fecaca;
}

@keyframes pulse-blocked {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}
