/* ══════════════════════════════════════════════════
   sobre.css — estilos da página Sobre do FreeLab
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --purple:       #8b5cf6;
    --purple-mid:   #7c3aed;
    --purple-dark:  #6d28d9;
    --purple-light: #a78bfa;
    --blue:         #3b82f6;
    --text:         #0f172a;
    --text-muted:   #475569;
    --text-light:   #94a3b8;
    --border:       #e2e8f0;
    --bg:           #ffffff;
    --bg-soft:      #f8fafc;
    --bg-purple:    #f5f3ff;
    --radius-lg:    16px;
    --radius-xl:    24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.fl-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: 64px;
    background: rgba(8,12,20,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 48px);
    gap: 16px;
    transition: background .3s, border-color .3s;
}
.fl-nav.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--border);
}

.fl-nav-logo img { height: 30px; width: auto; }
.fl-nav-logo .fl-logo-dark  { display: block; }
.fl-nav-logo .fl-logo-light { display: none;  }
.fl-nav.scrolled .fl-nav-logo .fl-logo-dark  { display: none;  }
.fl-nav.scrolled .fl-nav-logo .fl-logo-light { display: block; }

.fl-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.fl-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    padding: 7px 13px;
    border-radius: 8px;
    transition: color .15s, background .15s;
    white-space: nowrap;
}
.fl-nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.fl-nav-links a.active { color: #c4b5fd; font-weight: 600; }
.fl-nav.scrolled .fl-nav-links a { color: var(--text-muted); }
.fl-nav.scrolled .fl-nav-links a:hover { color: var(--text); background: var(--bg-soft); }
.fl-nav.scrolled .fl-nav-links a.active { color: var(--purple); }

.fl-nav-cta {
    background: var(--purple) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    transition: background .15s, transform .1s, box-shadow .15s !important;
    box-shadow: 0 0 16px rgba(124,58,237,.35) !important;
}
.fl-nav-cta:hover {
    background: var(--purple-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 0 24px rgba(124,58,237,.5) !important;
}
.fl-nav.scrolled .fl-nav-cta { box-shadow: none !important; }

.fl-nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.75);
    padding: 6px;
    border-radius: 6px;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.fl-nav-burger:hover { background: rgba(255,255,255,.06); color: #fff; }
.fl-nav.scrolled .fl-nav-burger { color: var(--text); }
.fl-nav.scrolled .fl-nav-burger:hover { background: var(--bg-soft); }

/* mobile nav drawer */
.fl-nav-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #0c1120;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.fl-nav-drawer.open { display: flex; }
.fl-nav-drawer a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    padding: 10px 12px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.fl-nav-drawer a:hover { background: rgba(255,255,255,.06); color: #fff; }
.fl-nav-drawer a.active { color: #c4b5fd; font-weight: 600; }
.fl-nav-drawer .fl-nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px !important;
}

/* ─────────────────────────────────────────
   HERO  (dark immersive)
───────────────────────────────────────── */
.fl-hero {
    position: relative;
    overflow: hidden;
    background: #080c14;
    padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 60px) clamp(80px, 10vw, 120px);
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
}

/* Ambient orbs */
.fl-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}
.fl-hero-orb--1 {
    width: 700px; height: 700px;
    top: -200px; left: -150px;
    background: radial-gradient(circle, rgba(124,58,237,.28) 0%, transparent 70%);
}
.fl-hero-orb--2 {
    width: 600px; height: 600px;
    bottom: -100px; right: -100px;
    background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 70%);
}
.fl-hero-orb--3 {
    width: 400px; height: 400px;
    top: 40%; left: 40%;
    background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%);
}

/* Dot grid texture */
.fl-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Two-column layout */
.fl-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
}

/* ── Copy column ── */
.fl-hero-copy { display: flex; flex-direction: column; gap: 0; }

.fl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,92,246,.12);
    color: #c4b5fd;
    border: 1px solid rgba(139,92,246,.28);
    border-radius: 999px;
    padding: 6px 16px 6px 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 28px;
    width: fit-content;
}

.fl-hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #a78bfa;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.75); }
}

.fl-hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
    color: #fff;
    margin-bottom: 24px;
}

.fl-hero h1 .grad {
    background: linear-gradient(110deg, #a78bfa 0%, #60a5fa 50%, #a78bfa 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grad-shift 4s ease-in-out infinite;
}
@keyframes grad-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fl-hero-sub {
    font-size: clamp(.9375rem, 1.8vw, 1.125rem);
    color: rgba(255,255,255,.55);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.fl-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .12s, box-shadow .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); }

