/* HighlineHero — folha de estilo principal */

:root {
  --void-plum: #0f0217;
  --eclipse-black: #0b0211;
  --carbon-ink: #111111;
  --lavender-mist: #44374a;
  --ghost-violet: #4b4151;
  --ash-wisp: #6f6774;
  --silver-smoke: #b7b3b9;
  --moonstone: #999999;
  --paper-white: #ffffff;
  --bone: #f7f6f5;
  --frost: #f0f0f0;
  --laser-violet: #d262ff;
  --royal-plum: #6a1791;
  --merlot-shadow: #2d063a;
  --mulberry-deep: #180321;
  --violet-ink: #6a1791;
  --border-light: #e1e4e8;

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-logo: Georgia, 'Iowan Old Style', 'Times New Roman', serif;

  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-36: 36px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;
  --sp-80: 80px;

  --page-max: 1200px;
  --radius-img: 4px;
  --radius-btn: 8px;
  --radius-card: 14px;
  --radius-pill: 9999px;
}

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

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

body {
  margin: 0;
  background: var(--void-plum);
  color: var(--paper-white);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--laser-violet);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--sp-20);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--laser-violet);
  color: var(--mulberry-deep);
  padding: var(--sp-12) var(--sp-20);
  font-weight: 600;
  border-radius: 0 0 var(--radius-btn) 0;
}
.skip-link:focus { left: 0; }

.accent { color: var(--laser-violet); }

/* ---------- Blocos partilhados ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laser-violet);
  margin-bottom: var(--sp-16);
}
.eyebrow--muted { color: var(--violet-ink); }

.section-title {
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.04em;
  max-width: 18ch;
}
.section-title--ink { color: var(--mulberry-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: var(--laser-violet);
  color: #16021d;
}
.btn--primary:hover { box-shadow: 0 0 0 4px rgba(210, 98, 255, .2); }
.btn--ghost {
  background: transparent;
  border-color: var(--lavender-mist);
  color: var(--paper-white);
}
.btn--ghost:hover { border-color: var(--laser-violet); color: var(--laser-violet); }
.btn--small { padding: 8px 16px; font-size: 13px; }

/* ---------- 1. Cabeçalho ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 2, 17, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lavender-mist);
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  min-height: 62px;
}

.logo {
  font-family: var(--font-logo);
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
}
.logo__part { color: var(--paper-white); }
.logo__part--accent { color: var(--laser-violet); }
.logo--footer { font-size: 21px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-20); }
.nav__link {
  font-size: 13.5px;
  color: var(--silver-smoke);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s ease;
}
.nav__link:hover { color: var(--laser-violet); }

.masthead__cta { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  background: transparent;
  border: 1px solid var(--lavender-mist);
  border-radius: var(--radius-btn);
  color: var(--paper-white);
  padding: 7px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.burger__label { letter-spacing: 0.05em; text-transform: uppercase; font-size: 11px; }

.nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--eclipse-black);
  border-bottom: 1px solid var(--lavender-mist);
  padding: var(--sp-16) var(--sp-20) var(--sp-24);
}
.nav.is-open .nav__list { flex-direction: column; align-items: flex-start; gap: var(--sp-16); }
.nav.is-open .nav__link { font-size: 16px; color: var(--paper-white); }

/* ---------- 2. Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sp-48) var(--sp-56);
  border-bottom: 1px solid var(--lavender-mist);
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(106, 23, 145, .55), transparent 60%),
    linear-gradient(180deg, rgba(15, 2, 23, .72) 0%, rgba(15, 2, 23, .88) 55%, var(--void-plum) 100%);
}
.hero__inner { display: grid; gap: var(--sp-40); }

.hero__title {
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: var(--sp-20);
}
.hero__lead {
  color: var(--silver-smoke);
  max-width: 52ch;
  margin-bottom: var(--sp-32);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-12); margin-bottom: var(--sp-32); }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-12);
}
.hero__meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--silver-smoke);
  border: 1px solid var(--lavender-mist);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: rgba(17, 17, 17, .5);
}
.hero__meta-key { color: var(--moonstone); text-transform: uppercase; margin-right: 6px; }

.hero__panel {
  border: 1px solid var(--lavender-mist);
  border-radius: var(--radius-card);
  background: rgba(11, 2, 17, .6);
  padding: var(--sp-12);
}
.hero__shot { border-radius: var(--radius-img); width: 100%; }
.hero__icons {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}
.hero__icons img { border-radius: 10px; border: 1px solid var(--lavender-mist); }
.hero__caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--moonstone);
  margin-top: var(--sp-12);
}

/* ---------- 3. Vantagens (banda clara) ---------- */

