/* ==========================================================================
   Dario Romeu Corretora de Seguros — Identidade visual
   Paleta azul & branco · estilo corporativo moderno
   Sobre o Bootstrap 5.3 (carregado via CDN no HTML)
   ========================================================================== */

:root {
  /* --- AZUL DA MARCA -------------------------------------------------------
     Ajuste APENAS estas variáveis para casar 100% com o azul do logo/header.
     --brand é o azul principal do header do site atual.                     */
  --brand:        #1f51a4;   /* azul principal (header) — oficial do site */
  --brand-900:    #122F60;   /* navy profundo (degradês/rodapé) */
  --brand-700:    #1A4488;
  --brand-500:    #2E6BD0;   /* azul interativo (links/hover) */
  --brand-300:    #6A99DE;   /* azul claro de apoio */
  --brand-50:     #EEF3FB;   /* fundo levíssimo */
  --brand-tint:   #D8E4F6;

  /* --- Neutros ----------------------------------------------------------- */
  --ink:          #0F1B2D;   /* texto forte */
  --slate:        #56657C;   /* texto secundário */
  --line:         #E2EAF4;   /* divisórias */
  --paper:        #FFFFFF;
  --paper-2:      #F7FAFE;

  /* --- Apoio ------------------------------------------------------------- */
  --whats:        #25D366;
  --whats-dark:   #1EAE54;
  --gold:         #E0A93B;   /* selo "desde 1988" — toque pontual */

  /* --- Tipografia -------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Space Grotesk", "Inter", monospace;

  /* --- Forma ------------------------------------------------------------- */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    26px;
  --shadow-sm:    0 2px 10px rgba(6,44,95,.06);
  --shadow:       0 14px 40px rgba(6,44,95,.10);
  --shadow-lg:    0 30px 70px rgba(6,44,95,.16);
  --maxw:         1200px;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-face {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

a { color: var(--brand-500); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-700); }

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

.container-x { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-500);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brand-500);
  display: inline-block;
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-pad-sm { padding-block: clamp(40px, 5vw, 64px); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 14px 0 14px; }
.section-head p { color: var(--slate); font-size: 1.06rem; margin: 0; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ==========================================================================
   Botões
   ========================================================================== */
.btn-dr {
  --c: var(--brand);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .98rem;
  letter-spacing: -.01em;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-dr svg { width: 19px; height: 19px; }
.btn-dr:active { transform: translateY(1px); }

.btn-primary-dr { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(31,81,164,.30); }
.btn-primary-dr:hover { background: var(--brand-700); color: #fff; box-shadow: 0 14px 30px rgba(31,81,164,.40); transform: translateY(-2px); }

.btn-ghost-dr { background: #fff; color: var(--brand); border-color: var(--brand-tint); }
.btn-ghost-dr:hover { border-color: var(--brand); color: var(--brand-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.30); }
.btn-whats:hover { background: var(--whats-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.40); }

.btn-light-dr { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-light-dr:hover { background: #fff; color: var(--brand-900); }

.btn-block-dr { width: 100%; justify-content: center; }

/* ==========================================================================
   Top bar utilitária
   ========================================================================== */
.topbar {
  background: var(--brand-900);
  color: rgba(255,255,255,.82);
  font-size: .85rem;
}
.topbar .container-x { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 42px; padding-block: 6px; }
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .tb-item svg { width: 15px; height: 15px; opacity: .8; }
.topbar .tb-social { display: flex; gap: 10px; align-items: center; }
.topbar .tb-social a {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,.10);
}
.topbar .tb-social a:hover { background: var(--brand-500); }
.topbar .tb-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: var(--brand);
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-stuck {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-700) 100%);
  box-shadow: 0 10px 30px rgba(18,47,96,.30);
}
.navbar-dr { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }

/* Logo lockup */
.brand-lock { display: inline-flex; align-items: center; gap: 12px; }
.brand-lock .logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 520px) { .brand-lock .logo-img { height: 40px; } }
.brand-lock .mark {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-900) 100%);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(31,81,164,.30);
}
.brand-lock .mark svg { width: 24px; height: 24px; }
.brand-lock .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-lock .wordmark .n1 { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--brand-900); letter-spacing: -.02em; }
.brand-lock .wordmark .n2 { font-family: var(--font-mono); font-size: .58rem; font-weight: 500; letter-spacing: .26em; color: var(--brand-500); text-transform: uppercase; margin-top: 4px; }

