/* ================================================================
   DOMA CONSULTORIA — Design System v4 "Premium Advisory"
   Paleta extraída do logo: navy #1f245a · azul #0080c7
   Tipografia: Fraunces (display) + Inter (texto/UI)
   ================================================================ */

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

:root {
    /* Marca */
    --navy: #1f245a;
    --navy-800: #191d49;
    --navy-900: #12163a;
    --navy-950: #0d1029;
    --blue: #0077b8;          /* azul de ação (AA com texto branco) */
    --blue-brand: #0080c7;    /* azul puro do logo (gradientes/decoração) */
    --blue-dark: #00629b;
    --blue-tint: #e8f4fb;
    --sky: #5ec9ff;
    --emerald: #0e9f6e;
    --emerald-light: #34d399;

    /* Neutros */
    --white: #ffffff;
    --paper: #f7f8fb;
    --gray-100: #eef0f5;
    --gray-200: #dde1ea;
    --gray-300: #c3c9d6;
    --gray-400: #8791a3;
    --gray-500: #5c6678;
    --gray-600: #3e4759;
    --gray-700: #2b3245;

    /* Tipografia */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

    /* Forma */
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(18, 22, 58, .06);
    --shadow-md: 0 6px 24px rgba(18, 22, 58, .09);
    --shadow-lg: 0 16px 48px rgba(18, 22, 58, .14);
    --transition: .25s ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
em { font-style: italic; }
.hidden { display: none !important; }
.hide-mobile { }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }

/* Acessibilidade: foco visível consistente */
:focus-visible {
    outline: 3px solid rgba(0, 128, 199, .55);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    top: -48px; left: 16px;
    z-index: 2000;
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    font-weight: 600;
    transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Ícones: nunca ler como texto, nunca piscar como palavra */
.material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
    user-select: none;
    overflow: hidden;
    max-width: 1.2em;
}

/* ---------- TIPOGRAFIA DE SEÇÃO ---------- */
.section__tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    gap: 10px;
}

.section__tag::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section__tag--light { color: var(--sky); }
.section__tag--light::before { background: var(--sky); }

.section__tag--center { justify-content: center; }
.section__tag--center::after {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    font-variation-settings: "SOFT" 0, "WONK" 0;
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.section__title--light { color: var(--white); }

.section__title-accent { color: var(--blue); }
.section__title--light .section__title-accent,
.section__title-accent--sky { color: var(--sky); }

.section__desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

.section__header { text-align: center; margin-bottom: 64px; }
.section__header .section__desc { margin: 0 auto; }

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn .material-symbols-outlined { font-size: 20px; transition: transform var(--transition); }
.btn:hover .material-symbols-outlined { transform: translateX(3px); }

.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 128, 199, .25);
}
.btn--primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 20px rgba(0, 128, 199, .35);
    transform: translateY(-1px);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(13, 16, 41, .18);
}
.btn--white:hover {
    background: var(--blue-tint);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .65);
}

.btn--outline-dark {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 10px 22px;
    font-size: 13px;
}
.btn--outline-dark:hover {
    background: var(--blue);
    color: var(--white);
}

.btn--ghost-dark {
    background: transparent;
    color: var(--gray-500);
    font-size: 14px;
    padding: 10px 14px;
}
.btn--ghost-dark:hover { color: var(--navy); }

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 17px 38px; font-size: 16px; }
.btn--full { width: 100%; }

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.header__logo-img { height: 32px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 28px; }

.header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    padding: 4px 0;
    position: relative;
    transition: color var(--transition);
}

.header__link::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: right .25s ease;
}

.header__link:hover, .header__link.active { color: var(--navy); }
.header__link.active::after { right: 0; }

.header__nav-actions { display: flex; align-items: center; gap: 10px; }

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.header__hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--navy-900);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 600px at 85% 15%, rgba(0, 128, 199, .16), transparent 60%),
        radial-gradient(ellipse 700px 500px at 10% 95%, rgba(31, 36, 90, .8), transparent 65%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
}

/* Marca d'água: o quarto de círculo do logo */
.hero__mark {
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 480px;
    height: 480px;
    background: rgba(0, 128, 199, .07);
    border-radius: 100% 0 24px 0;
    transform: rotate(180deg);
    pointer-events: none;
}