.values {
  background: var(--bone);
  color: var(--mulberry-deep);
  padding-block: var(--sp-56);
}
.values__head { margin-bottom: var(--sp-40); }
.values__list { display: grid; gap: var(--sp-32); }
.values__item {
  padding-top: var(--sp-20);
  border-top: 1px solid var(--border-light);
}
.values__icon { color: var(--violet-ink); margin-bottom: var(--sp-16); }
.values__title {
  font-size: 18px;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: var(--sp-8);
}
.values__text { font-size: 14px; color: #5c5560; line-height: 1.55; }

/* ---------- 4. Destaque ---------- */

.feature {
  position: relative;
  isolation: isolate;
  padding-block: var(--sp-80) var(--sp-56);
  background:
    url("assets/img/bg/mesh.webp") center/cover no-repeat,
    var(--void-plum);
  border-bottom: 1px solid var(--lavender-mist);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(15, 2, 23, .5) 0%, rgba(15, 2, 23, .85) 70%);
}
.feature__inner { display: grid; gap: var(--sp-40); }
.feature__media { margin: 0; }
.feature__media img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--lavender-mist);
}
.feature__figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--moonstone);
  margin-top: var(--sp-8);
}
.feature__body .section-title { margin-bottom: var(--sp-20); }
.feature__text { color: var(--silver-smoke); margin-bottom: var(--sp-16); max-width: 56ch; }
.feature__text em { color: var(--paper-white); font-style: italic; }

.feature__specs {
  display: grid;
  gap: 0;
  margin: var(--sp-24) 0;
  border-top: 1px solid var(--lavender-mist);
}
.feature__spec {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: 9px 0;
  border-bottom: 1px solid var(--lavender-mist);
}
.feature__spec dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--moonstone);
  padding-top: 3px;
}
.feature__spec dd { font-size: 14px; text-align: right; }

.feature__note {
  font-size: 13.5px;
  color: var(--silver-smoke);
  border-left: 2px solid var(--laser-violet);
  padding-left: var(--sp-16);
  margin-bottom: var(--sp-24);
  max-width: 54ch;
}

/* ---------- 5. Catálogo ---------- */

.catalog { padding-block: var(--sp-56) var(--sp-80); background: var(--void-plum); }
.catalog__head { margin-bottom: var(--sp-40); }
.catalog__head .section-title { margin-bottom: var(--sp-16); }
.catalog__intro { color: var(--silver-smoke); max-width: 60ch; font-size: 14px; }

.catalog__columns { display: grid; gap: var(--sp-24); }
.catalog__col { display: grid; gap: var(--sp-24); align-content: start; }

.gcard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--lavender-mist);
  background: var(--eclipse-black);
  display: flex;
  align-items: flex-end;
  min-height: 340px;
}
.gcard--tall { min-height: 430px; }
.gcard--mid { min-height: 380px; }
.gcard--short { min-height: 320px; }

.gcard__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
}
.gcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 2, 23, .1) 0%, rgba(15, 2, 23, .72) 42%, rgba(11, 2, 17, .96) 100%);
}
.gcard__overlay { padding: var(--sp-16); width: 100%; }
.gcard__flag {
  position: absolute;
  top: var(--sp-12);
  left: var(--sp-16);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--laser-violet);
  color: #16021d;
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}
.gcard__id { display: flex; align-items: center; gap: var(--sp-12); margin-bottom: var(--sp-12); }
.gcard__icon { border-radius: 12px; border: 1px solid var(--lavender-mist); flex: none; }
.gcard__title { font-size: 19px; letter-spacing: -0.03em; }
.gcard__studio {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--silver-smoke);
  margin-top: 2px;
}
.gcard__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--laser-violet);
  margin-bottom: var(--sp-12);
}
.gcard__text { font-size: 13.5px; line-height: 1.5; color: var(--silver-smoke); margin-bottom: var(--sp-16); }
.gcard__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--laser-violet);
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 98, 255, .4);
  padding-bottom: 2px;
}
.gcard__link:hover { border-bottom-color: var(--laser-violet); }