/* Nav principal */
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main .nav-link-dr {
  font-family: var(--font-display);
  font-weight: 500; font-size: .96rem;
  color: rgba(255,255,255,.88); padding: .55rem .8rem; border-radius: 9px;
  position: relative; cursor: pointer; background: none; border: 0;
  display: inline-flex; align-items: center; gap: .35rem;
  white-space: nowrap;
}
.nav-main .nav-link-dr:hover { color: #fff; background: rgba(255,255,255,.14); }
.nav-main .nav-link-dr .chev { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item-dr { position: relative; }
.nav-item-dr:hover .chev { transform: rotate(180deg); }

/* Mega dropdown produtos */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(720px, 86vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 18px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
}
.nav-item-dr:hover .mega, .nav-item-dr:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; color: var(--ink); font-size: .92rem; font-weight: 500; }
.mega a:hover { background: var(--brand-50); color: var(--brand-700); }
.mega a .mi { width: 30px; height: 30px; border-radius: 8px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; flex: 0 0 auto; }
.mega a .mi svg { width: 17px; height: 17px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; background: rgba(255,255,255,.10); border: 1.5px solid rgba(255,255,255,.30); border-radius: 11px; width: 46px; height: 46px; place-items: center; color: #fff; }
.nav-burger svg { width: 24px; height: 24px; }

/* No header azul, o botão de cotação fica branco para contrastar */
.site-header .btn-cota-desk { background: #fff; color: var(--brand); box-shadow: 0 8px 20px rgba(18,47,96,.22); }
.site-header .btn-cota-desk:hover { background: var(--brand-50); color: var(--brand-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18,47,96,.30); }

@media (max-width: 1080px) {
  .nav-main { display: none; }
  .nav-cta .btn-cota-desk { display: none; }
  .nav-burger { display: grid; }
}
@media (max-width: 520px) {
  .nav-cta .btn-whats-desk { display: none; }
  .brand-lock .wordmark .n2 { letter-spacing: .18em; }
}

/* Offcanvas mobile (usa componente do Bootstrap) */
.offcanvas-dr { width: min(360px, 90vw) !important; }
.offcanvas-dr .offcanvas-header { background: var(--brand); padding: 16px 18px; }
.offcanvas-dr .offcanvas-header .logo-img { height: 38px; }
.offcanvas-dr .offcanvas-header .btn-close { filter: brightness(0) invert(1); opacity: .9; }
.offcanvas-dr .offcanvas-body { padding: 18px 22px 28px; }
.offcanvas-dr .oc-link { display: block; padding: 13px 4px; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.offcanvas-dr .oc-link:hover { color: var(--brand); }
.offcanvas-dr .oc-sub { font-size: .82rem; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; margin: 18px 0 6px; font-family: var(--font-mono); }
.offcanvas-dr .oc-sublink { display: block; padding: 8px 4px; color: var(--slate); font-size: .95rem; }
.offcanvas-dr .oc-sublink:hover { color: var(--brand); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(21,101,216,.16), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(31,81,164,.10), transparent 55%),
    linear-gradient(180deg, var(--brand-50) 0%, #ffffff 78%);
}
/* Motivo "cobertura" — linhas de escudo sutis ao fundo (assinatura) */
.hero .shield-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(31,81,164,.05) 0 1px, transparent 1px);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-block: clamp(48px, 7vw, 92px);
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.85rem);
  margin: 0 0 20px;
}
.hero h1 .hl { color: var(--brand); position: relative; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .26em;
  background: var(--brand-tint); z-index: -1; border-radius: 4px;
}
.hero-sub { font-size: 1.16rem; color: var(--slate); max-width: 540px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht .num { font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem; color: var(--brand-900); line-height: 1; }
.hero-trust .ht .lab { font-size: .82rem; color: var(--slate); margin-top: 5px; }
.hero-trust .sep { width: 1px; height: 38px; background: var(--line); }

/* Card funil (assinatura interativa) */
.funnel-card {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 30px; position: relative;
}
.funnel-card::before {
  content: ""; position: absolute; inset: -1px -1px auto -1px; height: 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--brand-900), var(--brand), var(--brand-500));
}
.funnel-card .fc-tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-500); font-weight: 600; }
.funnel-card h3 { font-size: 1.42rem; margin: 8px 0 4px; }
.funnel-card .fc-desc { color: var(--slate); font-size: .95rem; margin-bottom: 20px; }
.fc-label { font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; display: block; }
.fc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fc-chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 999px; padding: .5rem .9rem; font-size: .86rem; font-weight: 500;
  cursor: pointer; transition: all .18s ease; display: inline-flex; align-items: center; gap: .4rem;
}
.fc-chip svg { width: 15px; height: 15px; color: var(--brand); }
.fc-chip:hover { border-color: var(--brand-300); background: var(--brand-50); }
.fc-chip.active { border-color: var(--brand); background: var(--brand); color: #fff; }
.fc-chip.active svg { color: #fff; }
.fc-field { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem 1rem; font-family: var(--font-body); font-size: .95rem; margin-bottom: 12px; color: var(--ink); }
.fc-field:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.funnel-card .fc-note { font-size: .78rem; color: var(--slate); text-align: center; margin: 12px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; }
.funnel-card .fc-note svg { width: 14px; height: 14px; color: var(--whats-dark); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .funnel-card { max-width: 520px; }
}

/* ==========================================================================
   Faixa seguradoras
   ========================================================================== */
.insurers { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.insurers .container-x { padding-block: 26px; }
.insurers .ins-lead { font-size: .82rem; color: var(--slate); text-align: center; margin-bottom: 18px; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.ins-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.ins-chip {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--brand-900);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px;
  padding: .5rem .95rem; transition: all .2s ease;
}
.ins-chip:hover { border-color: var(--brand-300); color: var(--brand); transform: translateY(-2px); }

/* ==========================================================================
   Produtos
   ========================================================================== */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .22s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: 12px; cursor: pointer; position: relative; overflow: hidden;
}
.prod-card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 120px; height: 120px;
  background: var(--brand-50); border-radius: 50%; transition: transform .3s ease; z-index: 0;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand-tint); }
