/* ==========================================================================
   F3 Assistencial — Plano Funeral
   Folha de estilo principal
   Paleta e medidas extraídas do layout "1920w default" (Figma)
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Marca */
  --green:        #00a95b;
  --green-dark:   #018a4a;
  --green-darker: #016b3a;
  --green-light:  #12b368;
  --lime:         #92c254;

  /* Tintas */
  --mint-50:  #f4fbf7;
  --mint-100: #ebf8f1;
  --mint-200: #e1f5ec;
  --mint-300: #cdeedd;

  /* Neutros */
  --ink:      #111828;
  --ink-soft: #2b3342;
  --body:     #5b6472;
  --muted:    #98a2b3;
  --line:     #e7eaee;
  --line-soft:#f0f2f5;
  --bg:       #ffffff;
  --bg-soft:  #f8f8f8;
  --footer:   #303437;

  /* Tipografia */
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1232px;
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 26px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow:    0 4px 16px rgba(16, 24, 40, .06);
  --shadow-md: 0 12px 32px rgba(16, 24, 40, .08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, .12);

  --header-h: 66px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 800;
  letter-spacing: -.02em;
}

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

.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;
}

/* ---------------------------------------------------------- Tipos comuns */
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }

.section-title {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -.025em;
}
.section-title strong { font-weight: 800; color: var(--green); }

.section-sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

/* -------------------------------------------------------------- Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease,
              transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(0, 169, 91, .26); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 10px 26px rgba(0, 169, 91, .32); }

.btn--ghost-light { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.btn--outline { border-color: var(--line); color: var(--ink); background: var(--bg-soft); }
.btn--outline:hover { border-color: var(--green); color: var(--green); background: var(--mint-100); }

.btn--square { border-radius: var(--radius-sm); }
.btn--sm { padding: 12px 20px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--caps { text-transform: uppercase; letter-spacing: .06em; font-size: 12.5px; }

.btn--gradient {
  background: linear-gradient(90deg, var(--green) 0%, #4cb959 55%, var(--lime) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 169, 91, .28);
}
.btn--gradient:hover { filter: brightness(1.04); box-shadow: 0 12px 30px rgba(0, 169, 91, .34); }

/* =============================================== BARRA DE ACESSOS ====== */
.topbar {
  background: #e9f5ee;
  border-bottom: 1px solid #d8ece1;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-height: 40px;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background-color .18s ease, color .18s ease;
}
.topbar__link svg { width: 15px; height: 15px; flex: none; color: var(--green); transition: color .18s ease; }
.topbar__link:hover { background: #fff; color: var(--green); }
.topbar__link:hover svg { color: var(--green-dark); }
.topbar__link--accent { color: var(--green-dark); }
.topbar__divider { width: 1px; height: 16px; background: #cadfd3; flex: none; }

/* ================================================================ HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--mint-50);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.header.is-stuck {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(16, 24, 40, .05);
}
.header__inner { display: flex; align-items: center; gap: 24px; }
.header__logo img { height: 30px; width: auto; }

.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: 34px; }
.nav__list a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding-block: 6px;
  transition: color .18s ease;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav__list a:hover { color: var(--green); }
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }
.nav__list a.is-active { color: var(--green); }

.header__cta .btn { padding-block: 13px; }
.header__cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; opacity: .9;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  border-radius: 2px; background: var(--ink); transition: transform .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ================================================================== HERO */
.hero {
  position: relative;
  background-color: var(--green);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-familia.jpg");
  background-size: cover;
  background-position: right center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--green) 0%,
      var(--green) 26%,
      rgba(0, 169, 91, .94) 40%,
      rgba(0, 169, 91, .62) 54%,
      rgba(0, 169, 91, .12) 68%,
      rgba(0, 169, 91, 0) 78%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 340px 340px;
  opacity: .10;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 118px 24px 150px;
  max-width: calc(var(--container) + 48px);
  margin-inline: auto;
}
.hero__copy { max-width: 720px; }

.hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.hero__lead {
  color: rgba(255, 255, 255, .93);
  font-size: 16px;
  line-height: 1.62;
  max-width: 580px;
  margin: 0 0 26px;
}
.hero__lead strong { color: #fff; font-weight: 700; }

.hero__quote {
  display: inline-block;
  background: rgba(146, 194, 84, .92);
  color: #fff;
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  padding: 20px 34px;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.hero__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin-bottom: 34px;
  max-width: 720px;
}
.hero__checks li {
  display: flex; align-items: center; gap: 11px;
  color: #fff; font-size: 14px; font-weight: 500;
}
.hero__checks .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .8);
  display: grid; place-items: center;
}
.hero__checks .tick svg { width: 11px; height: 11px; }

