/* ============================================================
   ArtBackup — App styles (landing).
   Classes semânticas extraídas dos inline styles das blades.
   Reusa os tokens do design system (/assets/ds/). Linkar DEPOIS do DS.

   Valores idênticos aos inline originais para manter paridade visual.
   ============================================================ */

/* ===================== BASE / UTIL ===================== */
* { box-sizing: border-box; }
body {
    margin: 0;
    padding-top: 76px;
    font-family: var(--font-sans);
    color: var(--text-body);
    background: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===================== HEADER HIDE-ON-SCROLL ===================== */
.ab-header {
    transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.ab-header--hidden {
    transform: translateY(-110%);
}

.ic { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic svg { width: 100%; height: 100%; display: block; }

/* ===================== HOVER / TRANSIÇÕES ===================== */
.ab-link:hover { color: var(--brand-primary) !important; }

.ab-card { transition: transform 200ms cubic-bezier(.22,1,.36,1), box-shadow 200ms cubic-bezier(.22,1,.36,1); }
.ab-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feat-card { transition: transform 180ms cubic-bezier(.22,1,.36,1), box-shadow 180ms cubic-bezier(.22,1,.36,1), border-color 180ms ease; }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }

.ab-btn { transition: background 120ms ease, transform 120ms ease, box-shadow 120ms ease; }
.ab-btn:active { transform: translateY(1px) scale(.99); }
.ab-cta-btn:hover { background: var(--brand-cta-hover) !important; }
.ab-ghost:hover { background: var(--brand-primary-soft) !important; }
.ab-outline-w:hover { background: rgba(255,255,255,.10) !important; }
.ab-pill:hover { background: var(--brand-primary-strong, #1D4FD7) !important; }
.store-btn:hover { background: #0A1530 !important; }
.ab-seeall:hover { background: var(--brand-primary) !important; color: #fff !important; box-shadow: 0 10px 24px rgba(37,99,235,.32); transform: translateY(-2px); }
.ab-seeall:hover .ab-seeall__ic { background: #fff !important; transform: translateX(3px); }
.ab-seeall:hover .ab-seeall__ic .ic { color: var(--brand-primary) !important; }

/* "ra-card" (recursos) — comportamento de hover + keyframes do hero */
.ra-card { transition: transform 200ms cubic-bezier(.22,1,.36,1), box-shadow 200ms cubic-bezier(.22,1,.36,1); }
.ra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@keyframes ra-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ra-pulse { 0%, 100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.08); opacity: .9; } }

/* ===================== COMPONENTES REUTILIZÁVEIS ===================== */

/* Card branco padrão (home feature cards) */
.ab-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 34px 32px 30px;
}

/* Badge "orbit" do hero da home (pílula branca flutuante) */
.ab-orbit-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    padding: 9px 16px 9px 9px;
    border: 1px solid var(--border-subtle);
}
.ab-orbit-badge__icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--blue-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ab-orbit-badge__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
}
.ab-orbit-badge__ic { width: 15px; height: 15px; color: var(--brand-primary); }

/* Item de "workload" (grid de tecnologias suportadas na home) */
.ab-workload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.ab-workload__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    text-align: center;
}
/* Ícone Lucide fallback (aparece quando a img de logo falha) */
.wl-fallback { width: 40px; height: 40px; display: none; }

/* Item de menu da sidebar do dashboard mock (home) */
.ab-dash-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    border-radius: 7px;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-inverse-muted);
}
.ab-dash-nav.is-active {
    font-weight: 700;
    color: #fff;
    background: rgba(59,130,246,.22);
}
.dash-nav-ic       { width: 13px; height: 13px; color: rgba(255,255,255,.5); }
.dash-nav-ic--on   { color: var(--blue-300); }