.hero__accent-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--sky) 55%, var(--emerald-light));
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
    flex: 1;
    padding-top: 150px;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--emerald-light);
    border-radius: 50%;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 66px);
    font-weight: 600;
    font-variation-settings: "SOFT" 0, "WONK" 0;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -1px;
    margin-bottom: 26px;
}

.hero__title-accent {
    color: var(--sky);
    font-style: italic;
    font-weight: 500;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 520px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__proof {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero__proof-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}

.hero__proof-item .material-symbols-outlined {
    font-size: 17px;
    color: var(--emerald-light);
}

/* Hero: card assinatura — comparativo de regimes */
.hero__visual { position: relative; }

.hero__sim {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-xl);
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}

.hero__sim-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.hero__sim-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero__sim-title .material-symbols-outlined { font-size: 19px; color: var(--sky); }

.hero__sim-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.hero__sim-rows { display: flex; flex-direction: column; gap: 16px; }

.hero__sim-row { }

.hero__sim-row-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
}

.hero__sim-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero__sim-best-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #a7f3d0;
    background: rgba(14, 159, 110, .25);
    border: 1px solid rgba(52, 211, 153, .35);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.hero__sim-value {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.hero__sim-row--best .hero__sim-value { color: var(--emerald-light); }

.hero__sim-track {
    height: 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.hero__sim-bar {
    height: 100%;
    width: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, rgba(94, 201, 255, .55), rgba(94, 201, 255, .85));
    transition: width 1.1s cubic-bezier(.25, .8, .3, 1);
}

.hero__sim-row--best .hero__sim-bar {
    background: linear-gradient(90deg, rgba(52, 211, 153, .6), var(--emerald-light));
}

.hero__sim.loaded .hero__sim-bar { width: var(--w, 0%); }

.hero__sim-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero__sim-foot-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    display: block;
    margin-bottom: 3px;
}

.hero__sim-foot-value {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--emerald-light);
    line-height: 1.1;
}

.hero__sim-foot .material-symbols-outlined {
    font-size: 34px;
    color: rgba(52, 211, 153, .5);
}

.hero__sim-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    text-align: right;
}

/* Chip flutuante da Reforma */
.hero__chip {
    position: absolute;
    top: -22px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    border: 1px solid rgba(94, 201, 255, .35);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.hero__chip .material-symbols-outlined { font-size: 16px; color: var(--sky); }

/* Stats bar */
.hero__stats-bar {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .035);
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 30px 0;
}

.hero__stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.hero__stat { text-align: center; }

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.5px;
    line-height: 1;
}

.hero__stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--sky);
}

.hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .58);
    margin-top: 7px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero__stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .12);
}

/* ---------- TRUST BAR (marquee) ---------- */
.trust-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    padding: 15px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
    animation: marquee 48s linear infinite;
    will-change: transform;
    width: max-content;
}

.trust-bar:hover .trust-bar__inner { animation-play-state: paused; }