.catalog__disclosure {
  margin-top: var(--sp-32);
  font-size: 12.5px;
  color: var(--moonstone);
}
.catalog__disclosure a { color: var(--silver-smoke); }

/* ---------- 6. Galeria ---------- */

.gallery {
  background: var(--paper-white);
  color: var(--mulberry-deep);
  padding-block: var(--sp-56);
}
.gallery__head { margin-bottom: var(--sp-32); }
.gallery__head .section-title { margin-bottom: var(--sp-12); }
.gallery__intro { font-size: 14px; color: #5c5560; max-width: 58ch; }
.gallery__grid { display: grid; gap: var(--sp-16); }
.gallery__item { border-radius: var(--radius-card); overflow: hidden; background: var(--frost); }
.gallery__item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.gallery__caption {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #6b6470;
  padding: var(--sp-8) var(--sp-12) var(--sp-12);
}

/* ---------- 7. Como começar ---------- */

.steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sp-80);
  border-block: 1px solid var(--lavender-mist);
}
.steps__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.steps::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 2, 23, .95) 20%, rgba(15, 2, 23, .78) 100%);
}
.steps__head { margin-bottom: var(--sp-40); }
.steps__list { display: grid; gap: var(--sp-32); counter-reset: step; }
.steps__item { padding-left: var(--sp-48); position: relative; }
.steps__num {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--laser-violet);
}
.steps__item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 26px;
  bottom: -26px;
  width: 1px;
  background: var(--lavender-mist);
}
.steps__item:last-child::before { display: none; }
.steps__title { font-size: 18px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: var(--sp-8); }
.steps__text { font-size: 14px; color: var(--silver-smoke); max-width: 46ch; }

/* ---------- 8. Opiniões ---------- */

.reviews {
  background: var(--bone);
  color: var(--mulberry-deep);
  padding-block: var(--sp-56) var(--sp-80);
}
.reviews__head { margin-bottom: var(--sp-40); }
.reviews__list { display: grid; gap: var(--sp-24); }
.reviews__card {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: var(--sp-24);
}
.reviews__quote {
  margin: 0 0 var(--sp-24);
  font-size: 15px;
  line-height: 1.55;
  color: #3d3542;
  quotes: "«" "»";
}
.reviews__quote::before { content: open-quote; }
.reviews__quote::after { content: close-quote; }
.reviews__author { display: flex; align-items: center; gap: var(--sp-12); }
.reviews__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--merlot-shadow);
  color: var(--paper-white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.reviews__meta { display: grid; font-size: 13px; }
.reviews__meta strong { font-weight: 600; }
.reviews__meta span { color: #6b6470; font-size: 12.5px; }

/* ---------- 9. Como funciona ---------- */

.model {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sp-80);
}
.model__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.model::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 2, 23, .92), rgba(11, 2, 17, .97));
}
.model__inner { display: grid; gap: var(--sp-40); }
.model__intro .section-title { margin-bottom: var(--sp-16); }
.model__text { color: var(--silver-smoke); max-width: 54ch; }
.model__list { display: grid; gap: var(--sp-24); }
.model__item {
  border: 1px solid var(--lavender-mist);
  border-radius: var(--radius-card);
  background: rgba(11, 2, 17, .62);
  padding: var(--sp-20);
}
.model__title { font-size: 16px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: var(--sp-8); }
.model__item p { font-size: 13.5px; color: var(--silver-smoke); line-height: 1.55; }
.model__item a { color: var(--laser-violet); }

/* ---------- 10. Subscrição ---------- */

.subscribe {
  background: var(--bone);
  color: var(--mulberry-deep);
  padding-block: var(--sp-56);
}
.subscribe__inner { display: grid; gap: var(--sp-40); }
.subscribe__copy .section-title { margin-bottom: var(--sp-16); }
.subscribe__text { font-size: 14px; color: #5c5560; max-width: 46ch; margin-bottom: var(--sp-24); }
.subscribe__figure { margin: 0; }
.subscribe__figure img { border-radius: var(--radius-card); width: 100%; }
.subscribe__figure figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #6b6470;
  margin-top: var(--sp-8);
}