/* Campos do formulário do modal de contato */
.ab-form-input,
.ab-form-textarea {
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color 150ms ease;
}
.ab-form-input { height: 46px; padding: 0 14px; }
.ab-form-textarea { grid-column: 1 / -1; padding: 12px 14px; resize: vertical; }
.ab-form-input:focus,
.ab-form-textarea:focus { border-color: var(--brand-primary, #2563eb); }
.ab-form-input--error,
.ab-form-textarea.ab-form-input--error { border-color: #dc2626; }
.ab-form-input--error:focus,
.ab-form-textarea.ab-form-input--error:focus { border-color: #dc2626; }

/* Container central padrão (max 1180px) */
.ab-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* Compensa header fixo em anchors — ajustado por breakpoint */
.ab-anchor-section { scroll-margin-top: 84px; }

/* Grids semânticos — display:grid + colunas padrão; gap fica inline pois varia por contexto */
.ab-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.ab-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.ab-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.ab-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }

/* ---- recursos: card "O que você pode proteger" ---- */
.ra-protect {
    background: #fff;
    border: 0.5px solid var(--border-subtle);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
}
.ra-protect__icon {
    font-size: 24px;
    color: var(--brand-primary);
    margin-bottom: 12px;
    display: block;
    width: 24px;
    height: 24px;
}
.ra-protect__title { font-size: 15px; font-weight: 500; color: var(--navy-900); margin: 0 0 8px; }
.ra-protect__rule { border: none; border-top: 1.5px solid var(--blue-300); width: 28px; margin: 0 0 12px; }
.ra-protect__list { list-style: none; margin: 0; padding: 0; }
.ra-protect__item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ra-protect__bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-300); flex-shrink: 0; }

/* ---- recursos: card "Recursos avançados" ---- */
.ra-adv__title { font-size: 18px; font-weight: 800; color: var(--navy-900); margin: 0 0 16px; letter-spacing: -0.01em; }
.ra-adv__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ra-adv__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-body); }
/* bullet usa cor dinâmica do card -> via custom property --dot inline */
.ra-adv__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dot); flex-shrink: 0; }

/* ---- home: item de check da plataforma unificada ---- */
.ab-check-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-900);
}
.ab-check-item__icon { width: 20px; height: 20px; color: var(--brand-primary); }

/* ---- quem-somos: bloco de estatística (presença nacional) ---- */
.qs-stat { display: flex; align-items: center; gap: 20px; }
.qs-stat__icon { width: 28px; height: 28px; color: var(--brand-primary); }
.qs-stat__badge {
    width: 64px;
    height: 64px;
    border: 2px solid var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qs-stat__text { text-align: left; }
.qs-stat__num { font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--navy-900); line-height: 1; }
.qs-stat__label { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-top: 4px; line-height: 1.3; }

/* ---- footer: link de telefone/e-mail/endereço ---- */
.ft-link { font-size: 14.5px; color: rgba(255,255,255,.78); text-decoration: none; }
.ft-heading { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }

/* ===================== NAV ===================== */
.ab-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Fixa o header no topo com glassmorphism */
.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}
.ab-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.ab-header__nav  { display: flex; align-items: center; gap: 30px; }
.ab-header__actions { display: flex; align-items: center; gap: 22px; }
.ab-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    text-decoration: none;
}
.ab-nav-link.is-active { font-weight: 700; color: var(--brand-primary); }
.ab-login-link { font-size: 14px; font-weight: 700; color: var(--brand-primary); text-decoration: none; }

/* ===================== FOOTER ===================== */
.site-footer { background: #211C52; color: #fff; }
.site-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 32px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.ft-desc { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.72); max-width: 360px; margin: 22px 0 0; }
.ft-logo-img { max-width: 190px; }
.ft-phone-list { display: flex; flex-direction: column; gap: 7px; max-width: fit-content; }
.ft-icon-link { display: inline-flex; align-items: center; gap: 8px; }
.ft-address { display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px; color: rgba(255,255,255,.78); line-height: 1.6; }
.ft-address__icon { width: 16px; height: 16px; color: var(--brand-cta); margin-top: 3px; }
.ft-cta-wrap { margin-top: 32px; }
.ft-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 46px;
    padding: 0 22px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    background: var(--brand-cta);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(23,163,74,.28);
}
.ft-icon { width: 16px; height: 16px; color: var(--brand-cta); }
.ft-icon--sm { width: 15px; height: 15px; }

/* ===================== MODAL ===================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10,10,20,.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-box {
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,.28);
    position: relative;
}

/* Modal split — painel de valor (esquerda) + form (direita) */
.modal-box--split {
    max-width: 900px;
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    overflow: hidden; /* deixa o scroll para o .modal-main */
}