.trust-bar__inner span {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.trust-bar__dot {
    width: 4px !important;
    height: 4px;
    background: var(--gray-300) !important;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- SOBRE ---------- */
.sobre { background: var(--white); }

.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.sobre__text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 14px;
    line-height: 1.8;
}

.sobre__highlights {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre__highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sobre__highlight-icon {
    width: 44px; height: 44px;
    background: var(--blue-tint);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.sobre__highlight-icon .material-symbols-outlined { font-size: 21px; color: var(--blue); }

.sobre__highlight strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.sobre__highlight p { font-size: 14px; color: var(--gray-500); margin: 0; }

/* Mosaico */
.sobre__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sobre__mosaic-card {
    background: var(--paper);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.sobre__mosaic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.sobre__mosaic-card--big {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 100%);
    border-color: transparent;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

/* eco do quarto de círculo do logo */
.sobre__mosaic-card--big::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 190px;
    height: 190px;
    background: rgba(0, 128, 199, .22);
    border-radius: 100% 0 0 0;
    transform: rotate(180deg);
}

.sobre__mosaic-card--big:hover { box-shadow: var(--shadow-lg); }

.sobre__mosaic-card--big .sobre__mosaic-number { color: var(--white); }
.sobre__mosaic-card--big .sobre__mosaic-label { color: rgba(255, 255, 255, .72); }

.sobre__mosaic-number {
    display: block;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 8px;
}

.sobre__mosaic-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.sobre__mosaic-card--accent {
    background: var(--blue-tint);
    border-color: transparent;
}

.sobre__mosaic-card--accent .sobre__mosaic-number { color: var(--blue); }

/* ---------- SERVIÇOS ---------- */
.servicos { background: var(--paper); position: relative; }

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.servico {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 38px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.servico::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-brand), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.servico:hover {
    border-color: rgba(0, 128, 199, .45);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.servico:hover::before { transform: scaleX(1); }

.servico--featured { border-color: rgba(0, 128, 199, .55); box-shadow: var(--shadow-sm); }
.servico--featured::before { transform: scaleX(1); }

.servico__pill {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-tint);
    border: 1px solid rgba(0, 128, 199, .25);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.servico__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.servico__icon-wrap {
    width: 52px; height: 52px;
    background: var(--blue-tint);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
}

.servico:hover .servico__icon-wrap { background: var(--blue); }

.servico__icon-wrap .material-symbols-outlined {
    font-size: 25px;
    color: var(--blue);
    transition: color var(--transition);
}

.servico:hover .servico__icon-wrap .material-symbols-outlined { color: var(--white); }

.servico__icon-wrap--featured { background: var(--blue) !important; }
.servico__icon-wrap--featured .material-symbols-outlined { color: var(--white) !important; }

.servico__title {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.22;
    letter-spacing: -.2px;
}

.servico__desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.servico__features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px;
}

.servico__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--gray-600);
    font-weight: 500;
}

.servico__features .material-symbols-outlined {
    font-size: 18px;
    color: var(--emerald);
    flex-shrink: 0;
}

.servico__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-top: auto;
}

.servico__cta .material-symbols-outlined {
    font-size: 18px;
    transition: transform var(--transition);
}

.servico__cta:hover { color: var(--blue-dark); }
.servico__cta:hover .material-symbols-outlined { transform: translateX(4px); }

/* ---------- DIFERENCIAIS ---------- */
.diferenciais {
    background:
        radial-gradient(ellipse 800px 500px at 90% 10%, rgba(0, 128, 199, .12), transparent 55%),
        var(--navy-900);
    position: relative;
    overflow: hidden;
}

.dif__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: start;
}

.dif__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin-top: 12px;
}

.dif__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dif__card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.dif__card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(94, 201, 255, .3);
    transform: translateY(-3px);
}

.dif__card-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 30px;
    font-weight: 500;
    color: var(--sky);
    opacity: .55;
    line-height: 1;
    margin-bottom: 12px;
}

.dif__card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.dif__card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.6;
}

/* ---------- PROCESSO ---------- */
.processo { background: var(--white); }

.processo__track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.processo__line {
    position: absolute;
    top: 27px;
    left: 44px; right: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-tint), var(--gray-200) 30%, var(--gray-200) 70%, var(--blue-tint));
    border-radius: 1px;
}

.processo__step { text-align: center; position: relative; }

.processo__marker {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.processo__marker span {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    transition: color var(--transition);
}

.processo__step:hover .processo__marker {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(0, 128, 199, .3);
    transform: scale(1.08);
}

.processo__step:hover .processo__marker span { color: var(--white); }

.processo__step h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.processo__step p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ---------- FERRAMENTAS ---------- */
.ferramentas {
    background:
        radial-gradient(ellipse 700px 450px at 15% 20%, rgba(0, 128, 199, .12), transparent 55%),
        var(--navy-900);
}

.ferramentas .section__header { margin-bottom: 40px; }
.ferramentas .section__title { color: var(--white); }
.ferramentas .section__desc { color: rgba(255, 255, 255, .62); }

.ferramentas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.ferramentas__card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.ferramentas__card:hover {
    background: rgba(255, 255, 255, .085);
    border-color: rgba(94, 201, 255, .35);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .3);
}

.ferramentas__card-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: rgba(94, 201, 255, .12);
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ferramentas__card-icon .material-symbols-outlined { font-size: 28px; }

.ferramentas__card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.ferramentas__card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ferramentas__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sky);
}

.ferramentas__card-link .material-symbols-outlined { font-size: 18px; transition: transform var(--transition); }
.ferramentas__card:hover .ferramentas__card-link .material-symbols-outlined { transform: translateX(4px); }