/* Faixa de destaques — carrossel infinito */
.hero__strip {
  position: relative;
  z-index: 2;
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  /* suaviza a entrada e a saída dos itens nas bordas */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero__strip-track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 44px;
  /* o padding-right recria o gap na emenda entre as duas faixas */
  padding: 17px 44px 17px 0;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.hero__marquee:hover .hero__strip-track { animation-play-state: paused; }

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

.hero__strip li {
  display: flex; align-items: center; gap: 9px;
  flex: none;
  white-space: nowrap;
  color: #fff; font-size: 13.5px; font-weight: 500;
  font-family: var(--font-display);
}
.hero__strip li::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  flex: none;
}

/* ================================================================= STATS */
.stats { padding: 96px 0 40px; position: relative; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.stat {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.stat::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--mint-100);
  opacity: .8;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mint-300); }
.stat__icon {
  position: relative; z-index: 1;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--mint-200);
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.stat__icon svg { width: 21px; height: 21px; }
.stat__num {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px;
}
.stat__desc { position: relative; z-index: 1; font-size: 14px; line-height: 1.5; color: var(--body); margin: 0; }

/* ================================================================= SOBRE */
.about { padding: 60px 0 72px; position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.about h2 { font-size: clamp(28px, 3.1vw, 42px); line-height: 1.18; font-weight: 500; letter-spacing: -.025em; }
.about h2 strong { font-weight: 800; color: var(--green); }
.about__text { margin: 22px 0 34px; font-size: 16px; line-height: 1.62; }

.about__features { display: grid; gap: 20px; margin-bottom: 36px; }
.about__features li { display: flex; gap: 16px; align-items: flex-start; }
.about__features .ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--mint-200);
  color: var(--green);
  display: grid; place-items: center;
}
.about__features .ico svg { width: 21px; height: 21px; }
.about__features p { margin: 0; font-size: 14.5px; line-height: 1.5; padding-top: 3px; }

/* Mosaico: foto alta à esquerda + duas empilhadas à direita */
.about__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about__media .photo-slot--tall { grid-row: 1 / span 2; height: 100%; }
.about__media .photo-slot--half { aspect-ratio: 4 / 3; }

/* -------------------------------------------- Espaço reservado de foto */
.photo-slot {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-100);
  box-shadow: var(--shadow-md);
}
.photo-slot > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-slot__ph {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px;
  border: 2px dashed var(--mint-300);
  border-radius: inherit;
  background:
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(0,169,91,.03) 12px 24px),
    var(--mint-50);
  color: var(--green);
}
.photo-slot__ph svg { width: 34px; height: 34px; opacity: .85; }
.photo-slot__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
}
.photo-slot__hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.photo-slot.is-empty > img { display: none; }
.photo-slot.is-empty .photo-slot__ph { display: flex; }

