/* Circular Floating Button — style.css v1.1.0 */

#cfb-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

/* ── Posición Vertical ──────────────────────────── */
#cfb-container.cfb-top    { top: 30px; }
#cfb-container.cfb-middle { top: 50%; transform: translateY(-50%); }
#cfb-container.cfb-bottom { bottom: 30px; }

/* ── Posición Horizontal ────────────────────────── */
#cfb-container.cfb-left   { left: 30px; }
#cfb-container.cfb-center { left: 50%; transform: translateX(-50%); }
#cfb-container.cfb-right  { right: 30px; }

/* Combinación medio-centro */
#cfb-container.cfb-middle.cfb-center {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Botón ──────────────────────────────────────── */
.cfb-button {
    position: relative;
    /* width/height se aplican inline desde PHP */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: all;
    cursor: pointer;
    border: none;
    overflow: visible;
}

.cfb-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
}

/* ── Ícono ──────────────────────────────────────── */
.cfb-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 36px;
    pointer-events: none;
}

.cfb-icon i    { display: block; }
.cfb-icon img  { width: 50px; height: 50px; object-fit: contain; }

/* ── Texto circular SVG ─────────────────────────── */
.cfb-circular-text {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    animation: cfb-rotate 10s linear infinite;
    pointer-events: none;
    overflow: visible;
}

.cfb-circular-text text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes cfb-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Pulse opcional ─────────────────────────────── */
@keyframes cfb-pulse {
    0%   { box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
    50%  { box-shadow: 0 8px 40px rgba(255,107,53,0.6); }
    100% { box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
}
.cfb-button.cfb-pulse { animation: cfb-pulse 2s infinite; }

/* ── Preview en admin (anula position:fixed) ────── */
.cfb-preview-container #cfb-container,
.cfb-preview-container #cfb-container-preview {
    position: relative !important;
    top: auto !important; bottom: auto !important;
    left: auto !important; right: auto !important;
    transform: none !important;
}