.prod-card:hover::after { transform: scale(1.6); }
.prod-card > * { position: relative; z-index: 1; }
.prod-card .pc-ico { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(150deg, var(--brand), var(--brand-700)); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(31,81,164,.25); }
.prod-card .pc-ico svg { width: 26px; height: 26px; }
.prod-card h3 { font-size: 1.12rem; margin: 0; }
.prod-card p { font-size: .9rem; color: var(--slate); margin: 0; flex: 1; }
.prod-card .pc-link { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.prod-card .pc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.prod-card:hover .pc-link svg { transform: translateX(4px); }

@media (max-width: 1080px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .prod-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.why { background: var(--paper-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: grid; gap: 14px; }
.why-item { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: box-shadow .25s ease, transform .2s ease; }
.why-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-item .wi-ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; }
.why-item .wi-ico svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.08rem; margin: 0 0 5px; }
.why-item p { font-size: .92rem; color: var(--slate); margin: 0; }
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   Como funciona (funil em passos)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step .st-num { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--brand); width: 42px; height: 42px; border-radius: 11px; background: var(--brand-50); display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin: 0 0 7px; }
.step p { font-size: .9rem; color: var(--slate); margin: 0; }
.step .st-arrow { position: absolute; top: 44px; right: -13px; color: var(--brand-300); z-index: 3; }
.step .st-arrow svg { width: 24px; height: 24px; }
.step:last-child .st-arrow { display: none; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } .step .st-arrow { display: none; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Faixa de números
   ========================================================================== */
.stats {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand) 100%);
  color: #fff;
}
.stats::before {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0);
  background-size: 26px 26px;
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .s-num { font-family: var(--font-mono); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -.02em; }
.stat .s-lab { margin-top: 10px; font-size: .96rem; color: rgba(255,255,255,.82); }
.stat .s-num .suf { color: var(--brand-300); }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; } }