/* =========================================================== ASSISTÊNCIAS */
.assist { padding: 76px 0 96px; background: var(--bg); position: relative; }
.assist__layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.assist__tabs { display: grid; gap: 12px; }
.assist__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background: var(--bg-soft);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.assist__tab:hover { background: var(--mint-100); }
.assist__tab .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--body);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.assist__tab .ico svg { width: 20px; height: 20px; }
.assist__tab .txt { flex: 1; min-width: 0; }
.assist__tab .t {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  transition: color .18s ease;
}
.assist__tab .s { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.assist__tab .arrow { flex: none; color: var(--muted); transition: transform .18s ease, color .18s ease; }
.assist__tab .arrow svg { width: 16px; height: 16px; }
.assist__tab:hover .arrow { transform: translateX(3px); }

.assist__tab.is-active {
  background: var(--mint-100);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(0, 169, 91, .10);
}
.assist__tab.is-active .ico { background: var(--green); color: #fff; border-color: var(--green); }
.assist__tab.is-active .t,
.assist__tab.is-active .arrow { color: var(--green); }

.assist__panels { position: relative; }
.assist__panel {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 40px 34px;
}
.assist__panel.is-active { display: block; animation: fadeUp .32s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.assist__panel-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.assist__panel-head .ico {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
}
.assist__panel-head .ico svg { width: 26px; height: 26px; }
.assist__panel-head h3 { font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.badge {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--green-dark);
  background: var(--mint-200);
  padding: 5px 11px;
  border-radius: 6px;
}

.assist__panel hr { border: 0; border-top: 1px solid var(--line); margin: 0 0 24px; }
.assist__kicker {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 12px;
}
.assist__panel p.lead { margin: 0 0 26px; font-size: 15px; line-height: 1.62; }

.assist__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  margin-bottom: 30px;
}
.assist__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.assist__list .tick { flex: none; color: var(--green); margin-top: 2px; }
.assist__list .tick svg { width: 15px; height: 15px; }

.assist__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}
.assist__foot .k {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 4px;
}
.assist__foot .v { margin: 0; font-size: 14.5px; font-weight: 700; color: var(--ink); font-family: var(--font-display); }

/* ================================================================ PLANOS */
.plans { padding: 88px 0 76px; background: var(--bg-soft); position: relative; }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mint-300); }

.plan--featured {
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(0, 169, 91, .14);
  margin-top: -14px;
  padding-top: 40px;
  padding-bottom: 34px;
}
.plan__ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 169, 91, .3);
}

