:root {
  --teal: #29a89f;
  --teal-dark: #1f8f88;
  --blue: #217abe;
  --blue-dark: #155f95;
  --ink: #383838;
  --muted: #64748b;
  --line: rgba(33, 122, 190, 0.14);
  --white: #ffffff;
  --soft: #f4f6f9;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.07);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 4% 2%, rgba(41, 168, 159, 0.22), transparent 28%),
    radial-gradient(circle at 98% 0%, rgba(33, 122, 190, 0.18), transparent 26%),
    linear-gradient(180deg, #edf8fa 0%, #ffffff 24%, #f4fbfb 56%, #eef6fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(33, 122, 190, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 168, 159, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 76%);
}

img, svg { max-width: 100%; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 99999;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(33, 122, 190, 0.12);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.topbar {
  background: linear-gradient(90deg, var(--blue-dark), var(--teal-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a { color: #fff; opacity: .95; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  line-height: 1;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: .94rem;
  font-weight: 800;
}

.nav-menu a:not(.btn) {
  color: #4b5968;
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: right .2s ease;
}

.nav-menu a:not(.btn):hover { color: var(--teal-dark); }
.nav-menu a:not(.btn):hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 16px 30px rgba(41, 168, 159, .26);
}

.btn-primary:hover { background: linear-gradient(135deg, var(--teal-dark), var(--blue-dark)); }

.btn-outline {
  color: var(--teal-dark);
  background: rgba(255,255,255,.75);
  border-color: rgba(41,168,159,.55);
}

.btn-outline:hover { background: #effdfa; }
.btn-small { min-height: 40px; padding-inline: 18px; font-size: .88rem; }

.section-space { padding: 88px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(41,168,159,.20), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(33,122,190,.18), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(238,248,251,.96));
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.orb-a { width: 280px; height: 280px; left: -120px; bottom: 11%; background: rgba(41,168,159,.12); }
.orb-b { width: 230px; height: 230px; right: -60px; top: 18%; background: rgba(33,122,190,.10); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1, .section-title h2, .quote-copy h2, .service-head h2, .final-cta h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -.045em;
}

.hero h1 { max-width: 620px; }

.hero-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1;
  font-weight: 950;
}

.hero h1 span:last-child {
  display: block;
  font-size: clamp(2.15rem, 4.1vw, 3.75rem);
  line-height: 1.02;
  font-weight: 950;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: #536273;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.walk-scene {
  position: relative;
  width: min(430px, 100%);
  height: 68px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(41,168,159,.20);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(41,168,159,.14), rgba(255,255,255,.92), rgba(33,122,190,.14));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 18px 34px rgba(33,122,190,.09);
}

.walk-road {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 17px;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(33,122,190,.56) 0 28px, transparent 28px 42px);
  border-radius: 999px;
}

.walk-building {
  position: absolute;
  bottom: 20px;
  width: 22px;
  border-radius: 5px 5px 0 0;
  background: rgba(41,168,159,.18);
}

.building-one { left: 62px; height: 24px; }
.building-two { left: 102px; height: 32px; background: rgba(33,122,190,.14); }
.building-three { right: 74px; height: 28px; }

.walker {
  position: absolute;
  left: -28px;
  bottom: 22px;
  width: 22px;
  height: 32px;
  animation: walkAcross 6.4s linear infinite;
}

.walker-head {
  position: absolute;
  left: 7px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-dark);
}

.walker-body, .walker-arm, .walker-leg {
  position: absolute;
  left: 11px;
  width: 3px;
  border-radius: 999px;
  transform-origin: top center;
  background: var(--ink);
}

.walker-body { top: 11px; height: 14px; }
.walker-arm { top: 15px; height: 12px; }
.walker-leg { top: 24px; height: 13px; }
.arm-one { animation: swingA .76s ease-in-out infinite alternate; }
.arm-two { animation: swingB .76s ease-in-out infinite alternate; }
.leg-one { animation: swingB .76s ease-in-out infinite alternate; }
.leg-two { animation: swingA .76s ease-in-out infinite alternate; }

@keyframes walkAcross { from { transform: translateX(0); } to { transform: translateX(490px); } }
@keyframes swingA { from { transform: rotate(32deg); } to { transform: rotate(-30deg); } }
@keyframes swingB { from { transform: rotate(-30deg); } to { transform: rotate(32deg); } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(41,168,159,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #455465;
  font-size: .82rem;
  font-weight: 850;
}

.hero-visual { position: relative; }

.hero-image-card {
  overflow: hidden;
  border: 1px solid rgba(33,122,190,.13);
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-mini-cards div {
  padding: 14px;
  border: 1px solid rgba(33,122,190,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.hero-mini-cards strong { display: block; color: var(--teal-dark); font-size: .92rem; }
.hero-mini-cards span { display: block; color: var(--muted); font-size: .78rem; }

.institution-strip {
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(255,255,255,.88), rgba(233,250,248,.96), rgba(237,247,255,.92));
  border-top: 1px solid rgba(33,122,190,.10);
  border-bottom: 1px solid rgba(33,122,190,.10);
}

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

.institution-grid div {
  padding: 16px 18px;
  border: 1px solid rgba(33,122,190,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
}

.institution-grid span, .institution-grid small { display: block; color: var(--muted); font-size: .82rem; }
.institution-grid strong { display: block; color: var(--ink); font-size: .98rem; }

.section-title { max-width: 780px; margin-bottom: 34px; }
.section-title h2, .quote-copy h2, .service-head h2, .final-cta h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.06; }
.section-title p:not(.eyebrow), .quote-copy p, .service-head p, .final-cta p { margin: 14px 0 0; max-width: 700px; color: #5d6a78; font-size: 1.04rem; }

.ramos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ramo-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(33,122,190,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ramo-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(41,168,159,.10);
}

.ramo-card:hover { transform: translateY(-5px); border-color: rgba(41,168,159,.34); box-shadow: 0 22px 48px rgba(33,122,190,.12); }

.ramo-card h3 { margin: 18px 0 8px; font-size: 1.12rem; line-height: 1.25; }
.ramo-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.ramo-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(41,168,159,.18), rgba(33,122,190,.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}


.ramo-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.quote-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(41,168,159,.14), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(33,122,190,.10), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(235,248,250,.95));
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.quote-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.quote-badges span { padding: 8px 12px; border-radius: 999px; background: #fff; border: 1px solid rgba(41,168,159,.20); color: var(--teal-dark); font-weight: 900; font-size: .82rem; }

.quote-card {
  padding: 30px;
  border: 1px solid rgba(33,122,190,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.quote-card label { display: block; margin: 0 0 8px; color: var(--ink); font-weight: 900; }
.quote-card select, .quote-card input { width: 100%; height: 52px; padding: 0 15px; margin-bottom: 18px; border: 1px solid #d5e1e8; border-radius: 15px; outline: none; background: #fff; color: var(--ink); }
.quote-card select:focus, .quote-card input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(41,168,159,.13); }
.quote-card button { width: 100%; }
.form-message { min-height: 21px; margin: 12px 0 0; color: var(--blue); font-size: .91rem; font-weight: 850; }

.service-section {
  background:
    linear-gradient(180deg, rgba(236,248,250,.90), rgba(255,255,255,.58)),
    radial-gradient(circle at 12% 18%, rgba(41,168,159,.16), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(33,122,190,.14), transparent 28%);
}

.service-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(33,122,190,.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(41,168,159,.14), transparent 32%),
    radial-gradient(circle at left bottom, rgba(33,122,190,.10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,253,252,.97) 52%, rgba(239,247,255,.95));
  box-shadow: var(--shadow);
}

.service-head {
  max-width: 830px;
  margin-bottom: 30px;
}

.service-head h2 {
  position: relative;
  padding-left: 18px;
}

.service-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .12em;
  width: 5px;
  height: .9em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  --accent: var(--teal);
  --accent2: var(--blue);
  --soft-card: #e9fffb;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(33,122,190,.13);
  border-radius: 26px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 42px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.service-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--soft-card);
  opacity: .7;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41,168,159,.30);
  box-shadow: 0 24px 54px rgba(33,122,190,.13);
}

.service-icon-box {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--soft-card), #fff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 24px rgba(15,23,42,.08);
}

.service-icon-box svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent2);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-copy { position: relative; z-index: 1; min-width: 0; }
.service-copy h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.24; }
.service-copy p { margin: 0; color: var(--muted); font-size: .95rem; }
.service-copy a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--accent2); font-weight: 950; }
.service-copy a::after { content: "›"; font-size: 1.25em; line-height: 1; }