/* ---------- CTA SECTION ---------- */
.cta-section {
    background:
        radial-gradient(ellipse 800px 400px at 80% 0%, rgba(255, 255, 255, .12), transparent 60%),
        linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .06);
    border-radius: 0 100% 0 24px;
    transform: rotate(180deg);
    pointer-events: none;
}

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -.3px;
    margin-bottom: 16px;
}

.cta-section__title em { font-style: italic; }

.cta-section__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 34px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- NOTÍCIAS ---------- */
.noticias { background: var(--white); }

.noticias__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.noticias__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition);
}

.noticias__card:hover {
    border-color: rgba(0, 128, 199, .5);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.noticias__card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.noticias__card-source {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-tint);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: .3px;
}

.noticias__card-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.noticias__card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticias__card-summary {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.noticias__card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.noticias__card-link .material-symbols-outlined { font-size: 16px; }

.noticias__footer {
    text-align: center;
    margin-top: 40px;
}

.noticias__footer .btn--outline {
    color: var(--gray-600);
    border-color: var(--gray-300);
}
.noticias__footer .btn--outline:hover {
    background: var(--paper);
    border-color: var(--gray-400);
}

.noticias__loading,
.noticias__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.noticias__spinner {
    font-size: 32px;
    animation: spin 1s linear infinite;
    display: block;
    margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }

.faq__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: start;
}

.faq__help-text {
    font-size: 15px;
    color: var(--gray-500);
    margin: 12px 0 24px;
    line-height: 1.7;
}

.faq__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item[open] {
    border-color: rgba(0, 128, 199, .5);
    box-shadow: 0 4px 16px rgba(0, 128, 199, .08);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--blue); }

.faq__chevron {
    font-size: 22px;
    color: var(--gray-400);
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
}

.faq__item[open] .faq__chevron { transform: rotate(180deg); color: var(--blue); }

.faq__answer { padding: 0 22px 20px; }
.faq__answer p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ---------- CONTATO ---------- */
.contato { background: var(--white); }

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.contato__desc {
    font-size: 16px;
    color: var(--gray-500);
    margin: 12px 0 32px;
    line-height: 1.7;
}

.contato__channels { display: flex; flex-direction: column; gap: 18px; }

.contato__channel { display: flex; gap: 14px; align-items: flex-start; }

.contato__channel-icon {
    width: 44px; height: 44px;
    background: var(--blue-tint);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.contato__channel-icon .material-symbols-outlined { font-size: 20px; color: var(--blue); }

.contato__channel strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.contato__channel p { font-size: 14px; color: var(--gray-500); margin: 0; }
.contato__channel a { color: var(--gray-500); }
.contato__channel a:hover { color: var(--blue); }

.contato__form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contato__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 13px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--navy);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #6d7789; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 128, 199, .12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238791a3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-consent {
    font-size: 12.5px;
    color: var(--gray-400);
    line-height: 1.6;
}

.form-consent a { color: var(--blue); font-weight: 600; }
.form-consent a:hover { text-decoration: underline; }

.form-status {
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    padding: 0;
    min-height: 0;
    transition: all var(--transition);
}

.form-status--ok {
    background: rgba(14, 159, 110, .1);
    border: 1px solid rgba(14, 159, 110, .3);
    color: var(--emerald);
    padding: 12px 16px;
}

.form-status--erro {
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .3);
    color: #b91c1c;
    padding: 12px 16px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-950);
    padding: 68px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer__logo { height: 28px; width: auto; margin-bottom: 16px; }

.footer__brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 300px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.footer__col { display: flex; flex-direction: column; gap: 11px; }

.footer__col h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .48);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.footer__col a, .footer__col span {
    font-size: 14px;
    color: rgba(255, 255, 255, .58);
}
.footer__col a:hover { color: var(--sky); }

.footer__bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: rgba(255, 255, 255, .42); }
.footer__bottom a { font-size: 13px; color: rgba(255, 255, 255, .42); }
.footer__bottom a:hover { color: var(--sky); }

/* ---------- WHATSAPP ---------- */
.wa { position: fixed; bottom: 24px; right: 24px; z-index: 999; }

.wa__btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa__btn:hover { transform: scale(1.07); box-shadow: 0 8px 28px rgba(37, 211, 102, .5); }
.wa__icon { width: 29px; height: 29px; }