.plan__tag {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.plan__name { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.plan__desc { font-size: 14px; line-height: 1.55; margin: 0 0 22px; }
.plan__divider { border: 0; border-top: 1px solid var(--line); margin: 0 0 20px; }
.plan__kicker {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.plan__list { display: grid; gap: 14px; margin-bottom: 26px; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); }
.plan__list .tick { flex: none; color: var(--green); margin-top: 2px; }
.plan__list .tick svg { width: 14px; height: 14px; }
.plan .btn { margin-top: auto; }

.plans__note {
  margin: 44px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================== PROPOSTA */
.quote-section {
  position: relative;
  background: var(--green);
  padding: 68px 0 88px;
  overflow: hidden;
  /* linha sutil: separa da seção Pet, que também é verde */
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.quote-section__pattern {
  position: absolute; inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 420px 420px;
  opacity: .1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.quote-section .container { position: relative; z-index: 1; }
.quote-section .eyebrow { color: rgba(255, 255, 255, .82); }
.quote-section .section-title { color: #fff; }
.quote-section .section-title strong { color: #fff; font-weight: 800; }
.quote-section .section-sub { color: rgba(255, 255, 255, .9); }

.quote-card {
  max-width: 846px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 48px 38px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  margin-bottom: 26px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 169, 91, .14);
}
.field input:user-invalid { border-color: #e5544b; }

.form-actions { display: flex; gap: 14px; align-items: stretch; }
.form-actions .btn--gradient { flex: 1; }
.form-note { margin: 16px 0 0; text-align: center; font-size: 12.5px; color: var(--muted); }

/* ================================================================== SEDE */
.hq { padding: 100px 0; position: relative; }
.hq__grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
/* a coluna de mídia é bem mais alta — o texto acompanha a rolagem */
.hq__grid > :first-child { position: sticky; top: calc(var(--header-h) + 28px); }
.hq h2 { font-size: clamp(28px, 3.1vw, 42px); line-height: 1.18; font-weight: 500; letter-spacing: -.025em; }
.hq h2 strong { font-weight: 800; color: var(--green); }
.hq__text { margin: 20px 0 28px; font-size: 15.5px; line-height: 1.62; }
.hq__info { display: grid; gap: 14px; margin-bottom: 32px; }
.hq__info li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.hq__info .ico { flex: none; color: var(--green); display: grid; place-items: center; }
.hq__info .ico svg { width: 19px; height: 19px; }
.hq__info a:hover { color: var(--green); }

.hq__media { display: grid; gap: 18px; }
.hq__facade { aspect-ratio: 4 / 3; }
.hq__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 600 / 330;
}
.hq__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.95); }
.hq__map-btn {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: #fff;
  color: #1a73e8;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(16, 24, 40, .18);
  display: inline-flex; align-items: center; gap: 7px;
}
.hq__map-btn svg { width: 13px; height: 13px; }
.hq__map-btn:hover { background: #f4f7fd; }

/* ============================================================ PARCEIROS */
.partners { padding: 84px 0 92px; background: var(--bg-soft); }
.partners .section-head { margin-bottom: 44px; }

.partners__marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners__track {
  display: flex;
  flex: none;
  align-items: stretch;
  gap: 24px;
  /* recria o gap na emenda entre as faixas */
  padding-right: 24px;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.partners__marquee:hover .partners__track { animation-play-state: paused; }

.partners__item {
  flex: none;
  width: 220px;
  height: 98px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 16px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.partners__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-300);
}
.partners__item img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
/* logos quadradas precisam de mais altura para ter peso visual equivalente */
.partners__item img.is-square { max-height: 64px; }

/* ========================================================== DEPOIMENTOS */
.testi {
  position: relative;
  padding: 96px 0 0;
  background: linear-gradient(180deg, var(--mint-100) 0%, #f6fcf9 45%, #ffffff 100%);
  overflow: hidden;
}
.testi__pattern {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 300px;
  background-image: url("../img/pattern-duo.svg");
  background-size: 190px 190px;
  background-position: left bottom;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 30%, #000 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 30%, #000 55%);
}
.testi .container { position: relative; z-index: 1; }
.testi__mark {
  position: absolute;
  right: calc(100% + 60px); top: -56px;
  font-family: var(--font-display);
  font-size: 150px; font-weight: 800; line-height: 1;
  color: var(--green);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.testi__card {
  position: relative;
  max-width: 976px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 44px 52px 36px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.testi__quotemark {
  position: absolute; top: 34px; right: 44px;
  color: var(--mint-300);
}
.testi__quotemark svg { width: 46px; height: 46px; }
.testi__stars { display: flex; gap: 5px; margin-bottom: 22px; color: var(--green); }
.testi__stars svg { width: 19px; height: 19px; }
.testi__slide { display: none; }
.testi__slide.is-active { display: block; animation: fadeUp .3s ease both; }
.testi__text {
  font-size: 17px; line-height: 1.62; font-style: italic; color: var(--ink-soft);
  margin: 0 0 30px; max-width: 800px;
}
.testi__person {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}
.testi__avatar {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint-200);
  border: 1.5px solid var(--mint-300);
  color: var(--green);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
}
.testi__person .n { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.testi__person .r { font-size: 13px; color: var(--muted); }
.testi__place {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px; color: var(--body);
}
.testi__place svg { width: 14px; height: 14px; color: var(--green); }

.testi__nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 26px; }
.testi__nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-soft);
  display: grid; place-items: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.testi__nav button:hover { background: var(--green); border-color: var(--green); color: #fff; }
.testi__nav svg { width: 17px; height: 17px; }

.testi__spacer { height: 170px; }

/* ================================================================ DÚVIDAS */
.faq { padding: 96px 0 100px; background: #fff; }
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item.is-open { border-color: var(--mint-300); box-shadow: var(--shadow); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600; color: var(--ink);
  transition: color .18s ease;
}
.faq__q:hover { color: var(--green); }
.faq__q .chev { flex: none; color: var(--muted); transition: transform .25s ease, color .25s ease; }
.faq__q .chev svg { width: 18px; height: 18px; }
.faq__item.is-open .faq__q { color: var(--green); }
.faq__item.is-open .chev { transform: rotate(180deg); color: var(--green); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; }

.faq__cta {
  max-width: 860px;
  margin: 36px auto 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.faq__cta .ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--mint-200); color: var(--green);
  display: grid; place-items: center;
}
.faq__cta .ico svg { width: 20px; height: 20px; }
.faq__cta .txt { flex: 1; min-width: 220px; }
.faq__cta .t { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.faq__cta .s { font-size: 13.5px; color: var(--body); margin-top: 2px; }

/* ================================================================ FOOTER */
.footer { background: var(--footer); color: #9da3af; padding: 70px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 46px;
}
.footer__logo img { height: 34px; width: auto; margin-bottom: 26px; }
.footer__about { font-size: 14px; line-height: 1.6; margin: 0 0 24px; max-width: 380px; }
.footer__status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #e4e7ec;
}
.footer__status::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(18, 179, 104, .6);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(18, 179, 104, .55); }
  70% { box-shadow: 0 0 0 8px rgba(18, 179, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 179, 104, 0); }
}

.footer__col h4 {
  font-size: 14.5px; font-weight: 800; color: #fff;
  letter-spacing: .04em; text-transform: uppercase;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer__col-sub {
  font-size: 12.5px !important;
  margin-top: 26px;
  color: #cbd0d8 !important;
}
.footer__col li + li { margin-top: 12px; }
.footer__col a, .footer__col li { font-size: 14px; }
.footer__col a:hover { color: #fff; }

.footer__contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.5; }
.footer__contact .ico { flex: none; color: var(--green-light); margin-top: 2px; }
.footer__contact .ico svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer__bottom strong { color: #e4e7ec; font-weight: 700; }
.footer__cnpj { color: var(--lime); font-weight: 600; }
.footer__legal { display: flex; gap: 26px; }
.footer__legal a:hover { color: #fff; }
.footer__sep { opacity: .35; margin-inline: 10px; }

/* ====================================================== WHATSAPP FLUTUANTE */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, .45); }
.wa-float svg { width: 22px; height: 22px; flex: none; }

/* ============================================================ REVEAL ANIM */
/* Só esconde quando o JS está ativo — sem JS, o conteúdo aparece normalmente */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }

  /* sem movimento: viram faixas estáticas e roláveis */
  .hero__strip-track,
  .partners__track { animation: none !important; transform: none !important; }
  .hero__strip-track[aria-hidden="true"],
  .partners__track[aria-hidden="true"] { display: none; }
  .hero__marquee,
  .partners__marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================ RESPONSIVO */
@media (max-width: 1180px) {
  .assist__layout { grid-template-columns: 330px minmax(0, 1fr); }
  .plans__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .plan--featured { margin-top: 0; }
  .about__grid { gap: 48px; }
  .hq__grid { gap: 40px; }
  .testi__mark { display: none; }
}

@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 24px 20px;
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open .nav__list a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav.is-open .nav__list a::after { display: none; }

  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 560px; }
  .assist__layout { grid-template-columns: 1fr; }
  .assist__list { grid-template-columns: 1fr; }
  .hq__grid { grid-template-columns: 1fr; }
  .hq__grid > :first-child { position: static; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .hero__media { background-position: 74% center; }
  .hero__media::after {
    background: linear-gradient(90deg,
      var(--green) 0%, rgba(0,169,91,.96) 45%, rgba(0,169,91,.72) 68%, rgba(0,169,91,.35) 100%);
  }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; }
  .hero__inner { padding: 72px 24px 88px; }
  .hero__checks { grid-template-columns: 1fr; gap: 12px; }
  .hero__quote { font-size: 15px; padding: 16px 22px; }
  .hero__strip-track { gap: 28px; padding: 14px 28px 14px 0; animation-duration: 30s; }
  .hero__strip li { font-size: 13px; }

  .stats { padding: 60px 0 24px; }
  .stats__grid { grid-template-columns: 1fr; }
  .about { padding: 48px 0 72px; }
  .assist, .plans, .hq, .faq { padding: 64px 0; }
  .partners { padding: 56px 0 60px; }
  .partners__track { gap: 16px; padding-right: 16px; animation-duration: 34s; }
  .partners__item { width: 170px; height: 84px; padding: 14px 18px; }
  .partners__item img { max-height: 38px; }

  .topbar__inner { justify-content: center; min-height: 38px; gap: 2px; }
  .topbar__link { font-size: 12px; padding: 7px 9px; gap: 6px; }
  .topbar__link svg { width: 14px; height: 14px; }
  .quote-section { padding: 64px 0 72px; }
  .testi { padding-top: 64px; }
  .testi__spacer { height: 120px; }

  .section-head { margin-bottom: 36px; }
  .assist__panel { padding: 26px 22px 24px; }
  .assist__panel-head { gap: 14px; }
  .assist__panel-head .ico { width: 48px; height: 48px; }
  .assist__panel-head h3 { font-size: 19px; }

  .plans__grid { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 22px 26px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-actions { flex-direction: column; }

  .testi__card { padding: 30px 24px 26px; }
  .testi__text { font-size: 15.5px; }
  .testi__quotemark { display: none; }
  .testi__person { flex-wrap: wrap; }
  .testi__place { margin-left: 0; }
  .testi__nav { justify-content: center; }

  .footer { padding-top: 52px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .wa-float { right: 14px; bottom: 14px; padding: 12px; }
  .wa-float span { display: none; }
}

/* ==========================================================================
   COMPONENTES DA REVISÃO (Ajuste site) — hero, coberturas, planos,
   antecipado, pet, formulário, canais
   ========================================================================== */

.eyebrow--light { color: rgba(255, 255, 255, .82); }

/* ---------------------------------------------------- Botões extras --- */
.btn--light {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}
.btn--light:hover { background: #f2fbf6; box-shadow: 0 10px 26px rgba(0, 0, 0, .14); }

.btn--emergency {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--emergency:hover { background: rgba(255, 255, 255, .22); border-color: #fff; }
.btn__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff5a4d; flex: none;
  box-shadow: 0 0 0 0 rgba(255, 90, 77, .6);
  animation: ping 1.8s ease-out infinite;
}

/* ----------------------------------------------------- Hero extras ---- */
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }

/* CTAs do hero: mais encorpados, com rótulo em duas linhas */
.hero__actions .btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-align: left;
}
.hero__actions .btn .lbl {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 800; letter-spacing: -.01em;
}
.hero__actions .btn .lbl svg { width: 18px; height: 18px; }
.hero__actions .btn .sub {
  font-size: 12px; font-weight: 600; opacity: .72;
  letter-spacing: .01em; padding-left: 27px;
}
/* o marcador pulsante é mais estreito que o ícone — alinha o subtítulo */
.btn--emergency .sub { opacity: .85; padding-left: 18px; }

.hero__note {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px; margin: 0 0 22px;
}
.hero__note svg { width: 14px; height: 14px; flex: none; }
.hero__seals { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.hero__seals li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.hero__seals li::before { content: "\2713"; color: var(--lime); font-weight: 800; }

/* Selos em fundo claro (usados também perto dos planos) */
.seals--dark {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 12px; margin-top: 26px;
}
.seals--dark li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-100);
  border: 1px solid var(--mint-300);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
}
.seals--dark li::before { content: "\2713"; font-weight: 800; }

/* ================================================ COBERTURAS ========== */
.cob { padding: 72px 0 80px; background: var(--bg); }
.cob__panel {
  max-width: 980px; margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 42px;
}
.cob__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px; margin-bottom: 28px;
}
.cob__grid li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.cob__grid .tick { flex: none; color: var(--green); margin-top: 3px; }
.cob__grid .tick svg { width: 15px; height: 15px; }
.cob__info {
  display: flex; gap: 14px;
  background: var(--mint-100);
  border: 1px solid var(--mint-300);
  border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 26px;
}
.cob__info svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 1px; }
.cob__info p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cob__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.cob__caren { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); }
.cob__caren-tag {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-dark); background: var(--mint-200);
  padding: 5px 11px; border-radius: 6px;
}
.cob__caren-sep { color: var(--muted); }