.service-whatsapp { --accent: #29a89f; --accent2: #139c5a; --soft-card: #dcfce7; }
.service-email { --accent: #29a89f; --accent2: #217abe; --soft-card: #dbeafe; }
.service-brasil { --accent: #217abe; --accent2: #0f9fb5; --soft-card: #cffafe; }
.service-susep { --accent: #29a89f; --accent2: #0f766e; --soft-card: #ccfbf1; }
.service-responsavel { --accent: #217abe; --accent2: #2563eb; --soft-card: #e0e7ff; }
.service-lgpd { --accent: #29a89f; --accent2: #0f8f88; --soft-card: #e9fffb; }

.reasons-section {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(236,247,251,.72));
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reason-card {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,251,250,.96));
  border: 1px solid rgba(33,122,190,.13);
  box-shadow: var(--shadow-soft);
}

.reason-card span { color: var(--blue); font-size: .92rem; font-weight: 950; letter-spacing: .18em; }
.reason-card h3 { margin: 14px 0 8px; font-size: 1.2rem; line-height: 1.25; }
.reason-card p { margin: 0; color: var(--muted); }

.blog-section { background: rgba(255,255,255,.54); }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.blog-card { padding: 28px; border: 1px solid rgba(33,122,190,.14); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.blog-card span { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: #e9fffb; color: var(--teal-dark); font-size: .78rem; font-weight: 950; }
.blog-card h3 { margin: 16px 0 10px; font-size: 1.25rem; line-height: 1.25; }
.blog-card p { margin: 0; color: var(--muted); }
.blog-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--blue); font-weight: 950; }
.blog-card a::after { content: "›"; }

.final-cta { padding-top: 0; }
.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow, .final-cta h2, .final-cta p { color: #fff; }
.final-cta p { opacity: .9; }
.final-cta .btn-primary { background: #fff; color: var(--teal-dark); box-shadow: none; }
.final-cta .btn-primary:hover { background: #f0fffd; }

.site-footer {
  padding: 56px 0 26px;
  background: #243140;
  color: #d7e5ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr 1.1fr;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 950;
  letter-spacing: .12em;
}

.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.site-footer h2 { margin: 0 0 12px; color: #fff; font-size: 1rem; }
.site-footer p { margin: 6px 0; color: #c8d7e4; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #aebccd; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(135deg, #29a89f, #139c5a);
  color: #fff;
  box-shadow: 0 18px 40px rgba(41,168,159,.36);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .65s ease, transform .65s ease; }

.policy-page {
  background:
    radial-gradient(circle at 4% 2%, rgba(41, 168, 159, 0.20), transparent 28%),
    radial-gradient(circle at 98% 0%, rgba(33, 122, 190, 0.16), transparent 26%),
    linear-gradient(180deg, #eef8fa 0%, #ffffff 42%, #f3fbfb 100%);
}

.policy-hero { padding: 82px 0; }
.policy-card {
  max-width: 960px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(33,122,190,.14);
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.policy-card h1 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
.policy-card h2 { margin: 32px 0 10px; font-size: 1.24rem; }
.policy-card p, .policy-card li { color: #5d6a78; }
.policy-card a { color: var(--blue); font-weight: 900; }

@media (max-width: 1020px) {
  .policy-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 120px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 640px; }
  .ramos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-grid, .reasons-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .policy-nav {
    display: none;
  }

  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; }
  .topbar-links { gap: 10px; }
  .nav { min-height: 70px; }
  .brand { min-width: auto; }
  .brand small { display: none; }
  .section-space { padding: 62px 0; }
  .hero h1 span:last-child { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-actions .btn { width: 100%; }
  .hero-facts span { width: 100%; }
  .hero-mini-cards, .institution-grid, .ramos-grid, .quote-grid, .service-grid, .reasons-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-panel { padding: 22px; border-radius: 28px; }
  .service-card { grid-template-columns: 56px minmax(0, 1fr); min-height: auto; padding: 20px; }
  .service-icon-box { width: 52px; height: 52px; border-radius: 16px; }
  .final-cta-card { align-items: flex-start; flex-direction: column; }
  .final-cta-card .btn { width: 100%; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
