/* ==========================================================================
   Recard — Site institucional
   Paleta oficial: roxo #6f42c1 (primário), #8b5cf6 (gradiente),
   azul-escuro #25293C (secundário)
   ========================================================================== */

:root {
    --primary: #6f42c1;
    --primary-light: #8b5cf6;
    --primary-dark: #59339d;
    --secondary: #25293C;
    --secondary-soft: #374151;
    --ink: #25293C;
    --ink-soft: #5b6270;
    --success: #12b76a;
    --success-soft: #e7f8f0;
    --bg: #ffffff;
    --bg-soft: #f6f4fb;
    --line: #e8e5f1;
    --radius: 16px;
    --gradient-primary: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #25293C 0%, #374151 100%);
    --shadow-sm: 0 2px 10px rgba(37, 41, 60, .06);
    --shadow-md: 0 12px 40px rgba(37, 41, 60, .14);
    --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

/* ---------- Botões ---------- */
.btn { border-radius: 50px; font-weight: 600; padding: .65rem 1.5rem; transition: all .25s ease; }
.btn-lg { padding: .85rem 2rem; font-size: 1.02rem; }

.btn-primary-brand {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(111, 66, 193, .35);
}
.btn-primary-brand:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(111, 66, 193, .45);
}

.btn-outline-brand {
    border: 1.5px solid var(--line);
    color: var(--ink);
    background: #fff;
}
.btn-outline-brand:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-ghost { color: var(--ink); font-weight: 600; }
.btn-ghost:hover { color: var(--primary); }

.btn-light-brand {
    background: #fff;
    color: var(--secondary);
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.btn-light-brand:hover { transform: translateY(-3px); color: var(--primary); box-shadow: 0 10px 26px rgba(0, 0, 0, .25); }

.shadow-brand { box-shadow: var(--shadow-md); }

/* ---------- Navbar ---------- */
#mainNav {
    padding: 16px 0;
    transition: all .25s ease;
    background: transparent;
}
#mainNav.scrolled {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.navbar-brand img { display: block; }
.navbar-nav .nav-link {
    color: var(--ink-soft);
    font-weight: 500;
    margin: 0 .35rem;
    border-radius: 8px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-toggler { border: none; font-size: 1.6rem; color: var(--ink); }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    #mainNav { background: #fff; box-shadow: var(--shadow-sm); }
    .nav-actions { padding: .5rem 0 1rem; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: #ffffff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 41, 60, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 41, 60, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    pointer-events: none;
}
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    padding: .45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    box-shadow: var(--shadow-sm);
}
.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lead-text {
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 0; }
.hero-checks li { color: var(--ink-soft); font-size: .93rem; font-weight: 500; }
.hero-checks i { color: var(--success); margin-right: .4rem; }