.wa__popup {
    position: absolute;
    bottom: 74px; right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 56px rgba(13, 16, 41, .25);
    overflow: hidden;
    opacity: 0; visibility: hidden;
    transform: translateY(8px) scale(.97);
    transition: all var(--transition);
}

.wa.open .wa__popup { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.wa__popup-head {
    background: #075E54;
    color: var(--white);
    padding: 16px 18px;
    display: flex; align-items: center; gap: 12px;
}

.wa__avatar {
    width: 38px; height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
    object-fit: contain;
}

.wa__popup-head strong { font-size: 14px; display: block; }
.wa__popup-head span { font-size: 12px; color: rgba(255, 255, 255, .7); }

.wa__close {
    margin-left: auto;
    background: none; border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    opacity: .7;
    transition: opacity var(--transition);
    line-height: 1;
    padding: 2px 6px;
}
.wa__close:hover { opacity: 1; }

.wa__popup-body { padding: 18px; }
.wa__popup-body > p { font-size: 14px; color: var(--gray-600); margin-bottom: 14px; }

.wa__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    transition: all var(--transition);
}
.wa__link:last-child { margin-bottom: 0; }
.wa__link .material-symbols-outlined { font-size: 20px; color: #25D366; }
.wa__link:hover { background: #25D366; border-color: #25D366; color: var(--white); }
.wa__link:hover .material-symbols-outlined { color: var(--white); }

/* ---------- ANIMAÇÕES DE ENTRADA ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: translate(0); }

/* ---------- OVERLAY (menu mobile) ---------- */
.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(13, 16, 41, .55);
    z-index: 998;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.nav-overlay.visible { opacity: 1; visibility: visible; }

/* ---------- MOVIMENTO REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .trust-bar__inner { animation: none; }
    [data-animate] { opacity: 1; transform: none; }
    .hero__sim-bar { transition: none; }
    .hero__sim.loaded .hero__sim-bar { width: var(--w, 0%); }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 130px; }
    .hero__visual { max-width: 520px; }
    .hero__chip { top: -18px; right: 8px; }
    .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
    .servicos__grid { grid-template-columns: 1fr; }
    .dif__layout { grid-template-columns: 1fr; gap: 48px; }
    .dif__grid { grid-template-columns: repeat(2, 1fr); }
    .faq__layout { grid-template-columns: 1fr; gap: 36px; }
    .contato__grid { grid-template-columns: 1fr; gap: 48px; }
    .footer__top { grid-template-columns: 1fr; gap: 36px; }
    .noticias__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 76px 0; }

    .header__nav {
        position: fixed;
        top: 0; right: -100%;
        width: 82%; max-width: 340px; height: 100vh;
        height: 100dvh;
        background: var(--navy-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 92px 28px 28px;
        gap: 4px;
        transition: right .35s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, .35);
        overflow-y: auto;
    }

    .header__nav.open { right: 0; }

    .header__nav .header__link {
        color: rgba(255, 255, 255, .78);
        font-size: 16px;
        padding: 11px 0;
        width: 100%;
    }
    .header__nav .header__link::after { display: none; }

    .header__nav .header__link:hover,
    .header__nav .header__link.active { color: var(--white); }

    .header__nav-actions { margin-top: 20px; width: 100%; flex-direction: column; align-items: stretch; }
    .header__nav-actions .btn { width: 100%; }
    .header__nav-actions .btn--outline-dark { color: var(--sky); border-color: var(--sky); }
    .header__nav-actions .btn--outline-dark:hover { background: var(--sky); color: var(--navy-900); }

    .header__hamburger { display: flex; }

    .hide-mobile { display: none; }

    .hero__stats-inner { flex-wrap: wrap; gap: 24px; }
    .hero__stat-divider { display: none; }
    .hero__stat { flex: 0 0 40%; }

    .hero__sim { padding: 24px 20px; }

    .sobre__mosaic { grid-template-columns: 1fr 1fr; }

    .dif__grid { grid-template-columns: 1fr; }
    .processo__track { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .processo__line { display: none; }

    .noticias__grid { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__proof { gap: 12px; }
    .sobre__mosaic { grid-template-columns: 1fr; }
    .sobre__mosaic-card--big { grid-column: span 1; }
    .processo__track { grid-template-columns: 1fr; }
    .contato__form-wrap { padding: 26px 20px; }
    .footer__links { grid-template-columns: 1fr; }
    .wa { bottom: 18px; right: 18px; }
}
