/* =========================================================================
   PetCare, landing page estática.
   Tokens copiados de apps/mobile/constants/colors.ts e typography.ts: se a
   marca mudar no app, muda aqui também, senão o site vira outro produto.
   ========================================================================= */

:root {
  /* marca */
  --primary: #c79a6d;
  --primary-dim: #8a6140;
  --primary-container: #f6e9da;
  --on-primary-container: #7a5433;

  /* dourado, exclusivo do Premium */
  --gold: #e3a711;
  --gold-container: #fbebc7;

  /* superfícies */
  --canvas: #fbf9f6;
  --surface: #ffffff;
  --surface-container: #f5f0e9;
  --surface-container-high: #efe8df;

  /* texto */
  --ink: #241f1a;
  --muted: #75695c;
  --outline: #b0a494;
  --outline-variant: #eae3d9;

  /* estado */
  --success: #2e7a5a;
  --error: #c2334d;
  --error-container: #fbdde3;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-soft: 0 2px 8px rgba(36, 31, 26, 0.06);
  --shadow-raised: 0 6px 18px rgba(36, 31, 26, 0.1);

  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

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

.sr,
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow-raised);
  z-index: 50;
}

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

/* ícones Material Symbols, o mesmo conjunto do app */
.msym {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

/* ============================== topbar ================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 246, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

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

.topnav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
}

.topnav a:hover {
  color: var(--ink);
}

/* =============================== botões ================================ */

.btn,
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  transition: transform 0.15s, background 0.15s;
}

.btn-sm {
  font-size: 13px;
  padding: 10px 18px;
}

.btn:hover,
.btn-sm:hover {
  background: #74512f;
}

.badge-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 10px 22px 10px 18px;
  transition: transform 0.15s;
}

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

.badge-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.badge-store small {
  font-size: 11px;
  opacity: 0.72;
}

.badge-store strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dim);
  border-bottom: 1px solid transparent;
}

.btn-ghost:hover {
  border-bottom-color: var(--primary);
}

/* ================================ hero ================================= */

/* o hero ocupa a primeira tela inteira: a secao seguinte so aparece rolando.
   72px e a altura da topbar; svh em vez de vh pra barra do navegador movel
   nao empurrar o conteudo pra fora. */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  padding: 40px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.06;
  font-weight: 700;
}

.lede {
  margin-top: 20px;
  max-width: 38ch;
  font-size: 18px;
  color: var(--muted);
}

.lede-sm {
  font-size: 16px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.fineprint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.fineprint.center {
  text-align: center;
  margin-top: 28px;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

/* a bolha âmbar é o único bloco grande de cor da página */
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% -6% 2% 4%;
  background: var(--primary-container);
  border-radius: 58% 42% 46% 54% / 44% 56% 40% 60%;
}

.hero-mascot {
  position: relative;
  width: min(100%, 420px);
  height: auto;
}

/* =============================== bandas ================================ */

.band {
  padding: 88px 0;
}

.band-tint {
  background: linear-gradient(180deg, transparent, #f7f2ec 18%, #f7f2ec 82%, transparent);
}

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  max-width: 20ch;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ============================== recursos =============================== */

.features {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature {
  padding: 26px 24px 28px;
}

.ficon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-container);
  color: var(--primary-dim);
  font-size: 22px;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

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

/* =============================== telas ================================= */

.screens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 32px;
  margin-top: 48px;
}

.screen-item {
  margin: 0;
  width: 300px;
}

.screen-item figcaption {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* ---- moldura do aparelho ---- */
.phone {
  width: 300px;
  padding: 9px;
  background: #1c1713;
  border-radius: 42px;
  box-shadow: var(--shadow-raised), 0 24px 48px rgba(36, 31, 26, 0.12);
}

.phone-viewport {
  width: 282px;
  height: 610px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--canvas);
}

/* o conteúdo é escrito no tamanho real do app (390pt) e reduzido aqui,
   assim os valores batem com os das telas em constants/. */
.phone-screen {
  position: relative;
  width: 390px;
  height: 844px;
  transform: scale(0.7231);
  transform-origin: top left;
  background: var(--canvas);
  font-size: 14px;
  overflow: hidden;
}

.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 6px;
  font-size: 15px;
  font-weight: 600;
}

.sb-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sb-right i {
  width: 16px;
  height: 10px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0.75;
}

.sb-right i:nth-child(3) {
  width: 22px;
  border-radius: 3px;
}

.app-pad {
  padding-inline: 24px;
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

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

/* cabecalho do Inicio: avatar do pet + saudacao, como em app/(tabs)/index.tsx */
.hello {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hello-avatar {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--primary-container);
  flex-shrink: 0;
}

.hello-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hello small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.hello strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  line-height: 25px;
  font-weight: 600;
}

.bell {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}