/* ---- Painel esquerdo (proposta de valor) ---- */
.modal-aside {
    background: var(--surface-tint, #EAF1FB);
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
}
.modal-aside__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--navy-900, #0B1B40);
    margin: 0 0 12px;
}
.modal-aside__sub {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-muted, #64748b);
    margin: 0 0 24px;
}

/* Card de trial (também reusado no mobile via --mobile) */
.modal-trial {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--brand-cta-soft, #EBFAF0);
    border: 1px solid rgba(23,163,74,.22);
    border-radius: var(--radius-md, 12px);
    padding: 16px 18px;
}
.modal-trial__icon { width: 22px; height: 22px; color: var(--brand-cta, #16a34a); flex-shrink: 0; margin-top: 1px; }
.modal-trial__title { font-size: 14.5px; font-weight: 700; color: var(--navy-900, #0B1B40); margin-bottom: 4px; }
.modal-trial__desc  { font-size: 13px; line-height: 1.5; color: var(--text-muted, #64748b); }
.modal-trial--mobile { display: none; } /* só aparece no mobile */

/* Lista de benefícios */
.modal-benefits { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.modal-benefits__item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--navy-900, #0B1B40); }
.modal-benefits__icon { width: 20px; height: 20px; color: var(--brand-primary, #2563eb); flex-shrink: 0; }

/* Ilustração na base do painel */
.modal-aside__art {
    margin-top: auto;
    padding-top: 28px;
}
.modal-aside__art-img {
    display: block;
    width: 100%;
    max-width: 300px; /* limita a exibição para a resolução do WebP nunca ser esticada */
    height: auto;
}

/* ---- Painel direito (form) ---- */
.modal-main {
    padding: 38px 34px 28px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-main__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding-right: 44px; }
.modal-main__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-50, #EFF5FF);
    color: var(--brand-primary, #2563eb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.modal-main__title { font-size: 18px; font-weight: 800; color: var(--navy-900, #0B1B40); letter-spacing: -0.01em; }
.modal-main__subtitle { font-size: 13.5px; line-height: 1.5; color: var(--text-muted, #64748b); margin-top: 4px; }

.modal-foot-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text-muted, #64748b);
    margin: 18px 0 0;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    color: var(--text-muted, #64748b);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal responsivo — colapsa o split numa coluna só (form) */
@media (max-width: 720px) {
    .modal-box--split {
        grid-template-columns: 1fr;
        max-width: 480px;
        padding: 0 18px;
    }
    .modal-aside { display: none; }
    .modal-trial--mobile { display: flex; margin-bottom: 20px; }
    .modal-main { padding: 30px 0 24px; max-height: 88vh; }
    .modal-main__head { padding-right: 40px; }
    /* uma coluna só — evita que o 2º campo vaze a largura da caixa */
    .modal-form { grid-template-columns: 1fr; }
}
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Garante que popups do SweetAlert2 fiquem acima do modal de contato (z-index: 9000) */
.swal2-container { z-index: 9500; }
.modal-field { display: flex; flex-direction: column; gap: 4px; }
.modal-field--full { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 4px; }
.modal-field-submit { grid-column: 1 / -1; }
.modal-field-error { font-size: 12px; color: #dc2626; }
.modal-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 50px;
    padding: 0 32px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background: var(--brand-cta, #16a34a);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(23,163,74,.28);
}

/* ===================== FEATURE CARD PARTIAL ===================== */
.feat-card--small {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px 20px 18px;
    display: flex;
    gap: 14px;
}
.feat-card--small__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg, var(--blue-50));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feat-card--small__title { font-size: 15px; font-weight: 700; color: var(--navy-900); margin: 2px 0 6px; letter-spacing: -0.01em; }
.feat-card--small__desc  { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); margin: 0; }

/* ===================== EYEBROW / SECTION LABELS ===================== */
/* Label pequena uppercase acima de títulos — reutilizável em todas as seções */
.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.eyebrow--primary { color: var(--brand-primary); }
.eyebrow--blue    { color: #5DB7FF; margin-bottom: 14px; }
.eyebrow--muted   { color: rgba(255,255,255,.72); }
.eyebrow--sm-gap  { margin-bottom: 14px; }

/* ===================== HOME ===================== */

/* Hero */
.home-hero { background: linear-gradient(180deg, #F1F6FF 0%, #F8FBFF 55%, #FFFFFF 100%); position: relative; overflow: hidden; }
.home-hero__grid { max-width: 1180px; margin: 0 auto; padding: 78px 32px 0; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.home-hero__illo { position: relative; height: 480px; }

/* Badge de hero (topo do copy, com ícone + texto uppercase) — reutilizado em recursos */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 32px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 26px;
}

/* Botão fantasma outline (hero + benefits) */
.hero-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 26px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--blue-200);
    background: #fff;
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.012em;
    cursor: pointer;
}

/* Feature cards section */
.feat-section { background: #fff; padding: 32px 0 40px; }
.feat-section__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feat-card__icon  { width: 44px; height: 44px; color: var(--brand-primary); margin-bottom: 22px; }
.feat-card__title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--brand-primary); margin: 0 0 12px; }
.feat-card__desc  { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }

/* Workloads section */
.wl-section    { background: #fff; padding: 8px 0 40px; }
.wl-container  { max-width: 1080px; margin: 0 auto; }
.wl-heading    { text-align: center; font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy-900); margin: 0 0 52px; }
.wl-seeall-row { text-align: center; margin-top: 48px; }

/* "Ver mais recursos" pill — já tem .ab-seeall hover; aqui os estilos base */
.ab-seeall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 14px 0 26px;
    border-radius: var(--radius-pill);
    background: var(--brand-primary-soft, #EAF1FE);
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    border: 1px solid var(--blue-200);
    transition: background 160ms ease, color 160ms ease, box-shadow 200ms ease, transform 160ms ease;
}
.ab-seeall__ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 200ms cubic-bezier(.22,1,.36,1);
}

/* Plataforma Unificada section */
.platform-section { padding: 90px 0; background-color: #f2f7ff; }
.platform-grid    { max-width: 1180px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }

/* Dashboard mock container */
.platform-mock {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    min-height: 430px;
}

/* Sidebar do dashboard */
.dash-sidebar {
    width: 150px;
    flex-shrink: 0;
    background: var(--navy-900);
    padding: 16px 11px;
    display: flex;
    flex-direction: column;
}
.dash-sidebar__logo { margin-bottom: 18px; padding-left: 3px; }

/* Área de conteúdo do dashboard */
.dash-content {
    flex: 1;
    background: var(--slate-50);
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-header__title { font-size: 14px; font-weight: 800; color: var(--navy-900); letter-spacing: -0.01em; }
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-300); }
.dash-dot--active { background: var(--brand-primary); }

/* Stat cards do dashboard */
.dash-stat-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 9px; padding: 10px 11px; }
.dash-stat-card__label { font-size: 9px; color: var(--text-muted); margin-bottom: 4px; }
.dash-stat-card__value { font-size: 17px; font-weight: 800; color: var(--navy-900); }
.dash-stat-card__value--success { color: var(--brand-cta); }

/* Charts grid */
.dash-charts { display: grid; grid-template-columns: 1fr 1.3fr; gap: 8px; margin-bottom: 12px; }
.dash-chart-box { background: #fff; border: 1px solid var(--border-subtle); border-radius: 9px; padding: 11px; }
.dash-chart-title { font-size: 10px; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.dash-donut { display: flex; align-items: center; gap: 12px; }
.dash-legend { display: flex; flex-direction: column; gap: 6px; }
.dash-legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 9.5px; color: var(--navy-900); }
.dash-legend-dot { width: 7px; height: 7px; border-radius: 50%; }
.dash-sparkline-footer { display: flex; justify-content: space-between; font-size: 7.5px; color: var(--text-faint); margin-top: 2px; }
.dash-chart-title--sm { font-size: 10px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }

/* Tabela de jobs */
.dash-table { background: #fff; border: 1px solid var(--border-subtle); border-radius: 9px; padding: 11px; flex: 1; }
.dash-table__title { font-size: 10px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.dash-table__cols { display: grid; grid-template-columns: 1.5fr 1fr 0.9fr 0.7fr 0.9fr; gap: 4px; }
.dash-table__head { font-size: 7.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; padding-bottom: 6px; border-bottom: 1px solid var(--slate-100); }
.dash-table__row  { font-size: 9px; color: var(--navy-900); align-items: center; padding: 6px 0; border-bottom: 1px solid var(--slate-100); }
.dash-table__row:last-child { border-bottom: none; }
.dash-table__cell--name  { font-weight: 600; }
.dash-table__cell--muted { color: var(--text-muted); }
.dash-badge-success { font-size: 7.5px; font-weight: 700; color: var(--green-700); background: var(--green-100); border-radius: 999px; padding: 2px 6px; }
.dash-cell-status { display: inline-flex; }

/* Copy lateral da plataforma */
.platform-copy { /* sem estilos de bloco — filhos têm estilos */ }
.platform-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; display: block; }
.platform-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 26px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--blue-200);
    background: #fff;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* Benefits / MSP section */
.benefits-section { background: linear-gradient(135deg, var(--navy-900) 0%, #102F7A 58%, var(--brand-primary) 100%); padding: 48px 0 64px; }
.benefits-header { text-align: center; margin-bottom: 46px; }
.benefits-header__title { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: #fff; margin: 0 0 16px; }
.benefits-header__sub { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 720px; margin: 0 auto; }

/* Ben card */
.ben-card {
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.36);
    box-shadow: 0 18px 38px rgba(0,0,0,.12);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.ben-card__ic   { width: 24px; height: 24px; color: var(--brand-primary); }
.ben-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--slate-50);
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ben-card__title { font-size: 17px; font-weight: 750; letter-spacing: -0.02em; margin: 0 0 10px; color: var(--navy-900); }
.ben-card__desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1; }

/* CTA dentro da benefits section */
.benefits-cta { margin-top: 56px; padding-top: 46px; border-top: 1px solid rgba(255,255,255,.16); text-align: center; }
.benefits-cta__title { font-size: 34px; font-weight: 800; line-height: 1.16; letter-spacing: -0.03em; color: #fff; max-width: 780px; margin: 0 auto 16px; }
.benefits-cta__sub   { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.80); max-width: 720px; margin: 0 auto 32px; }
.benefits-cta__btns  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.outline-w-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 26px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.40);
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

/* ===================== RECURSOS ===================== */

/* Hero de recursos */
.ra-hero { position: relative; overflow: hidden; background: radial-gradient(120% 130% at 78% 18%, #16357A 0%, var(--navy-900) 44%, var(--navy-950) 100%); }
.ra-hero__grid { max-width: 1180px; margin: 0 auto; padding: 70px 32px 78px; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 40px; align-items: center; }
.ra-hero__illo { position: relative; height: 320px; display: flex; align-items: center; justify-content: center; }
.ra-hero__glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(59,116,242,.34) 0%, rgba(59,116,242,0) 68%); filter: blur(4px); }
.ra-hero__ring-sm { position: absolute; width: 210px; height: 210px; border-radius: 50%; border: 1px solid rgba(138,179,255,.30); animation: ra-pulse 3.6s ease-in-out infinite; }
.ra-hero__ring-lg { position: absolute; width: 270px; height: 270px; border-radius: 50%; border: 1px solid rgba(138,179,255,.16); animation: ra-pulse 4.4s ease-in-out infinite; }
.ra-hero__core {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    border-radius: 30px;
    background: linear-gradient(155deg, #5990FB 0%, #2563EB 55%, #1D4ED8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 50px rgba(37,99,235,.55), inset 0 2px 6px rgba(255,255,255,.35);
    animation: ra-float 5s ease-in-out infinite;
}

/* Ícone central do hero */
.ra-hero__core-icon { width: 62px; height: 62px; color: #fff; }

/* Chips flutuantes do hero de recursos (posição continua inline) */
.ra-float-chip {
    position: absolute;
    border-radius: 12px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ra-float var(--dur, 4.8s) ease-in-out infinite;
}

/* Seção "O que pode proteger" */
.protect-section { background: #fff; padding: 78px 0 16px; }
.protect-heading { text-align: center; margin-bottom: 14px; }
.protect-heading__inner { display: inline-flex; align-items: center; gap: 16px; }
.protect-heading__rule { width: 34px; height: 2px; background: var(--blue-300); display: inline-block; }
.protect-subtitle { text-align: center; font-size: 15px; color: var(--text-muted); margin: 0 0 46px; }

/* Seção "Recursos avançados" */
.adv-section { background: var(--surface-tint); padding: 76px 0 84px; }
.adv-heading  { text-align: center; font-size: 33px; line-height: 1.1; letter-spacing: -0.035em; font-weight: 800; color: var(--navy-900); margin: 0 0 12px; }
.adv-subtitle { text-align: center; font-size: 15px; color: var(--text-muted); margin: 0 0 44px; }

/* Icon wrapper dos advanced cards (bg e cor vêm do PHP via --bg / --c) */
.ra-adv__icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Advanced card base (fundo branco / borda / shadow / padding) */
.ra-adv-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px 30px 32px;
}

/* Navy band "Feito para empresas que não podem parar" */
.ra-band {
    margin-top: 48px;
    background: radial-gradient(120% 160% at 88% 8%, #16357A 0%, var(--navy-900) 52%, var(--navy-950) 100%);
    border-radius: var(--radius-lg);
    padding: 42px 44px 46px;
    box-shadow: 0 20px 44px rgba(11,27,64,.28);
}
.ra-band__header { text-align: center; margin-bottom: 8px; }
.ra-band__title  { font-size: 23px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin: 0; }
.ra-band__rule-row { display: flex; justify-content: center; margin-bottom: 34px; }
.ra-band__rule { width: 40px; height: 2px; background: var(--blue-400); display: inline-block; }

/* Promise items (dentro da navy band) */
.promise-item__title { font-size: 14.5px; font-weight: 800; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.promise-item__desc  { font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,.62); margin: 0; }
.promise-item__icon  { display: block; margin-bottom: 12px; }
.promise-item__ic    { width: 26px; height: 26px; color: var(--blue-300); }

/* CTA final (recursos) */
.ra-cta-section { background: #fff; border-top: 1px solid var(--border-subtle); padding: 48px 0 56px; }
.ra-cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 10px;
    white-space: nowrap;
}
.ra-cta-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.ra-cta-list__item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-body); line-height: 1.4; }
.ra-cta-list__icon { flex-shrink: 0; margin-top: 1px; }
.ra-cta-list__ic   { width: 17px; height: 17px; color: var(--brand-primary); }
.ra-cta-btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ra-cta-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 240px;
    height: 52px;
    padding: 0 20px 0 24px;
    border-radius: var(--radius-sm);
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 20px rgba(37,99,235,.28);
    white-space: nowrap;
}
.ra-cta-main-btn__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}
.ra-cta-tagline { font-size: 11.5px; line-height: 1.5; color: var(--text-muted); margin: 0; text-align: center; max-width: 200px; }

/* ===================== QUEM SOMOS ===================== */

/* Seção intro */
.qs-intro { background: #F4F6FB; padding: 84px 0; }
.qs-intro__grid { max-width: 1180px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.qs-copy-p { font-size: 18px; line-height: 1.8; color: var(--text-body); margin: 0 0 24px; }
.qs-copy-p--last { margin: 0; }
.qs-imgs { display: flex; flex-direction: column; gap: 1rem; }
.qs-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); background: #fff; }
.qs-img-wrap img { width: 100%; display: block; }

/* Datacenter section */
.qs-dc-section { background: linear-gradient(135deg, var(--navy-900) 0%, #102F7A 62%, var(--brand-primary) 100%); padding: 82px 0; }
.qs-dc-header { max-width: 720px; margin-bottom: 42px; }
.qs-dc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* Datacenter card */
.dc-card { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 22px 54px rgba(0,0,0,.20); }
.dc-card__img { height: 260px; position: relative; background-size: cover; background-position: center; }
.dc-location-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.92);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
}
.dc-card__body  { padding: 26px 26px 22px; }
.dc-card__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--navy-900); margin: 0 0 10px; }
.dc-card__desc  { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0 0 22px; }
.dc-items       { border-top: 1px solid var(--border-subtle); padding-top: 18px; }
.dc-item        { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--navy-900); }
.dc-item__icon  { width: 17px; height: 17px; color: var(--brand-primary); }
.dc-pin-icon    { width: 14px; height: 14px; color: var(--brand-primary); }

/* Presença nacional section */
.presence-section { background: #F4F6FB; padding: 78px 0 90px; }
.presence-center { text-align: center; }
.presence-img { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.qs-stats-row { display: flex; justify-content: center; gap: 64px; margin-top: 48px; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
    html { overflow-x: hidden; }
    body { padding-top: 116px; }
    .ab-anchor-section { scroll-margin-top: 0; }

    .ra-protect-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    header > div {
        height: auto !important;
        min-height: 68px !important;
        padding: 12px 20px !important;
        gap: 14px !important;
        flex-wrap: wrap !important;
    }

    header nav {
        order: 3 !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 18px !important;
        flex-wrap: wrap !important;
        padding-top: 8px !important;
    }

    header > div > div:last-child {
        gap: 14px !important;
    }

    section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .home-hero__grid,
    .platform-grid,
    .qs-intro__grid,
    .ra-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .qs-dc-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .ra-cta-card {
        grid-template-columns: 1fr 1fr !important;
        padding: 28px 28px !important;
    }

    .ra-cta-card__illustration {
        display: none !important;
    }

    .ra-cta-card > div:last-child {
        grid-column: 1 / -1;
        align-items: center !important;
    }

    .ab-grid-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ab-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ab-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    h1 {
        font-size: 42px !important;
        line-height: 1.08 !important;
    }

    h2 {
        font-size: 30px !important;
    }

    [style*="height: 480px"] {
        height: 420px !important;
    }

    .home-hero__illo {
        height: 420px !important;
    }

    [style*="width: 430px; height: 430px"] {
        width: 340px !important;
        height: 340px !important;
    }

    svg[width="248"] {
        width: 210px !important;
        height: auto !important;
    }

    [style*="min-height: 430px"] {
        min-height: 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .platform-mock {
        min-height: 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    footer > div {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 640px) {
    header > div {
        padding: 12px 16px !important;
    }

    header nav {
        display: flex !important;
        order: 3 !important;
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        padding: 8px 0 2px !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    header nav::-webkit-scrollbar {
        display: none !important;
    }

    header nav a {
        flex: 0 0 auto !important;
        font-size: 13px !important;
        padding: 8px 4px !important;
        border-radius: 999px !important;
        background: rgba(37, 99, 235, .07) !important;
    }

    header > div > div:last-child {
        gap: 10px !important;
    }

    header > div > div:last-child a:not(:first-child) {
        display: none !important;
    }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    section > div,
    footer > div {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    h1 {
        font-size: 34px !important;
        letter-spacing: -0.035em !important;
    }

    h2 {
        font-size: 25px !important;
        line-height: 1.18 !important;
    }

    h3 {
        font-size: 24px !important;
    }

    p {
        font-size: 15.5px !important;
    }

    .ab-grid-5 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
    }

    .ab-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .ra-protect-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .ra-protect {
        padding: 1rem !important;
    }

    .ab-card {
        padding: 24px;
    }

    .ab-grid-2,
    .ab-grid-4,
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    footer form {
        grid-template-columns: 1fr !important;
    }

    [style*="display: flex"][style*="justify-content: flex-end"] {
        justify-content: center !important;
    }

    [style*="width: 184px; height: 376px"] {
        width: 156px !important;
        height: 318px !important;
    }

    [style*="height: 480px"] {
        height: 340px !important;
        margin-top: -10px !important;
    }

    .home-hero__illo {
        height: 340px !important;
        margin-top: -10px !important;
    }

    [style*="width: 430px; height: 430px"] {
        width: 280px !important;
        height: 280px !important;
    }

    [style*="width: 280px; height: 60px"] {
        width: 210px !important;
    }

    svg[width="248"] {
        width: 170px !important;
    }

    .ab-btn,
    .ab-ghost,
    .ab-cta-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    form[style*="grid-template-columns:1fr 1fr"],
    form[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    form input,
    form button {
        grid-column: auto !important;
        width: 100% !important;
    }

    form textarea {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .ra-cta-card {
        grid-template-columns: 1fr !important;
        padding: 28px 20px !important;
        gap: 20px !important;
        text-align: center;
    }

    .ra-cta-card__illustration {
        display: none !important;
    }

    .ra-cta-card ul {
        align-items: flex-start;
        text-align: left;
    }

    .ra-adv__title {
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }

    .qs-stats-row {
        flex-wrap: wrap;
        gap: 32px !important;
    }
}

.grecaptcha-badge {
    display: none;
}