.btn-glow {
    box-shadow: 0 0 24px rgba(124,58,237,.45), 0 4px 16px rgba(124,58,237,.25);
}
.btn-glow:hover {
    box-shadow: 0 0 36px rgba(124,58,237,.6), 0 6px 24px rgba(124,58,237,.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .12s;
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

/* ── Stats row ── */
.fl-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fl-stat-chip { display: flex; align-items: baseline; gap: 6px; }
.fl-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
}
.fl-stat-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.42);
}
.fl-stat-divider {
    width: 1px; height: 24px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* ── Visual column ── */
.fl-hero-visual {
    position: relative;
    height: 420px;
}

/* Main dashboard card */
.fl-hv-main {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: #0f1623;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
}
.fl-hv-header {
    height: 40px;
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}
.fl-hv-logo { width: 72px; height: 14px; background: rgba(255,255,255,.18); border-radius: 3px; }
.fl-hv-dots-row { display: flex; gap: 5px; }
.fl-hv-dots-row span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.12); }

.fl-hv-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.fl-hv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

.fl-hv-card {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.06);
}
.fl-hv-card--purple { background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(124,58,237,.05)); }
.fl-hv-card--blue   { background: linear-gradient(135deg, rgba(37,99,235,.2),  rgba(37,99,235,.05)); }
.fl-hv-card--green  { background: linear-gradient(135deg, rgba(5,150,105,.2),  rgba(5,150,105,.05)); }
.fl-hv-card-label { height: 10px; border-radius: 3px; background: rgba(255,255,255,.2); }
.fl-hv-card-sub { height: 8px; width: 70%; border-radius: 3px; background: rgba(255,255,255,.1); }
.fl-hv-progress { height: 4px; border-radius: 2px; background: rgba(255,255,255,.07); overflow: hidden; }
.fl-hv-progress div { height: 100%; border-radius: 2px; background: rgba(139,92,246,.7); }
.fl-hv-card--blue .fl-hv-progress div { background: rgba(59,130,246,.7); }
.fl-hv-card--green .fl-hv-progress div { background: rgba(16,185,129,.7); }

.fl-hv-row { height: 10px; border-radius: 4px; background: rgba(255,255,255,.06); }
.fl-hv-row--sm { width: 65%; height: 10px; }

/* Floating cards */
.fl-hv-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,22,35,.9);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    white-space: nowrap;
    animation: float-bob 3s ease-in-out infinite;
}
@keyframes float-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.fl-hv-float--cert { bottom: 30px; left: -20px; animation-delay: 0s; }
.fl-hv-float--users { top: -16px; right: -16px; animation-delay: 1s; }
.fl-hv-float--proj { bottom: 100px; right: -24px; animation-delay: 2s; }

.fl-hv-float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fl-hv-float-icon--green { background: rgba(16,185,129,.2); color: #34d399; }
.fl-hv-float-icon--purple { background: rgba(124,58,237,.2); color: #a78bfa; }
.fl-hv-float-title { font-size: .8125rem; font-weight: 600; color: #fff; }
.fl-hv-float-sub { font-size: .6875rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.fl-hv-avatars { display: flex; }
.fl-hv-av {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid #0f1623;
    margin-right: -8px;
    flex-shrink: 0;
}
.fl-hv-av--1 { background: rgba(124,58,237,.7); }
.fl-hv-av--2 { background: rgba(37,99,235,.7); }
.fl-hv-av--3 { background: rgba(16,185,129,.7); }
.fl-hv-avatars + div { padding-left: 12px; }

/* ─────────────────────────────────────────
   SECTION INTRO
───────────────────────────────────────── */
.fl-section-intro {
    text-align: center;
    padding: 96px clamp(20px,5vw,48px) 0;
    max-width: 700px;
    margin: 0 auto;
}
.fl-section-intro h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}
.fl-section-intro p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   FEATURE ROWS
───────────────────────────────────────── */
.fl-features { padding-bottom: 0; }

.fl-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.fl-feature-row--reverse .fl-feature-text { order: 2; }
.fl-feature-row--reverse .fl-feature-img  { order: 1; }

.fl-feature-text {
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fl-feature-row:nth-child(odd)  .fl-feature-text { background: var(--bg); }
.fl-feature-row:nth-child(even) .fl-feature-text { background: var(--bg-soft); }

.fl-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple-mid); /* #7c3aed — contraste 5.7:1 no fundo branco (era #8b5cf6 = 4.23:1) */
    margin-bottom: 18px;
}
.fl-tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--purple-mid);
    flex-shrink: 0;
}