.bell i {
  font-size: 17px;
}

.app-title {
  font-size: 22px;
}

.app-label {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 10px;
}

.app-section-head {
  margin: 4px 0 12px;
}

.app-section-head h4 {
  font-size: 16px;
}

.link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

/* ---- card do pet, foto full bleed ---- */
.pet-hero {
  position: relative;
  height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 12px 0 16px;
  box-shadow: var(--shadow-soft);
  background: var(--primary-container);
}

.pet-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-hero-meta {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.pet-hero-meta strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.pet-hero-meta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- card de entrada da Aura ---- */
.aura-card {
  position: relative;
  display: block;
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  margin-bottom: 20px;
}

.aura-card img {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 96px;
  opacity: 0.9;
}

.aura-card strong {
  display: block;
  position: relative;
  max-width: 72%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.aura-card p {
  position: relative;
  max-width: 72%;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}

.aura-pill {
  position: relative;
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---- ações rápidas ---- */
.quick {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.quick span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 76px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.quick i {
  font-size: 29px;
}

/* ---- lembretes ---- */
.rem-mini {
  padding: 14px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}

.tag-muted {
  color: var(--muted);
  font-weight: 400;
}

.tag.is-late {
  color: var(--error);
}

.rem-mini strong {
  font-size: 15px;
  font-weight: 600;
}

.rem-mini > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.rem-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.rem-done {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary-container);
  color: var(--on-primary-container);
  font-size: 13px;
  font-weight: 500;
}

.rem-done i {
  font-size: 15px;
}

.rem-done.is-late {
  background: var(--error);
  color: #fff;
}

.rem .rem-done {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.rem .rem-done.is-late {
  background: var(--error);
}

.rem-x {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface-container-high);
  color: var(--muted);
  font-size: 17px;
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--primary-dim);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.pill-cta i {
  font-size: 16px;
}

.filters {
  display: flex;
  gap: 8px;
  margin: 14px 0 12px;
}

.filter {
  flex: 1;
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.filter.is-on {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.filter.is-alert {
  background: var(--error-container);
  color: var(--error);
  box-shadow: none;
}

.hr {
  height: 1px;
  background: var(--outline-variant);
}

.rem-list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.rem {
  padding: 14px 16px;
}

.rem-top {
  display: flex;
  gap: 12px;
}

.rem-ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(199, 154, 109, 0.14);
  color: var(--primary);
  font-size: 22px;
}

.rem-ico.is-late {
  background: rgba(194, 51, 77, 0.12);
  color: var(--error);
}

.rem strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rem-when,
.rem-rep {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}

.rem-when i,
.rem-rep i {
  font-size: 11px;
}

.rem-when.is-late {
  color: var(--error);
}

.rem-when em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.rem-rep {
  font-weight: 400;
  margin-top: 3px;
}

/* ---- chat ---- */
.chat-head {
  padding: 10px 16px 14px;
}

.pet-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 12px;
}

.pet-chip .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.pet-chip .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-chip span small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.pet-chip span strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.chat-head-actions {
  display: flex;
  gap: 10px;
}

.chip-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 500;
}

.chip-btn i {
  font-size: 17px;
  color: var(--muted);
}

.chip-btn.is-primary {
  flex: 0 0 auto;
  padding-inline: 16px;
  background: var(--primary-dim);
  color: #fff;
  box-shadow: none;
}

.chip-btn.is-primary i {
  color: #fff;
}

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg {
  max-width: 85%;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.msg-user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.msg-bot {
  align-self: flex-start;
  background: var(--surface);
  border-bottom-left-radius: 4px;
}

.msg-wrap {
  max-width: 85%;
  align-self: flex-start;
}

.msg-wrap .msg {
  max-width: 100%;
}

.msg-from {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--outline);
}

.msg-avatar {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
}

.chat-input {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 8px 8px 8px 18px;
}

.chat-input span {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
}

.chat-input i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--surface-container-high);
  color: var(--outline);
  font-size: 20px;
}

/* ---- tab bar, com a bola do mascote flutuando ---- */
.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  background: var(--surface);
  border-top: 1px solid var(--outline-variant);
  padding: 8px 0 26px;
  box-shadow: var(--shadow-soft);
}

