/* ════════════════════════════��══════════════
   AGENDAR STANDALONE — Extra Styles
   (inherits from styles.css shared components)
   ═══════════════════════════════════════════ */

/* Embedded mode (iframe): hide close/cancel, center confirm */
body.embedded #btn-back,
body.embedded #agendar-btn-cancel {
    display: none !important;
}

body.embedded footer .flex {
    justify-content: center;
}

/* Floating CTA button in main calculator */
.fab-agendar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #b023ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(176, 36, 255, 0.40),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 90;
    animation: fabPulse 3s ease-in-out infinite;
    border: none;
    cursor: pointer;
}

.fab-agendar:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow:
        0 12px 40px rgba(176, 36, 255, 0.50),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.fab-agendar:active {
    transform: scale(0.95);
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(176, 36, 255, 0.40), 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(176, 36, 255, 0.60), 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(176, 36, 255, 0.08);
    }
}

/* Mobile: above the floating total bar */
@media (max-width: 1023px) {
    .fab-agendar {
        bottom: 76px;
        right: 16px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
}