/* ================================================ TIPOS DE PLANO ====== */
.plantypes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 54px; }
.ptype {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ptype:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mint-300); }
.ptype__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--mint-200); color: var(--green);
  display: grid; place-items: center; margin-bottom: 22px;
}
.ptype__icon svg { width: 24px; height: 24px; }
.ptype__name { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.ptype__desc { font-size: 14.5px; line-height: 1.55; margin: 0 0 20px; flex: 1; }
.ptype__price {
  display: flex; flex-direction: column; line-height: 1.1;
  margin: 0 0 22px; padding: 16px 0; border-top: 1px solid var(--line);
}
.ptype__price span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.ptype__price strong { font-family: var(--font-display); font-size: 26px; color: var(--green); margin: 3px 0; }

/* ================================================ CATEGORIAS ========== */
.cats {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 40px 40px 36px;
  box-shadow: var(--shadow);
}
.cats__head { text-align: center; max-width: 680px; margin: 0 auto 24px; }
.cats__head h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.cats__head p { font-size: 14.5px; color: var(--body); margin: 0; }
.cats__common {
  background: var(--mint-100);
  border: 1px dashed var(--mint-300);
  border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 26px;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
}
.cats__common-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 6px;
}
/* stretch: todos os cards com a mesma altura, botões alinhados embaixo */
.cats__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.cat {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 20px; background: var(--bg-soft);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mint-300); }
.cat--featured { border-color: var(--green); box-shadow: 0 12px 30px rgba(0, 169, 91, .12); background: #fff; }
/* o card em destaque tem a faixa no topo — recua o conteúdo para não colidir */
.cat--featured .cat__tag { margin-top: 8px; }
.cat__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 169, 91, .3);
}
.cat__tag { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cat__name { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin: 6px 0 16px; }
.cat__list { display: grid; gap: 12px; margin-bottom: 22px; }
.cat__list li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.cat__list .tick { flex: none; color: var(--green); margin-top: 2px; }
.cat__list .tick svg { width: 13px; height: 13px; }
.cat__list .cross { flex: none; color: #c0564d; margin-top: 2px; }
.cat__list .cross svg { width: 13px; height: 13px; }
.cat__no { color: var(--muted); }
.cat .btn { margin-top: auto; }
.cats__notes { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.cats__notes p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--body); }
.cats__note-fine { color: var(--muted) !important; font-size: 12px !important; margin-top: 6px !important; }

/* ================================================ PLANO ANTECIPADO ==== */
/* fundo branco: evita fundir com .plans (cinza) numa única faixa vazia */
.antecip { padding: 76px 0 80px; background: var(--bg); }
.antecip__grid { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 52px; align-items: start; }
.antecip__copy { position: sticky; top: calc(var(--header-h) + 28px); }
.antecip__text { margin: 18px 0 28px; font-size: 16px; line-height: 1.62; }
.antecip__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 34px; box-shadow: var(--shadow); }
.antecip__card-title { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); margin: 0 0 18px; }
.antecip__list { display: grid; gap: 14px; }
.antecip__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.antecip__list .tick { flex: none; color: var(--green); margin-top: 2px; }
.antecip__list .tick svg { width: 15px; height: 15px; }