/* Moldura de navegador para capturas do painel */
.hero-shot-wrap { position: relative; }
.browser-frame {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.browser-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.browser-url {
    margin-left: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: .74rem;
    color: var(--ink-soft);
    padding: 3px 14px;
}

/* Cartões flutuantes */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
}
.float-card i {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.float-card strong { display: block; font-size: .82rem; }
.float-card small { color: var(--ink-soft); font-size: .74rem; }
.float-card-1 { top: 6%; right: -14px; }
.float-card-1 i { background: var(--success-soft); color: var(--success); }
.float-card-2 { bottom: 5%; left: -14px; animation-delay: 2.5s; }
.float-card-2 i { background: #f0eafc; color: var(--primary); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 991px) {
    .hero { padding: 125px 0 80px; }
    .float-card-1 { right: 0; }
    .float-card-2 { left: 0; }
}
@media (max-width: 575px) {
    .float-card { display: none; }
}

/* ---------- Faixa de adquirentes ---------- */
.acquirers {
    padding: 42px 0;
    background: var(--gradient-secondary);
}
.acquirers-title {
    text-align: center;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9aa3b8;
    font-weight: 600;
    margin-bottom: 22px;
}
.acquirers-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 42px;
}
.acquirers-track img {
    height: 30px;
    width: auto;
    opacity: .75;
    transition: opacity .2s ease, transform .2s ease;
}
.acquirers-track img:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Cabeçalhos de seção ---------- */
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .8rem;
}
.section-eyebrow.light { color: #b9a5ec; }
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title.light { color: #fff; }
.section-text { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; max-width: 640px; }
.section-text.light { color: #b6bcce; }
.section-head { margin-bottom: 3.2rem; }
.link-more { font-weight: 600; }
.link-more i { transition: transform .2s ease; }
.link-more:hover i { transform: translateX(4px); }

/* ---------- Problema / solução ---------- */
.pain-section { background: var(--bg-soft); }
.pain-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pain-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: #f0eafc;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}
.pain-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.pain-card p { color: var(--ink-soft); font-size: .93rem; line-height: 1.65; margin: 0; }

/* ---------- Recursos ---------- */
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(111, 66, 193, .4); }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(111, 66, 193, .35);
}
.feature-card h3 { font-size: 1.13rem; margin-bottom: .55rem; }
.feature-card p { color: var(--ink-soft); font-size: .94rem; line-height: 1.65; margin: 0; }

/* ---------- Galeria / carrossel ---------- */
.gallery { background: var(--bg-soft); }
.gallery .carousel { max-width: 980px; margin: 0 auto; }
.gallery .carousel-inner { background: #fff; }
.gallery .carousel-item img { border-radius: 0 0 var(--radius) var(--radius); }
.gallery .carousel-indicators { bottom: -48px; }
.gallery .carousel-indicators button {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #c6b8e8;
    border: none;
    opacity: 1;
    transition: all .2s ease;
}
.gallery .carousel-indicators .active { background: var(--primary); width: 26px; border-radius: 100px; }
.gallery .carousel-control-prev,
.gallery .carousel-control-next { width: 46px; opacity: 1; }
.gallery .carousel-control-prev { left: -60px; }
.gallery .carousel-control-next { right: -60px; }
.gallery .carousel-control-prev-icon,
.gallery .carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 20px;
    background-size: 45%;
    box-shadow: 0 6px 14px rgba(111, 66, 193, .35);
}
@media (max-width: 1120px) {
    .gallery .carousel-control-prev { left: 8px; }
    .gallery .carousel-control-next { right: 8px; }
}

/* ---------- App Android ---------- */
.app-section { background: #fff; }
.app-list { margin: 1.6rem 0 1.8rem; display: flex; flex-direction: column; gap: .85rem; }
.app-list li { color: var(--ink-soft); font-size: .97rem; line-height: 1.55; }
.app-list li strong { color: var(--ink); }
.app-list i {
    color: var(--primary);
    background: #f0eafc;
    border-radius: 8px;
    padding: 6px;
    font-size: .85rem;
    margin-right: .55rem;
}
.app-note { display: block; margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }

.app-shot-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.phone-frame {
    width: 300px;
    background: var(--secondary);
    border-radius: 38px;
    padding: 12px;
    position: relative;
    z-index: 2;
}
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: var(--secondary);
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.phone-screen {
    background: var(--bg-soft);
    border-radius: 28px;
    overflow: hidden;
}
.phone-appbar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: 30px 16px 12px;
}
.phone-scan { padding: 14px 14px 6px; }
.phone-scan-frame {
    position: relative;
    background: #1a1d2d;
    border-radius: 14px;
    padding: 18px 14px;
    overflow: hidden;
}
.phone-scan-frame .corner {
    position: absolute;
    width: 18px; height: 18px;
    border: 2.5px solid var(--primary-light);
}
.corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }
.scan-line {
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: scanMove 2.6s ease-in-out infinite;
}
@keyframes scanMove { 0%, 100% { top: 12%; } 50% { top: 86%; } }
.phone-receipt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: "Courier New", monospace;
    font-size: .68rem;
    font-weight: 700;
    color: #cfd3e4;
    text-align: center;
    letter-spacing: .04em;
}
.phone-scan-hint {
    text-align: center;
    font-size: .74rem;
    font-weight: 600;
    color: var(--success);
    margin: 10px 0 0;
}
.phone-form { padding: 8px 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.phone-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: .78rem;
}
.phone-field span { color: var(--ink-soft); }
.phone-field strong { color: var(--ink); }
.phone-btn {
    margin-top: 6px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    padding: 11px;
    pointer-events: none;
}
.float-card-app { bottom: 14%; right: 6%; }
.float-card-app i { background: var(--success-soft); color: var(--success); }

@media (max-width: 575px) {
    .app-shot-wrap .float-card-app { display: flex; right: 0; bottom: 4%; }
}

/* ---------- Como funciona ---------- */
.how-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.how-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(111, 66, 193, .35);
}
.how-step h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.how-step p { color: var(--ink-soft); font-size: .94rem; line-height: 1.65; margin: 0; }