.form {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: var(--sp-24);
  align-self: start;
}
.form__row { margin-bottom: var(--sp-16); }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form__opt { color: #6b6470; font-weight: 400; }
.form__input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  background: var(--frost);
  font: inherit;
  font-size: 14px;
  color: var(--mulberry-deep);
}
.form__input::placeholder { color: #9a949f; }
.form__input:focus { background: var(--paper-white); border-color: var(--violet-ink); }
.form__check { display: flex; gap: var(--sp-12); margin-bottom: var(--sp-20); }
.form__checkbox { margin-top: 3px; accent-color: var(--violet-ink); width: 16px; height: 16px; flex: none; }
.form__consent { font-size: 12.5px; line-height: 1.5; color: #5c5560; }
.form__consent a { color: var(--violet-ink); }
.form__submit { width: 100%; }
.form__hint { font-size: 12px; color: #6b6470; margin-top: var(--sp-12); }
.form__success {
  margin-top: var(--sp-16);
  border: 1px solid var(--violet-ink);
  border-radius: var(--radius-btn);
  background: #f6ecfb;
  color: var(--merlot-shadow);
  padding: var(--sp-12) var(--sp-16);
  font-size: 13px;
}
.form__error { border-color: #b3346b !important; }

/* ---------- 11. FAQ ---------- */

.faq { background: var(--void-plum); padding-block: var(--sp-56) var(--sp-80); }
.faq__inner { display: grid; gap: var(--sp-32); }
.faq__list { border-top: 1px solid var(--lavender-mist); }
.faq__item { border-bottom: 1px solid var(--lavender-mist); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: var(--sp-20) 0;
  background: none;
  border: 0;
  color: var(--paper-white);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: left;
  cursor: pointer;
}
.faq__question:hover { color: var(--laser-violet); }
.faq__chevron { flex: none; color: var(--laser-violet); transition: transform .2s ease; }
.faq__item--open .faq__chevron { transform: rotate(180deg); }
.faq__answer { display: none; padding-bottom: var(--sp-20); }
.faq__item--open .faq__answer { display: block; }
.faq__answer p { font-size: 14px; color: var(--silver-smoke); max-width: 66ch; }
.faq__answer a { color: var(--laser-violet); }

/* ---------- 12. Rodapé ---------- */

.footer {
  background: var(--eclipse-black);
  border-top: 1px solid var(--lavender-mist);
  padding-top: var(--sp-48);
}
.footer__inner { display: grid; gap: var(--sp-32); }
.footer__about { font-size: 13px; color: var(--moonstone); max-width: 40ch; margin-top: var(--sp-12); }
.footer__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--moonstone);
  font-weight: 400;
  margin-bottom: var(--sp-12);
}
.footer__list { display: grid; gap: var(--sp-8); }
.footer__list a, .footer__contact a {
  font-size: 13.5px;
  color: var(--silver-smoke);
  text-decoration: none;
}
.footer__list a:hover, .footer__contact a:hover { color: var(--laser-violet); }
.footer__contact p { font-size: 13.5px; color: var(--silver-smoke); margin-bottom: 4px; }
.footer__note { color: var(--moonstone) !important; font-size: 12px !important; margin-top: var(--sp-8); }
.footer__bottom {
  margin-top: var(--sp-40);
  padding-block: var(--sp-20);
  border-top: 1px solid var(--lavender-mist);
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--moonstone);
}

/* ---------- Elementos flutuantes ---------- */

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--lavender-mist);
  background: rgba(11, 2, 17, .9);
  color: var(--paper-white);
  cursor: pointer;
}
.to-top:hover { border-color: var(--laser-violet); color: var(--laser-violet); }

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--eclipse-black);
  border-top: 1px solid var(--lavender-mist);
  padding-block: var(--sp-16);
}
.cookie__inner { display: grid; gap: var(--sp-12); }
.cookie__text { font-size: 13px; color: var(--silver-smoke); }
.cookie__text a { color: var(--laser-violet); }
.cookie__actions { display: flex; gap: var(--sp-8); }

/* ---------- Páginas legais ---------- */

