/* ─── web_historia.css — Página Historia / Nosotros ───────────── */

/* ─── Animaciones scroll ────────────────────────────────────────── */
.anim-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.30s; }

/* ─── FAB — Floating Action Button ────────────────────────────── */
.fab-group {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.fab {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.fab--primary {
    background: #055902;
    color: #fff;
}

.fab--whatsapp {
    background: #25d366;
    color: #fff;
}
