:root {
  --blue: #1f4790;
  --blue-2: #3b6cc5;
  --orange: #ff7a1a;
  --peach: #ffd7b8;
  --peach-2: #fff1e4;
  --ink: #212529;
  --muted: #5b6b86;
  --line: #e8edf5;
  --bg: #fdfdfd;
  --white: #fff;
  --shadow: 0 18px 50px rgba(31, 71, 144, 0.12);
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --danger: #b42318;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --max: 1120px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body.is-menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0 0 0.45em; color: var(--blue); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 7.2vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.45rem, 4vw, 2.2rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
em { font-style: normal; color: var(--orange); }

.wrap {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left)) max(var(--pad), env(safe-area-inset-right));
}
.center { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.center p { color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip {
  position: absolute; left: 1rem; top: -3rem; z-index: 30;
  background: var(--blue); color: #fff; padding: 0.5rem 0.8rem;
}
.skip:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
section[id] { scroll-margin-top: 80px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: transform 180ms ease-out, background 180ms ease-out;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange); }
.btn--primary:hover { filter: brightness(0.96); }
.btn--secondary {
  background: transparent;
  color: var(--blue);
  box-shadow: inset 0 0 0 1.5px var(--blue);
}
.btn--whatsapp { background: #25d366; gap: 0.4rem; }
.btn--whatsapp:hover { background: #1ebe5d; }
.btn i { font-size: 1.15rem; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1e4;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--muted { background: #eef3fb; color: var(--blue); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.alert {
  background: #fff3e6;
  border-bottom: 1px solid #f3d7bc;
  font-size: 0.8125rem;
}
.alert__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}
.alert p {
  margin: 0;
  min-width: 0;
  color: #9a4b12;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert p i { flex-shrink: 0; }
.alert__full { display: none; }
.alert__short,
.alert a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.alert a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  min-height: 32px;
}

.head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head__in {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.logo strong { display: block; color: var(--blue); font-size: clamp(0.95rem, 3.5vw, 1.15rem); line-height: 1.15; }
.logo span { color: var(--orange); }
.logo small { display: block; color: var(--muted); font-size: 0.72rem; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--blue); color: #fff; font-size: 1.25rem;
}
.menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  flex-direction: column;
  padding: 8px var(--pad) 16px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(31, 71, 144, 0.1);
}
.menu.is-open { display: flex; }
.menu a {
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.menu a:last-child { border-bottom: 0; }
.menu a:hover,
.menu a[aria-current="page"] { color: var(--orange); }
.head__cta { display: none; }
.menu-btn {
  display: grid;
  place-items: center;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.hero { position: relative; overflow: hidden; padding: 2rem 0 1.5rem; }
.blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, #ffd7b8 0%, rgba(255,215,184,0) 70%);
  pointer-events: none;
}
.blob--a { width: min(520px, 90vw); height: min(520px, 90vw); right: -80px; top: -80px; }
.blob--b { width: 220px; height: 220px; right: 10%; top: 40px; opacity: 0.7; }
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.hero__lead { color: var(--muted); max-width: 36rem; }
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 1.25rem 0 0;
}
.hero__cta .btn { width: 100%; }

.panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}
.panel__bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1rem; background: #f6f8fc; color: var(--muted); font-size: 0.82rem;
}
.panel__bar span { width: 9px; height: 9px; border-radius: 50%; background: #ffb4b4; }
.panel__bar span:nth-child(2) { background: #ffe08a; }
.panel__bar span:nth-child(3) { background: #b8e6b8; }
.panel__bar b { margin-left: 0.4rem; color: var(--blue); }
.panel__tabs { display: flex; gap: 0.4rem; padding: 0.8rem 1rem 0; flex-wrap: wrap; }
.panel__tabs span {
  padding: 0.35rem 0.7rem; border-radius: 999px; font-size: 0.8rem;
  background: var(--peach-2); color: var(--blue);
}
.panel__tabs .is-on { background: var(--blue); color: #fff; }
.panel__card { padding: 1rem; }
.panel__card label { display: block; font-size: 0.75rem; color: var(--muted); margin: 0.4rem 0 0.2rem; }
.fake-select {
  border: 1px solid var(--line); border-radius: 10px; padding: 0.65rem 0.8rem; background: #fafbfe;
  word-break: break-word;
}
.panel__row {
  display: flex; justify-content: space-between; gap: 12px; margin-top: 0.8rem;
  padding-top: 0.7rem; border-top: 1px dashed var(--line); font-size: 0.9rem;
}
.panel__row strong { color: var(--orange); }
.panel__list { list-style: none; margin: 0; padding: 0 1rem 1rem; color: var(--muted); font-size: 0.9rem; }
.panel__list li { display: flex; gap: 0.4rem; margin-bottom: 0.35rem; }
.panel__list i { color: #2f9e5b; flex-shrink: 0; }

.trust { padding: 0.5rem 0 2.5rem; }
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.trust article { text-align: center; padding: 1.25rem 0.25rem; }
.trust article + article { border-top: 1px solid var(--line); }
.trust p { color: var(--muted); margin: 0; }
.icon-circle {
  width: 64px; height: 64px; margin: 0 auto 0.8rem;
  border-radius: 50%; background: var(--peach-2);
  display: grid; place-items: center;
  color: var(--orange); font-size: 1.6rem;
}

.services { padding: 2rem 0 3rem; }
.cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 16px;
}
.card i { font-size: 1.5rem; color: var(--orange); }
.card h3 { margin-top: 12px; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.steps { padding: 2.5rem 0; background: linear-gradient(180deg, #fff, var(--peach-2)); }
.steps__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.steps__grid li {
  background: #fff; border-radius: 18px; padding: 1.2rem;
  border: 1px solid var(--line);
}
.steps__grid span {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: #fff; font-weight: 700; margin-bottom: 0.7rem;
}
.steps__grid p { color: var(--muted); margin: 0; font-size: 0.92rem; }

.brands { padding: 2.5rem 0; }
.brands__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.brands__grid li {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  text-align: center; padding: 0.85rem 0.4rem;
  color: var(--blue); font-weight: 600;
}

.faq { padding: 1rem 0 3rem; }
.faq__list { max-width: 760px; margin: 0 auto; }
details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 4px 16px; margin-bottom: 8px;
}
summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 180ms ease-out;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(225deg); }
details p { margin: 0 0 16px; color: var(--muted); }

.book { padding: 2.5rem 0 calc(3.5rem + 72px); background: var(--blue); color: #fff; }
.book h2 { color: #fff; }
.book p { color: #d7e3f7; }
.book__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
.book .btn { margin: 0.4rem 0 1rem; width: 100%; max-width: 22rem; }
.mail {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--peach);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}
.wa-float i {
  position: relative;
  z-index: 1;
  font-size: 1.85rem;
  animation: wa-wiggle 1.6s ease-in-out infinite;
}
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 1.8s ease-out infinite;
}
.wa-float__ring--2 { animation-delay: 0.7s; }
.wa-float:hover { background: #1ebe5d; }
.wa-float:hover i { animation-play-state: paused; }

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes wa-wiggle {
  0%, 70%, 100% { transform: rotate(0) scale(1); }
  78% { transform: rotate(14deg) scale(1.08); }
  86% { transform: rotate(-12deg) scale(1.08); }
  93% { transform: rotate(8deg) scale(1.04); }
}

.form {
  display: grid; gap: 16px;
  background: #fff; color: var(--ink);
  padding: 20px; border-radius: 16px;
}
.field { display: grid; gap: 8px; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--blue); }
.form input, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px; font: inherit; color: var(--ink); min-height: 48px;
}
.form textarea { min-height: 112px; resize: vertical; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
.form input.is-invalid, .form textarea.is-invalid { border-color: var(--danger); }
.field__error { margin: 0; color: var(--danger); font-size: 0.8rem; }
.form .btn { width: 100%; }

.foot { background: #152a54; color: #c5d3ea; padding: 2.5rem 0 calc(1.2rem + env(safe-area-inset-bottom)); }
.foot__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.foot h3 { color: #fff; font-size: 1rem; }
.foot a, .foot p { display: block; margin-bottom: 0.35rem; overflow-wrap: anywhere; }
.foot a { min-height: 32px; }
.foot a:hover { color: var(--orange); }
.logo--light strong { color: #fff; }
.foot__copy {
  margin-top: 1.6rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.86rem;
}

@media (min-width: 480px) {
  .alert__full { display: inline; }
  .alert__short { display: none; }
  .logo strong { font-size: 1.2rem; }
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero__cta .btn { width: auto; }
  .cards,
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .form { padding: 24px; }
}

@media (min-width: 768px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .trust article { padding: 0.5rem 0.75rem; }
  .trust article + article { border-top: 0; border-left: 1px solid var(--line); }
  .brands__grid { grid-template-columns: repeat(5, 1fr); }
  .book { padding: 4rem 0 4rem; }
  .book__grid { grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
  .book .btn { width: auto; }
  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 961px) {
  .menu-btn { display: none; }
  .head__cta { display: inline-flex; flex-shrink: 0; }
  .menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 1.35rem;
  }
  .menu a {
    min-height: auto;
    border: 0;
    font-size: 0.95rem;
    font-weight: 500;
  }
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
  .cards,
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
  .card { min-height: 176px; }
  .icon-circle { width: 74px; height: 74px; font-size: 1.7rem; }
  .wa-float { width: 62px; height: 62px; }
  .wa-float i { font-size: 2rem; }
  .services { padding: 2rem 0 4rem; }
  .trust { padding: 1rem 0 3.5rem; }
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.875rem;
}
.crumbs a { color: var(--blue); }
.crumbs a:hover { color: var(--orange); }
.page { padding: 2rem 0 3rem; }
.page__lead { color: var(--muted); max-width: 40rem; font-size: 1.05rem; }
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose ul { padding-left: 1.2rem; }
.contact-cards h2 { font-size: 1.05rem; }
.service-list { display: grid; gap: 12px; margin: 0 0 2rem; padding: 0; list-style: none; }
.service-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
}
.service-list h2 { font-size: 1.15rem; margin-bottom: 0.35em; }
.service-list h2 a { color: var(--blue); }
.service-list h2 a:hover { color: var(--orange); }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 1.5rem 0 2rem;
}
.contact-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.contact-cards i { color: var(--orange); font-size: 1.4rem; }
.contact-cards a { color: var(--blue); font-weight: 600; }
.err {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}
.err p { color: var(--muted); }

@media (min-width: 768px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wa-float i,
  .wa-float__ring { animation: none; }
}