.legal { padding-block: var(--sp-48) var(--sp-80); background: var(--void-plum); }
.legal__head { margin-bottom: var(--sp-32); padding-bottom: var(--sp-24); border-bottom: 1px solid var(--lavender-mist); }
.legal__title { font-size: 32px; line-height: 1.12; letter-spacing: -0.04em; margin-bottom: var(--sp-12); }
.legal__updated {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--moonstone);
  margin-bottom: var(--sp-20);
}
.legal__body { max-width: 74ch; }
.legal__body h2 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-top: var(--sp-40);
  margin-bottom: var(--sp-12);
}
.legal__body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: var(--sp-24);
  margin-bottom: var(--sp-8);
}
.legal__body p { color: var(--silver-smoke); font-size: 14.5px; margin-bottom: var(--sp-12); }
.legal__body a { color: var(--laser-violet); }
.legal__body ul { margin-bottom: var(--sp-16); display: grid; gap: var(--sp-8); }
.legal__body li {
  position: relative;
  padding-left: var(--sp-20);
  font-size: 14.5px;
  color: var(--silver-smoke);
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--laser-violet);
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-24);
  font-size: 13.5px;
}
.legal__table th, .legal__table td {
  border: 1px solid var(--lavender-mist);
  padding: var(--sp-12);
  text-align: left;
  vertical-align: top;
  color: var(--silver-smoke);
}
.legal__table th { color: var(--paper-white); font-weight: 500; background: rgba(17, 17, 17, .5); }

/* ---------- Adaptação ---------- */

@media (min-width: 600px) {
  .values__list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-32) var(--sp-40); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .cookie__inner { grid-template-columns: 1fr auto; align-items: center; gap: var(--sp-24); }
  .footer__bottom { grid-template-columns: 1fr auto; }
  .steps__list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-40); }
  .steps__item::before { display: none; }
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-32); }
  .section-title { font-size: 34px; }
  .hero { padding-block: var(--sp-56) var(--sp-80); }
  .hero__title { font-size: 46px; }
  .catalog__columns { grid-template-columns: repeat(2, 1fr); }
  .catalog__col--b { margin-top: var(--sp-40); }
  .reviews__list { grid-template-columns: repeat(2, 1fr); }
  .model__list { grid-template-columns: repeat(2, 1fr); }
  .subscribe__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-48); align-items: start; }
  .legal__title { font-size: 40px; }
  .footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-40); }
}

@media (min-width: 1024px) {
  .burger { display: none; }
  .nav { display: block; }
  .nav__list { gap: var(--sp-16); }
  .masthead__cta { display: inline-flex; }
  .masthead__inner { min-height: 68px; gap: var(--sp-24); }

  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: var(--sp-48); }
  .hero__title { font-size: 52px; letter-spacing: -0.05em; }

  .section-title { font-size: 38px; letter-spacing: -0.05em; }

  .values { padding-block: var(--sp-80); }
  .values__list { grid-template-columns: repeat(4, 1fr); gap: var(--sp-32); }

  .feature__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: var(--sp-48); }

  .catalog__columns { grid-template-columns: repeat(3, 1fr); gap: var(--sp-24); }
  .catalog__col--a { margin-top: 0; }
  .catalog__col--b { margin-top: var(--sp-56); }
  .catalog__col--c { margin-top: var(--sp-24); }

  .gallery { padding-block: var(--sp-80); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-20); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 32 / 9; }
  .gallery__item--tall { grid-column: span 2; }
  .gallery__item--tall img { aspect-ratio: 32 / 9; }

  .steps__list { grid-template-columns: repeat(4, 1fr); gap: var(--sp-24); }
  .steps__inner { display: grid; grid-template-columns: 1fr; }

  .reviews__list { grid-template-columns: repeat(3, 1fr); gap: var(--sp-24); align-items: start; }
  .reviews__card--offset { margin-top: var(--sp-40); }

  .model__inner { grid-template-columns: .8fr 1.2fr; gap: var(--sp-56); align-items: start; }
}

@media (min-width: 1280px) {
  .hero__title { font-size: 58px; }
  .gcard--tall { min-height: 470px; }
  .gcard--mid { min-height: 400px; }
  .gcard--short { min-height: 330px; }
}

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