/* ==========================================================================
   Autoatendimento
   ========================================================================== */
.self-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.self-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: all .22s ease; }
.self-card:hover { border-color: var(--brand-tint); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.self-card .sc-ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; }
.self-card .sc-ico svg { width: 23px; height: 23px; }
.self-card h3 { font-size: 1rem; margin: 0 0 2px; }
.self-card p { font-size: .85rem; color: var(--slate); margin: 0; }
.self-card .sc-go { margin-left: auto; color: var(--brand-300); }
.self-card:hover .sc-go { color: var(--brand); }
@media (max-width: 860px) { .self-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .self-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contato / CTA final
   ========================================================================== */
.contact { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: stretch; }
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 14px 0 16px; }
.contact-info > p { color: var(--slate); font-size: 1.06rem; max-width: 440px; }
.ci-list { display: grid; gap: 14px; margin: 28px 0; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-item .ci-ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--brand); display: grid; place-items: center; }
.ci-item .ci-ico svg { width: 21px; height: 21px; }
.ci-item .ci-k { font-size: .8rem; color: var(--slate); text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); }
.ci-item .ci-v { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.ci-item a.ci-v:hover { color: var(--brand); }
.ci-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 200px; margin-top: 8px; }
.ci-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px; }
.contact-form h3 { font-size: 1.4rem; margin: 0 0 6px; }
.contact-form .cf-sub { color: var(--slate); font-size: .94rem; margin-bottom: 24px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.cf-group label .req { color: var(--brand); }
.cf-input, .cf-select, .cf-textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: .82rem 1rem;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.cf-textarea { resize: vertical; min-height: 96px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-error { display: none; color: #C0392B; font-size: .8rem; margin-top: 5px; }
.cf-group.invalid .cf-input, .cf-group.invalid .cf-select { border-color: #E07A6E; }
.cf-group.invalid .cf-error { display: block; }
.cf-actions { margin-top: 8px; }
.cf-consent { font-size: .78rem; color: var(--slate); margin-top: 14px; text-align: center; }
.cf-feedback { display: none; background: var(--brand-50); border: 1px solid var(--brand-tint); color: var(--brand-900); border-radius: 12px; padding: 14px 16px; font-size: .9rem; margin-top: 16px; }
.cf-feedback.show { display: block; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } .cf-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Rodapé
   ========================================================================== */
.site-footer { background: var(--brand-900); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer-brand .brand-lock .wordmark .n1 { color: #fff; }
.footer-brand p { font-size: .92rem; margin: 18px 0; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer-social a:hover { background: var(--brand-500); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-mono); margin: 0 0 18px; }
.footer-col a { display: block; color: rgba(255,255,255,.72); font-size: .92rem; padding: 6px 0; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.7); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whats); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whats); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 520px) { .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; } .wa-float svg { width: 28px; height: 28px; } }

/* ==========================================================================
   Animações de entrada (scroll reveal)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .wa-float::before { animation: none; }
}

/* Foco visível (acessibilidade) */
a:focus-visible, button:focus-visible, .fc-chip:focus-visible, .cf-input:focus-visible {
  outline: 3px solid var(--brand-300); outline-offset: 2px;
}
