/* =============================================================================
   Tio Gelo — site institucional
   Regra que governa a paleta inteira: marca ≠ ação.
   Marinho é a marca (cabeçalho, títulos, ícones). Laranja é a ação, e só a ação
   — todo botão primário, nada mais. O laranja da logo (#E2661B) dá 3.4:1 com
   texto branco; o botão usa o 600 (#C4550F), que dá 4.51:1.
   ========================================================================== */

:root {
  /* Marinho — a marca */
  --navy-50: #eef3f7;
  --navy-100: #d9e4ee;
  --navy-200: #b6cbdd;
  --navy-300: #9dbbd4;
  --navy-400: #5b7fa0;
  --navy-500: #2c5375;
  --navy-600: #1b4062;
  --navy-700: #123553;
  --navy-800: #0a2a45;
  --navy-900: #07202f;

  /* Laranja — a ação */
  --orange-50: #fdf1e8;
  --orange-100: #fadcc7;
  --orange-200: #f5b98f;
  --orange-300: #ee9257;
  --orange-400: #e97a32;
  --orange-500: #e2661b;
  --orange-600: #c4550f;
  --orange-700: #9b430c;

  /* Cinzas mornos */
  --grey-0: #ffffff;
  --grey-50: #f8f5f0;
  --grey-100: #f1ece4;
  --grey-200: #e3dcd2;
  --grey-300: #c8bfb3;
  --grey-400: #9b9388;
  --grey-600: #6e6862;
  --grey-700: #4c4741;
  --grey-800: #2e2b28;
  --grey-900: #0f0e0d;

  --cream: #efe7da;
  --glass: #cfdee5;

  /* Papéis */
  --bg: var(--grey-0);
  --bg-soft: var(--grey-50);
  --surface: var(--grey-0);
  --text: var(--grey-900);
  --text-muted: var(--grey-600);
  --brand: var(--navy-800);
  --action: var(--orange-600);
  --line: var(--grey-200);

  --ok: #1f7a4d;
  --ok-bg: #e8f5ee;
  --warn: #9b430c;
  --warn-bg: var(--orange-50);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10, 42, 69, 0.06), 0 2px 8px rgba(10, 42, 69, 0.05);
  --shadow: 0 4px 12px rgba(10, 42, 69, 0.08), 0 12px 32px rgba(10, 42, 69, 0.08);
  --shadow-lg: 0 8px 24px rgba(10, 42, 69, 0.1), 0 32px 64px rgba(10, 42, 69, 0.14);

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font: 'Outfit', ui-rounded, 'SF Pro Rounded', system-ui, -apple-system,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ reset -- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- layout --- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(64px, 9vw, 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-50);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 20px;
}

.eyebrow.on-dark {
  color: var(--orange-200);
  background: rgba(226, 102, 27, 0.18);
}

h2.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
}

.section-lead {
  margin-top: 16px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 58ch;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------- botões ---- */
.btn {
  --btn-bg: var(--action);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
  box-shadow: 0 6px 16px rgba(196, 85, 15, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--orange-700);
  box-shadow: 0 10px 24px rgba(196, 85, 15, 0.32);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--brand);
  box-shadow: inset 0 0 0 2px var(--navy-200);
}

.btn--ghost:hover {
  background: var(--navy-50);
  box-shadow: inset 0 0 0 2px var(--navy-300);
}

.btn--navy {
  --btn-bg: var(--navy-800);
  box-shadow: 0 6px 16px rgba(10, 42, 69, 0.24);
}

.btn--navy:hover {
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(10, 42, 69, 0.28);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.btn[disabled],
.btn[aria-disabled='true'] {
  opacity: 0.55;
  pointer-events: none;
}

/* ------------------------------------------------------------- cabeçalho --- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 16px rgba(10, 42, 69, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--brand);
  flex-shrink: 0;
}

.brand svg,
.brand img {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-600);
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.nav a:hover {
  background: var(--navy-50);
  color: var(--brand);
}

.header .btn {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--brand);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    font-size: 17px;
  }

  .nav-toggle {
    display: flex;
  }

  .header__inner > .btn {
    display: none;
  }
}

/* ------------------------------------------------------------------ hero --- */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 8vw, 100px);
  background: linear-gradient(180deg, var(--cream) 0%, #f6f1e8 55%, #fff 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -260px;
  background: radial-gradient(circle, rgba(226, 102, 27, 0.16), transparent 68%);
}

