/* Smooth scroll para toda la página */
html {
    scroll-behavior: smooth;
}

/* ============================================
   BOTÓN FLOTANTE DE LLAMADA
   ============================================ */

.call-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.call-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Notificación de llamada para desktop */
.call-notification {
    position: fixed;
    bottom: 160px;
    right: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 0 3px #3b82f6;
    z-index: 1000;
    min-width: 280px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.call-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.call-notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.call-notification-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-notification-icon svg {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.call-notification-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #3b82f6;
    margin: 0;
    letter-spacing: 0.5px;
}

.call-notification-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #212529;
    margin: 8px 0;
    letter-spacing: 1px;
}

.call-notification-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 4px;
}

.call-notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    padding: 0;
}

.call-notification-close:hover {
    background: #f8f9fa;
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .call-float {
        width: 56px;
        height: 56px;
        bottom: 80px;
        right: 16px;
    }

    .call-icon {
        width: 26px;
        height: 26px;
    }

    .call-notification {
        right: 16px;
        bottom: 145px;
        min-width: auto;
        max-width: calc(100vw - 32px);
    }
}