.fl-feature-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.028em;
    color: var(--text);
    margin-bottom: 18px;
}

.fl-feature-text p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 28px;
}

.fl-checklist {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}
.fl-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.fl-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238b5cf6'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.fl-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--purple-mid); /* #7c3aed — contraste 5.7:1 no fundo branco */
    transition: gap .15s;
}
.fl-link-arrow:hover { gap: 10px; }

.fl-feature-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}
.fl-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.fl-feature-row:hover .fl-feature-img img { transform: scale(1.03); }
.fl-feature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,.13) 0%, transparent 55%);
    pointer-events: none;
}

/* ─────────────────────────────────────────
   VALUES / CARDS
───────────────────────────────────────── */
.fl-values {
    background: var(--bg-soft);
    padding: 96px clamp(20px,5vw,48px);
    border-top: 1px solid var(--border);
}

.fl-values-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.fl-values-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}
.fl-values-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.fl-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.fl-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow .2s, transform .2s;
}
.fl-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.fl-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--bg-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin-bottom: 20px;
}

.fl-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.fl-card p {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─────────────────────────────────────────
   HIGHLIGHT CTA
───────────────────────────────────────── */
.fl-cta {
    background: linear-gradient(128deg, #7c3aed 0%, #3b82f6 100%);
    color: #fff;
    padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fl-cta::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
}
.fl-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.fl-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.fl-cta p {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    opacity: .88;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 40px;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--purple-dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,.18); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.fl-footer {
    background: #0f172a;
    color: rgba(255,255,255,.65);
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 48px) 40px;
}

.fl-footer-inner { max-width: 1200px; margin: 0 auto; }

.fl-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 32px;
}

.fl-footer-brand img { height: 26px; margin-bottom: 16px; }
.fl-footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 240px; }

.fl-footer-col h4,
.fl-footer-col .fl-footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 16px;
}
.fl-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.fl-footer-col a {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    transition: color .15s;
}
.fl-footer-col a:hover { color: #fff; }

/* ── Redes sociais no footer (coluna) ─────────────────── */
.fl-footer-social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.fl-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.65);
    transition: background .18s, color .18s, transform .18s;
    flex-shrink: 0;
}
.fl-social-btn svg { width: 16px; height: 16px; }
.fl-social-btn:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
    transform: translateY(-2px);
}
.fl-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.5);
    font-size: .8125rem;
    font-family: inherit;
    padding: 0;
    transition: color .15s;
}
.fl-footer-email:hover { color: rgba(255,255,255,.85); }
.fl-footer-email.copied { color: #4ade80; }
.fl-footer-email.copied span::after { content: ' — copiado!'; }

.fl-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8125rem;
}
.fl-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.fl-footer-legal a { color: rgba(255,255,255,.65); transition: color .15s; } /* era .45 = #7b7f8a → 4.45:1 FAIL; .65 = #abaeb4 → 7.2:1 PASS */
.fl-footer-legal a:hover { color: #fff; }

/* ─────────────────────────────────────────
   DIVIDER
───────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
    .fl-cards { grid-template-columns: repeat(2, 1fr); }
    .fl-footer-grid { grid-template-columns: 1fr 1fr; }
    .fl-hero-visual { height: 360px; }
}

@media (max-width: 860px) {
    .fl-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fl-hero-copy { align-items: center; }
    .fl-hero-sub { margin-left: auto; margin-right: auto; }
    .fl-hero-btns { justify-content: center; }
    .fl-hero-stats { justify-content: center; }
    .fl-hero-visual { display: none; }
}

@media (max-width: 768px) {
    .fl-nav-links { display: none; }
    .fl-nav-burger { display: flex; }

    .fl-feature-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .fl-feature-row--reverse .fl-feature-text { order: 1; }
    .fl-feature-row--reverse .fl-feature-img  { order: 2; }
    .fl-feature-text { padding: 48px 24px; }
    .fl-feature-img { min-height: 300px; }

    .fl-cards { grid-template-columns: 1fr; }
    .fl-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .fl-footer-grid { grid-template-columns: 1fr; }
    .fl-footer-bottom { flex-direction: column; align-items: flex-start; }
    .fl-hero-btns { flex-direction: column; align-items: stretch; }
    .fl-hero-btns a { justify-content: center; }
}