/* ---------- API ---------- */
.api-section {
    background:
        radial-gradient(700px 400px at 85% 10%, rgba(111, 66, 193, .35), transparent 60%),
        radial-gradient(500px 380px at 8% 90%, rgba(139, 92, 246, .18), transparent 60%),
        var(--secondary);
    color: #d6d9e6;
}
.api-list { margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: .7rem; }
.api-list li { font-size: 1rem; color: #c9cdde; }
.api-list i { color: var(--primary-light); margin-right: .6rem; font-size: 1.05rem; }

.code-window {
    background: #1a1d2d;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    overflow: hidden;
}
.code-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.code-title { margin-left: 12px; font-size: .78rem; color: #8a8fa8; font-family: monospace; }
.code-window pre {
    margin: 0;
    padding: 22px 24px;
    font-size: .84rem;
    line-height: 1.75;
    color: #c9cdde;
    overflow-x: auto;
}
.c-key { color: #a78bfa; font-weight: 600; }
.c-prop { color: #8be9c3; }
.c-str { color: #ffd58a; }
.c-num { color: #ff9ecb; }
.c-comment { color: #666c85; font-style: italic; }

/* ---------- Adquirentes e bandeiras ---------- */
.brands { background: var(--gradient-secondary); }
.brands .section-eyebrow { color: #b9a5ec; }
.acq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 44px;
    max-width: 860px;
    margin: 0 auto;
}
.acq-grid img {
    height: 34px;
    width: auto;
    opacity: .85;
    transition: opacity .2s ease, transform .2s ease;
}
.acq-grid img:hover { opacity: 1; transform: translateY(-2px); }
.brand-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .14);
    max-width: 860px;
    margin: 34px auto;
    opacity: 1;
}
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 34px;
    max-width: 860px;
    margin: 0 auto;
}
.brand-grid img {
    height: 34px;
    width: auto;
    opacity: .7;
    transition: opacity .2s ease, transform .2s ease;
}
.brand-grid img:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Preço ---------- */
.pricing { background: var(--bg-soft); }
.price-card {
    background: #fff;
    border: 1.5px solid rgba(111, 66, 193, .3);
    border-radius: 22px;
    padding: 44px 40px;
    text-align: center;
    position: relative;
}
.price-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 22px;
    border-radius: 100px;
    box-shadow: 0 6px 14px rgba(111, 66, 193, .35);
}
.price-value { margin: 18px 0 6px; }
.price-value .currency { font-size: 1.5rem; font-weight: 700; vertical-align: 22px; color: var(--ink-soft); }
.price-value .amount { font-size: 4.6rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--primary); }
.price-value .period { font-size: 1.1rem; color: var(--ink-soft); }
.price-sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 26px; }
.price-list { text-align: left; margin: 0 auto 28px; max-width: 340px; display: flex; flex-direction: column; gap: .65rem; }
.price-list li { color: var(--ink); font-size: .95rem; }
.price-list i {
    color: var(--success);
    background: var(--success-soft);
    border-radius: 50%;
    padding: 3px;
    font-size: .8rem;
    margin-right: .6rem;
}
.price-note { margin: 14px 0 0; font-size: .82rem; color: var(--ink-soft); }

/* ---------- Depoimentos ---------- */
.quote-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-stars { color: #ffb400; font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
    color: var(--ink);
    font-size: .97rem;
    line-height: 1.7;
    margin-bottom: 22px;
    flex-grow: 1;
}
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
}
.quote-card figcaption strong { display: block; font-size: .9rem; }
.quote-card figcaption small { color: var(--ink-soft); font-size: .78rem; }

/* ---------- FAQ ---------- */
.faq .accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.faq .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    padding: 20px 24px;
    background: #fff;
    box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--primary); background: #f8f5fe; }
.faq .accordion-button:focus { box-shadow: none; }
.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236f42c1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq .accordion-body { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; padding: 4px 24px 22px; }

/* ---------- CTA final ---------- */
.final-cta {
    padding: 90px 0;
    background:
        radial-gradient(600px 350px at 20% 20%, rgba(255, 255, 255, .1), transparent 60%),
        var(--gradient-primary);
    color: #fff;
    text-align: center;
}
.final-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: .8rem; }
.final-cta p { font-size: 1.1rem; opacity: .92; margin-bottom: 2rem; }
.cta-note { display: block; margin-top: 18px; font-size: .85rem; opacity: .85; }

/* ---------- Footer ---------- */
.footer { background: var(--secondary); color: #b6bcce; padding: 64px 0 0; }
.footer-brand { display: inline-block; margin-bottom: 1.2rem; }
.footer-text { font-size: .92rem; line-height: 1.7; color: #8d94ab; max-width: 320px; }
.footer-title { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; margin: 0; }
.footer-links a { color: #b6bcce; font-size: .92rem; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-links i { margin-right: .4rem; }
.footer-muted { color: #8d94ab; font-size: .92rem; }
.footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: #8d94ab;
}
.back-top {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}
.back-top:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-legal a { color: #b6bcce; text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* ---------- Banner de cookies (LGPD) ---------- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    z-index: 2000;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn { padding: .45rem 1.1rem; font-size: .88rem; white-space: nowrap; }

@media (max-width: 575px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-actions { justify-content: center; }
}

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .float-card { animation: none; }
}