.hero::after {
  width: 540px;
  height: 540px;
  left: -220px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(10, 42, 69, 0.1), transparent 68%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-600);
}

.hero__lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--grey-700);
  max-width: 46ch;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(10, 42, 69, 0.1);
  border-radius: 999px;
  padding: 7px 16px 7px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 22px;
}

.hero__pill b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  /* No estreito o título vem primeiro: a promessa antes da ilustração. */
  .hero__art {
    max-width: 320px;
    margin-inline: auto;
    margin-top: 12px;
  }
}

/* ------------------------------------------------- verificador de cobertura */
.checker {
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.checker__label {
  display: block;
  font-weight: 700;
  color: var(--brand);
  font-size: 16px;
  margin-bottom: 4px;
}

.checker__hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.checker__row {
  display: flex;
  gap: 10px;
}

.checker__field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.checker__field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--navy-400);
  pointer-events: none;
}

/* `color: inherit` herdaria o branco do painel escuro da seção de cobertura e
   o CEP digitado sumiria no fundo claro do campo. */
.checker input {
  color: var(--text);
  width: 100%;
  padding: 15px 16px 15px 46px;
  border-radius: 999px;
  border: 2px solid var(--grey-200);
  background: var(--grey-50);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.checker input::placeholder {
  color: var(--grey-400);
  font-weight: 500;
  letter-spacing: normal;
}

.checker input:focus {
  outline: none;
  border-color: var(--navy-400);
  background: #fff;
}

.checker input[aria-invalid='true'] {
  border-color: var(--orange-500);
}

@media (max-width: 520px) {
  .checker__row {
    flex-direction: column;
  }

  .checker__row .btn {
    width: 100%;
  }
}

.result {
  margin-top: 16px;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  animation: rise 0.35s var(--ease) both;
}

.result[hidden] {
  display: none;
}

.result__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
}

.result__icon svg {
  width: 19px;
  height: 19px;
}

.result strong {
  display: block;
  font-size: 17px;
  margin-bottom: 3px;
}

.result--ok {
  background: var(--ok-bg);
  color: #14512f;
}

.result--ok strong {
  color: var(--ok);
}

.result--no {
  background: var(--warn-bg);
  color: var(--orange-700);
}

.result--info {
  background: var(--navy-50);
  color: var(--navy-700);
}

.result__cta {
  margin-top: 12px;
}

.spinner {
  width: 19px;
  height: 19px;
  border: 2.5px solid var(--navy-200);
  border-top-color: var(--navy-600);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ------------------------------------------------------ mockup do celular -- */
.phone {
  position: relative;
  width: min(340px, 100%);
  margin-inline: auto;
  aspect-ratio: 340 / 700;
  background: var(--navy-900);
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.5deg);
}

.phone::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: var(--navy-900);
  border-radius: 999px;
  z-index: 3;
}

.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--grey-50);
  display: flex;
  flex-direction: column;
}

.phone__top {
  background: var(--navy-800);
  color: #fff;
  padding: 46px 18px 18px;
}

.phone__addr {
  font-size: 11px;
  color: var(--navy-200);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone__addr + div {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone__search {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--navy-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone__eta {
  background: var(--orange-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone__body {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}

.phone__chips {
  display: flex;
  gap: 7px;
  margin-bottom: 13px;
}

.phone__chip {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-600);
  box-shadow: inset 0 0 0 1px var(--grey-200);
  white-space: nowrap;
}

.phone__chip.is-on {
  background: var(--navy-800);
  color: #fff;
  box-shadow: none;
}

.phone__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.pcard {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.pcard__img {
  height: 66px;
  border-radius: 11px;
  background: var(--navy-50);
  display: grid;
  place-items: center;
  margin-bottom: 9px;
}

.pcard__img svg {
  width: 30px;
  height: 42px;
}

.pcard__name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-800);
  line-height: 1.3;
  margin-bottom: 5px;
}

.pcard__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-800);
}

.pcard__price span {
  font-size: 10px;
  font-weight: 600;
  color: var(--grey-400);
  text-decoration: line-through;
  margin-left: 4px;
}

.phone__bar {
  background: #fff;
  border-top: 1px solid var(--grey-200);
  padding: 11px 22px 20px;
  display: flex;
  justify-content: space-between;
}

.phone__bar span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--grey-200);
}