.tab {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.tab i {
  font-size: 23px;
}

.tab.is-active {
  color: var(--primary);
  font-weight: 600;
}

.tab .badge {
  position: absolute;
  top: 1px;
  left: calc(50% + 6px);
  min-width: 14px;
  height: 14px;
  padding-inline: 3px;
  border-radius: 7px;
  border: 1.5px solid var(--surface);
  background: var(--error);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  line-height: 11px;
  text-align: center;
}

.tab-gap {
  width: 64px;
  flex: none;
}

.tab-ball {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: var(--shadow-raised);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.tab-ball img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* ================================ aura ================================= */

.aura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--muted);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.chat-demo {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-demo .msg {
  box-shadow: none;
  font-size: 14px;
}

.chat-demo .msg-bot {
  background: #fcf9f5;
  color: var(--muted);
}

/* =============================== planos ================================ */

.plans-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}

.table-card {
  overflow: hidden;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare th,
.compare td {
  padding: 18px 20px;
  text-align: center;
  font-weight: 400;
}

.compare th:first-child,
.compare td:first-child {
  text-align: left;
  width: 46%;
}

.compare thead th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare tbody tr {
  border-top: 1px solid var(--outline-variant);
}

.compare td:not(:first-child) {
  color: var(--muted);
  font-size: 14px;
}

.compare .is-plus {
  background: var(--primary-container);
  color: var(--primary-dim);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.prices {
  position: relative;
  display: grid;
  gap: 16px;
}

.price {
  padding: 22px 24px;
}

.price-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-value small {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.price-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.price-best {
  position: relative;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-raised);
}

.price-best .price-value small,
.price-best .price-note {
  color: rgba(255, 255, 255, 0.82);
}

/* único uso do dourado na página: o selo do plano assinado */
.save {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.plans-mascot {
  width: 190px;
  height: auto;
  margin: 4px auto 0;
}

/* ============================== dúvidas ================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq-mascot {
  width: 190px;
  height: auto;
  margin-top: 28px;
}

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

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--outline);
  border-bottom: 2px solid var(--outline);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 31px;
}

.faq details p {
  padding: 0 40px 22px 0;
  font-size: 15px;
  color: var(--muted);
}

/* =============================== fecho ================================= */

.closing {
  padding: 40px 0 96px;
}

.closing-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing h2 {
  max-width: 18ch;
}

.closing .lede {
  margin-inline: auto;
  text-align: center;
}

.closing .badge-store {
  margin-top: 30px;
}

.closing-mascot {
  width: 180px;
  height: auto;
  margin-bottom: 8px;
}

/* =============================== rodapé ================================ */

.foot {
  border-top: 1px solid var(--outline-variant);
  padding: 28px 0;
  font-size: 14px;
  color: var(--muted);
}

.foot-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.foot nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.foot nav a:hover {
  color: var(--ink);
}

/* =============================== responsivo ============================ */

@media (max-width: 900px) {
  .hero-grid,
  .aura-grid,
  .plans-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 24px;
  }

  .hero-art {
    order: -1;
  }

  .hero-mascot {
    width: 240px;
  }

  .hero-art::before {
    inset: 10% 18% 4% 18%;
  }

  .lede {
    max-width: none;
  }

  .topnav {
    display: none;
  }

  .band {
    padding: 64px 0;
  }

  h2 {
    max-width: none;
  }

  .faq-mascot,
  .plans-mascot {
    display: none;
  }

  .foot nav {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .hero-actions {
    gap: 12px;
  }

  .compare th,
  .compare td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .compare thead th {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* =========================== páginas legais ============================= */
/* termos, privacidade, suporte: cabeçalho simplificado (sem o menu inteiro),
   conteúdo em coluna estreita pra leitura, reaproveitando .card, .faq etc. */

.legalbar {
  border-bottom: 1px solid var(--outline-variant);
}

.legalbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.back-link:hover {
  color: var(--ink);
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.legal-shell {
  width: min(100% - 48px, 720px);
  margin-inline: auto;
  padding: 64px 0 96px;
}

.legal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-shell h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.legal-date {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.legal-lede {
  margin-top: 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-body {
  margin-top: 48px;
}

.legal-body section {
  padding: 32px 0;
  border-top: 1px solid var(--outline-variant);
}

.legal-body section:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-body h2 {
  font-size: 20px;
  max-width: none;
  margin-bottom: 14px;
}

.legal-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 8px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a332c;
}

.legal-body p + p {
  margin-top: 12px;
}

.legal-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.6;
  color: #3a332c;
}

.legal-body a {
  color: var(--primary-dim);
  text-decoration: underline;
  text-decoration-color: var(--outline);
  text-underline-offset: 2px;
}

.legal-body a:hover {
  text-decoration-color: var(--primary-dim);
}

.legal-note {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--primary-container);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-primary-container);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  margin-top: 40px;
}

.contact-card .ficon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
}

.contact-card a.email {
  color: var(--primary-dim);
  font-weight: 600;
}

.legal-toc {
  margin-top: 28px;
  padding: 20px 22px;
}

.legal-toc p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.legal-toc li {
  font-size: 13px;
}

.legal-toc a {
  color: var(--ink);
}

.legal-toc a:hover {
  color: var(--primary-dim);
}

.support-faq {
  margin-top: 12px;
}

@media (max-width: 560px) {
  .legal-shell {
    padding: 40px 0 64px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