/* ==================================================== PLANO PET ======= */
.pet { position: relative; padding: 76px 0 68px; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); overflow: hidden; }
.pet__pattern { position: absolute; inset: 0; background-image: url("../img/pattern.svg"); background-size: 340px 340px; opacity: .10; mix-blend-mode: soft-light; pointer-events: none; }
.pet .container { position: relative; z-index: 1; }
.pet__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: 52px; align-items: center; }
.pet__copy h2 { color: #fff; font-size: clamp(28px, 3.1vw, 40px); line-height: 1.16; font-weight: 500; letter-spacing: -.02em; }
.pet__copy h2 strong { font-weight: 800; color: #fff; }
.pet__text { color: rgba(255, 255, 255, .92); font-size: 16px; line-height: 1.62; margin: 18px 0 28px; max-width: 520px; }

/* selo de carência ao lado do rótulo da seção, acima do título */
.pet__kicker { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.pet__kicker .eyebrow { margin: 0; }
.pet__caren {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  padding: 6px 14px; border-radius: 999px;
}
.pet__caren svg { width: 15px; height: 15px; flex: none; }
.pet__card { background: #fff; border-radius: var(--radius-lg); padding: 32px 34px; box-shadow: var(--shadow-lg); }
.pet__card-title { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); margin: 0 0 18px; }
.pet__list { display: grid; gap: 14px; }
.pet__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.pet__list .tick { flex: none; color: var(--green); margin-top: 2px; }
.pet__list .tick svg { width: 15px; height: 15px; }

/* ================================================ FORMULÁRIO — aceite = */
.field--check { margin-top: 2px; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  flex: none; width: 22px; height: 22px;
  border: 1.5px solid var(--line); border-radius: 6px; background: #fff;
  display: grid; place-items: center; color: #fff; margin-top: 1px;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.check__box svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s ease; }
.check input:checked + .check__box { background: var(--green); border-color: var(--green); }
.check input:checked + .check__box svg { opacity: 1; }
.check input:focus-visible + .check__box { box-shadow: 0 0 0 3px rgba(0, 169, 91, .2); }
.check__text { font-size: 13.5px; line-height: 1.5; color: var(--body); }
.check__text a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* ================================================ CANAIS DE ATENDIMENTO */
.channels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 28px; }
.channel { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: var(--bg-soft); }
.channel--urgent { border-color: var(--mint-300); background: var(--mint-50); }
.channel__title { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink); margin: 0; }
.channel__sub { font-size: 12.5px; color: var(--muted); margin: 2px 0 12px; }
.channel__row { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); padding: 6px 0; transition: color .15s ease; }
.channel__row svg { width: 16px; height: 16px; flex: none; color: var(--green); }
.channel__row:hover { color: var(--green); }

/* ----------------------------------------------------- Rodapé extra --- */
.footer__hint { font-size: 12.5px; color: #b6bcc6; margin: -8px 0 14px; }

.footer__social { margin-top: 20px; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px; padding: 8px 16px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: #d5d9df;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.footer__social svg { width: 17px; height: 17px; flex: none; }
.footer__social a:hover { background: rgba(255, 255, 255, .08); border-color: var(--green-light); color: #fff; }

/* ==================================================== RESPONSIVO NOVO == */
@media (max-width: 1180px) {
  .plantypes { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cat--featured { margin-top: 0; }
  .antecip__grid { grid-template-columns: 1fr; gap: 40px; }
  .antecip__copy { position: static; }
  .pet__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .cob__panel { padding: 30px 26px; }
  .cob__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cob { padding: 60px 0; }
  .antecip, .pet { padding: 64px 0; }
  .cob__panel { padding: 24px 20px; }
  .cob__foot { flex-direction: column; align-items: flex-start; }
  .cob__foot .btn { width: 100%; }
  .plantypes { grid-template-columns: 1fr; }
  .cats { padding: 26px 20px 24px; }
  .cats__grid { grid-template-columns: 1fr; }
  .cat--featured { margin-top: 12px; }
  .antecip__card, .pet__card { padding: 26px 22px; }
  .channels { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { width: 100%; padding: 13px 22px; }
  .hero__actions .btn .lbl { font-size: 14.5px; }
  .hero__note { font-size: 12px; margin-bottom: 18px; }

  /* Rótulos longos de CTA podem quebrar linha no mobile (evita overflow) */
  .antecip__copy .btn,
  .pet__copy .btn,
  .cob__foot .btn,
  .faq__cta .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    width: 100%;
  }
}