.phone__bar span:first-child {
  background: var(--navy-800);
}

.phone__float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  animation: float 4.5s ease-in-out infinite;
}

.phone__float small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Os dois balões pousam onde a tela não tem informação: em cima da barra de
   navegação e na sobra do campo de busca. Cobrir o endereço ou um preço
   estragaria justamente o que o mockup existe para mostrar. */
.phone__float--a {
  bottom: 5%;
  left: -26%;
}

.phone__float--b {
  top: 14%;
  right: -26%;
  animation-delay: -2.2s;
}

.phone__float i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ok-bg);
  color: var(--ok);
  flex-shrink: 0;
}

.phone__float--b i {
  background: var(--orange-50);
  color: var(--orange-600);
}

.phone__float svg {
  width: 16px;
  height: 16px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

@media (max-width: 620px) {
  .phone__float {
    display: none;
  }
}

/* ------------------------------------------------------------- categorias -- */
.strip {
  background: var(--navy-800);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-100);
  white-space: nowrap;
}

.strip__item svg {
  width: 20px;
  height: 20px;
  color: var(--orange-300);
}

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

@media (prefers-reduced-motion: reduce) {
  .strip__track,
  .phone__float {
    animation: none;
  }
}

/* ----------------------------------------------------------- como funciona - */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange-600);
  margin-bottom: 18px;
}

.step__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.step__icon svg {
  width: 25px;
  height: 25px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 16px;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------- features - */
.features {
  background: var(--grey-50);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--orange-50);
  color: var(--orange-600);
  margin-bottom: 16px;
}

.feature__icon svg {
  width: 23px;
  height: 23px;
}

.feature h3 {
  font-size: 18.5px;
  margin-bottom: 7px;
}

.feature p {
  color: var(--text-muted);
  font-size: 15.5px;
}

/* -------------------------------------------------------------- cobertura -- */
.coverage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.coverage__panel {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}

.coverage__panel h2,
.coverage__panel h3 {
  color: #fff;
}

.coverage__panel .checker {
  box-shadow: none;
  margin-top: 24px;
  max-width: none;
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 7px;
}

.city-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

.coverage__note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 15px;
  display: flex;
  gap: 12px;
}

.coverage__note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--navy-500);
  margin-top: 2px;
}

@media (max-width: 940px) {
  .coverage__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------- download -- */
.download {
  background: var(--cream);
}

.download__card {
  position: relative;
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 68px);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.download__card::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 102, 27, 0.32), transparent 66%);
  pointer-events: none;
}

.download__card h2,
.download__card h3 {
  color: #fff;
}

.download__card h2 {
  font-size: clamp(28px, 3.8vw, 42px);
}

.download__card p {
  color: var(--navy-100);
  margin-top: 14px;
  font-size: 17px;
  max-width: 44ch;
}

.download__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.download__aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.download__stat i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(226, 102, 27, 0.22);
  color: var(--orange-200);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.download__stat svg {
  width: 20px;
  height: 20px;
}

.download__stat b {
  display: block;
  font-size: 16px;
}

.download__stat small {
  color: var(--navy-200);
  font-size: 13.5px;
}

@media (max-width: 860px) {
  .download__card {
    grid-template-columns: 1fr;
  }
}

/* badge de loja */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy-900);
  border-radius: 15px;
  padding: 11px 20px 11px 16px;
  min-width: 190px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.store-badge svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  font-size: 11px;
  line-height: 1.25;
  color: var(--grey-600);
  letter-spacing: 0.02em;
}

.store-badge b {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.store-badge.is-soon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  cursor: default;
}

.store-badge.is-soon:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.store-badge.is-soon small {
  color: var(--navy-200);
}

.hero .store-badge.is-soon {
  background: rgba(10, 42, 69, 0.06);
  color: var(--navy-800);
  box-shadow: inset 0 0 0 1px rgba(10, 42, 69, 0.16);
}

.hero .store-badge.is-soon small {
  color: var(--grey-600);
}

/* -------------------------------------------------------------- lojistas --- */
.merchant {
  background: var(--grey-50);
}

.merchant__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
}

@media (max-width: 760px) {
  .merchant__inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------- faq --- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--navy-400);
  border-bottom: 2.5px solid var(--navy-400);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq p {
  color: var(--text-muted);
  padding-bottom: 24px;
  max-width: 70ch;
  font-size: 16.5px;
}

/* ---------------------------------------------------------------- rodapé --- */
.footer {
  background: var(--navy-900);
  color: var(--navy-200);
  padding-block: clamp(48px, 6vw, 72px) 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer p {
  font-size: 15px;
  max-width: 38ch;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--navy-300);
}

@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* aviso de bebida alcoólica */
.legal {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--navy-100);
  max-width: 40ch;
}

.legal b {
  background: #fff;
  color: var(--navy-900);
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 13px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------- animações -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =============================================================================
   Página de lojistas (lojistas.html)
   ========================================================================== */

.hero--merchant {
  background: linear-gradient(180deg, var(--navy-50) 0%, #f4f7fa 55%, #fff 100%);
}

.hero--merchant::before {
  background: radial-gradient(circle, rgba(226, 102, 27, 0.14), transparent 68%);
}

/* --------------------------------------------------- mockup do painel ------ */
.panel {
  position: relative;
  width: min(430px, 100%);
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1deg);
}

.panel__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--navy-800);
}

.panel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.panel__url {
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--navy-200);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 3px 12px;
}

.panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.panel__eyebrow {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.panel__title {
  font-weight: 700;
  font-size: 17px;
  color: var(--brand);
}

.panel__open {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ok);
  background: var(--ok-bg);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}

.panel__open i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

.panel__list {
  padding: 14px;
  display: grid;
  gap: 11px;
  background: var(--grey-50);
}

.porder {
  background: #fff;
  border-radius: var(--radius);
  padding: 13px 15px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--grey-200);
}

.porder--new {
  border-left-color: var(--orange-500);
}

.porder__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.porder__top b {
  font-size: 14.5px;
  color: var(--brand);
}

.porder__chip {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--navy-50);
  color: var(--navy-600);
}

.porder__chip--new {
  background: var(--orange-50);
  color: var(--orange-700);
}

.porder__chip--out {
  background: var(--ok-bg);
  color: var(--ok);
}

.porder__body {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.porder__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}

.porder__time {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-400);
}

.porder__act {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--action);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ------------------------------------------------------------- checklist -- */
.checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: var(--grey-700);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ok-bg);
}

.checklist li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2.2px solid var(--ok);
  border-bottom: 2.2px solid var(--ok);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------- formulário -------- */
.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 940px) {
  .signup {
    grid-template-columns: 1fr;
  }
}

.signup__form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 16px;
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
}

.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--grey-200);
  background: var(--grey-50);
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy-400) 50%),
    linear-gradient(135deg, var(--navy-400) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-400);
  background-color: #fff;
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'] {
  border-color: var(--orange-500);
  background-color: var(--orange-50);
}

.field__error {
  font-style: normal;
  font-size: 13px;
  color: var(--orange-700);
  min-height: 1em;
}

/* O campo-isca sai da vista sem `display:none`: robô que lê o CSS pula o que
   está escondido, mas preenche o que só está fora da tela. */
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* No estreito, telefone e e-mail param de dividir a linha; cidade e UF
   continuam juntos, porque a UF nunca precisa de mais que duas letras. */
@media (max-width: 520px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-pair {
    grid-template-columns: 1fr 76px;
  }
}

/* O balão pousa no canto do painel, ancorado no .hero__art — que ganhou
   `position: relative` só por isto. */
.hero__art {
  position: relative;
}

.phone__float--panel {
  bottom: 4%;
  left: -2%;
}

@media (max-width: 620px) {
  .phone__float--panel {
    display: none;
  }
}
