:root {
  --black: #080908;
  --black-soft: #111210;
  --black-card: #151613;
  --cream: #f4f0e6;
  --cream-2: #e7dfcf;
  --white: #fffdf8;
  --muted: #aaa79f;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #e5ad3b;
  --gold-bright: #f4c65a;
  --gold-deep: #a87218;
  --green: #1fab5c;
  --font-display: "Archivo", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1200px;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-bright);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span,
h2 span {
  display: block;
  color: var(--gold-bright);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.1vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h3 {
  letter-spacing: -0.03em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #171106;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 38px rgba(229, 173, 59, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(229, 173, 59, 0.32);
}

.button-dark {
  color: var(--cream);
  background: var(--black);
}

.inline-link,
.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inline-link::after,
.card-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 180ms ease;
}

.inline-link:hover::after,
.card-link:hover::after {
  transform: scaleX(1);
}

/* Cabeçalho */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 8, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), 1320px);
  min-height: 92px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand small {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-header nav a {
  color: #d5d2ca;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: var(--gold-bright);
}

.button-header {
  min-height: 44px;
  border-color: rgba(244, 198, 90, 0.5);
  padding-inline: 20px;
  color: var(--gold-bright);
  background: rgba(229, 173, 59, 0.06);
}

.button-header:hover {
  border-color: var(--gold-bright);
  background: rgba(229, 173, 59, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 11px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

/* =========================================================
   FAIXA DE AVISO EM MOVIMENTO
   Fica dentro do cabeçalho fixo, logo abaixo da barra da JM.
   O texto desliza sozinho (só CSS) e a faixa inteira é um
   botão de WhatsApp. Ao passar o mouse, o movimento pausa.
   Para trocar o texto, edite os dois .promo-ticker-group no
   index.html — eles precisam ser iguais.
   ========================================================= */
.promo-ticker {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 40px;
  border-top: 1px solid rgba(28, 21, 10, 0.14);
  border-bottom: 1px solid rgba(28, 21, 10, 0.14);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 52%, var(--gold-bright));
  color: #1c150a;
  text-decoration: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.promo-ticker-track {
  display: inline-flex;
  height: 100%;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: promo-scroll 28s linear infinite;
}

.promo-ticker:hover .promo-ticker-track,
.promo-ticker:focus-visible .promo-ticker-track {
  animation-play-state: paused;
}

.promo-ticker-group {
  display: inline-flex;
  align-items: center;
}

.promo-ticker-group > span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-ticker-group > span::before {
  margin: 0 24px;
  color: rgba(28, 21, 10, 0.5);
  content: "\25C6";
  font-size: 0.56rem;
}

@keyframes promo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(229, 173, 59, 0.1), transparent 26%),
    linear-gradient(180deg, #080908 0%, #0b0c0a 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -11vw;
  width: 38vw;
  height: 100%;
  content: "";
  border-left: 1px solid rgba(229, 173, 59, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: skewX(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  align-items: center;
  padding-bottom: 88px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: clamp(52px, 7vw, 110px);
}

.hero-copy {
  padding-bottom: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c3c0b8;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-note {
  margin: 15px 0 30px;
  color: #8c8a84;
  font-size: 0.78rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.rating-score {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.stars {
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.hero-rating p {
  margin: 4px 0 0;
  color: #bdbab2;
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
}

.image-slot {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #181914;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  transform: scale(var(--image-zoom, 1));
  transition: transform 500ms ease;
}

.image-slot:hover img {
  transform: scale(calc(var(--image-zoom, 1) + 0.015));
}

.image-slot.is-empty {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px dashed rgba(244, 198, 90, 0.42);
}

.image-slot.is-empty::after {
  max-width: 240px;
  padding: 20px;
  content: attr(data-image-label);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

.hero-photo {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(244, 198, 90, 0.34);
  border-radius: 26px 26px 92px 26px;
  box-shadow: var(--shadow);
}

.hero-photo::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 63%, rgba(4, 5, 4, 0.62) 100%),
    linear-gradient(90deg, rgba(229, 173, 59, 0.08), transparent 38%);
  pointer-events: none;
}

.experience-card {
  position: absolute;
  z-index: 3;
  top: 44px;
  left: -52px;
  display: grid;
  width: 150px;
  min-height: 126px;
  align-content: center;
  border: 1px solid rgba(244, 198, 90, 0.35);
  border-radius: 18px;
  padding: 20px;
  color: var(--black);
  background: var(--gold-bright);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.experience-card strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.experience-card span {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

.photo-caption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  text-align: right;
}

.photo-caption span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.photo-caption strong {
  max-width: 230px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip div {
  display: grid;
  min-height: 108px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 20px 30px;
}

.proof-strip div:first-child {
  padding-left: 0;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.proof-strip span {
  color: #8e8c86;
  font-size: 0.73rem;
}

/* Seções */
.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading-split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > p {
  margin-bottom: 8px;
  color: #aaa79f;
  line-height: 1.75;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent 25%),
    var(--black);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(244, 198, 90, 0.36);
  transform: translateY(-6px);
}

.service-photo {
  aspect-ratio: 3 / 4;
  border-bottom: 1px solid var(--line);
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 70%, rgba(8, 9, 8, 0.55));
  pointer-events: none;
}

.service-content {
  position: relative;
  min-height: 295px;
  padding: 34px 32px 32px;
}

.service-index {
  position: absolute;
  top: 34px;
  right: 30px;
  color: rgba(244, 198, 90, 0.45);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-content h3 {
  max-width: 260px;
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.service-content p {
  min-height: 82px;
  margin-bottom: 27px;
  color: #aaa79f;
  font-size: 0.9rem;
  line-height: 1.7;
}

.coverage-note {
  display: grid;
  align-items: start;
  border-top: 1px solid var(--line);
  margin-top: 54px;
  padding-top: 34px;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 40px;
}

.coverage-note > span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.coverage-note h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.coverage-note p {
  max-width: 760px;
  margin-bottom: 0;
  color: #8f8d86;
  font-size: 0.85rem;
  line-height: 1.75;
}

/* Bloco claro de impacto */
.impact-section {
  padding: 120px 0;
  color: var(--black);
  background: var(--cream);
}

.impact-section .eyebrow {
  color: var(--gold-deep);
}

.impact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 118px);
}

.impact-photo {
  aspect-ratio: 3 / 4;
  border-radius: 26px 26px 88px 26px;
  box-shadow: 0 30px 80px rgba(48, 39, 19, 0.18);
}

.impact-copy h2 span {
  color: var(--gold-deep);
}

.impact-lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: #5a574f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.impact-lead strong {
  color: var(--black);
}

.reason-list {
  display: grid;
  margin-bottom: 38px;
}

.reason-list article {
  display: grid;
  border-top: 1px solid rgba(8, 9, 8, 0.14);
  padding: 22px 0;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.reason-list article:last-child {
  border-bottom: 1px solid rgba(8, 9, 8, 0.14);
}

.reason-list article > span {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
}

.reason-list h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.reason-list p {
  margin-bottom: 0;
  color: #6d6960;
  font-size: 0.86rem;
}

/* Orçamento */
.quote-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 16% 36%, rgba(229, 173, 59, 0.1), transparent 22%),
    #0d0e0c;
}

.quote-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(58px, 8vw, 116px);
}

.quote-intro {
  position: sticky;
  top: 130px;
}

.quote-intro p:not(.eyebrow) {
  color: #aaa79f;
  line-height: 1.75;
}

.quote-intro .response-note {
  border-left: 2px solid var(--gold);
  margin-top: 32px;
  padding: 7px 0 7px 18px;
  color: #d3d0c8;
  font-size: 0.85rem;
}

.quote-box {
  display: grid;
  border: 1px solid rgba(244, 198, 90, 0.24);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  gap: 32px;
}

.quote-box fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.quote-box legend,
.select-label > span {
  display: block;
  margin-bottom: 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  color: #a9a69e;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.choice-grid input:checked + span {
  border-color: var(--gold-bright);
  color: #171106;
  background: var(--gold-bright);
}

.select-label select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--cream);
  background: #171815;
}

.select-label select:focus {
  border-color: var(--gold-bright);
  outline: 0;
}

.quote-preview {
  min-height: 46px;
  margin: 0;
  border-left: 2px solid var(--gold);
  padding: 3px 0 3px 15px;
  color: #98958e;
  font-size: 0.8rem;
  line-height: 1.55;
}

.quote-box .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.quote-box .button:disabled {
  box-shadow: none;
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.42;
  transform: none;
}

/* Avaliações */
.reviews-section {
  background: #0a0b09;
}

.reviews-head {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.reviews-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.reviews-rating {
  display: grid;
  min-width: 190px;
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.reviews-rating strong {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.reviews-rating small {
  margin-top: 7px;
  color: #8f8c86;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: var(--black-card);
  grid-template-rows: auto 1fr auto;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.review-card > p {
  align-self: center;
  margin: 28px 0;
  color: #e1ded6;
  font-size: 1rem;
  line-height: 1.7;
}

.review-card > div {
  display: grid;
  gap: 4px;
}

.review-card strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.review-card div span {
  color: #7e7c76;
  font-size: 0.72rem;
}

.reviews-link {
  margin-top: 34px;
}

/* Processo */
.process-section {
  padding: 110px 0;
  color: var(--black);
  background: var(--gold-bright);
}

.process-section .eyebrow {
  color: #6e4a10;
}

.process-section h2 span {
  color: #6e4a10;
}

.process-grid {
  display: grid;
  border-top: 1px solid rgba(8, 9, 8, 0.22);
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  min-height: 230px;
  border-right: 1px solid rgba(8, 9, 8, 0.22);
  padding: 32px;
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  color: #775014;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
}

.process-grid h3 {
  margin: 65px 0 10px;
  font-size: 1.35rem;
}

.process-grid p {
  max-width: 270px;
  margin-bottom: 0;
  color: #5f451a;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  background: var(--black);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 8vw, 116px);
}

.faq-title {
  position: sticky;
  top: 130px;
}

.faq-title > p:not(.eyebrow) {
  color: #96938c;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 40px 26px 0;
  color: #97948d;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* CTA final */
.final-cta {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 100px 0 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(229, 173, 59, 0.11), transparent 26%),
    #0c0d0b;
}

.final-cta-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 8vw, 110px);
}

.final-cta-grid > div {
  padding-bottom: 100px;
}

.final-cta-grid > div > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 32px;
  color: #aaa79f;
  line-height: 1.7;
}

.phone-link {
  display: inline-flex;
  margin-left: 22px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.final-photo {
  aspect-ratio: 3 / 4;
  align-self: end;
  border: 1px solid rgba(244, 198, 90, 0.23);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

/* Rodapé */
footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 34px;
  background: #060706;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.2fr auto;
  gap: 38px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.footer-grid > p {
  color: #8d8a84;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c6c2ba;
  font-size: 0.74rem;
}

.footer-grid > small {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #66645f;
  font-size: 0.68rem;
}

.floating-cta {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  padding: 0 23px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Entrada suave */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1040px) {
  .header-inner {
    gap: 22px;
  }

  .site-header nav {
    gap: 18px;
  }

  .button-header {
    display: none;
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: 1fr 0.72fr;
    gap: 54px;
  }

  .experience-card {
    left: -28px;
  }

  .section-heading-split {
    gap: 46px;
  }

  .quote-layout,
  .faq-grid {
    gap: 58px;
  }
}

/* Mobile e tablet vertical */
@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(calc(100% - 34px), var(--container));
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    justify-content: start;
    padding: 46px 24px;
    background: rgba(8, 9, 8, 0.98);
    grid-column: 1 / -1;
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
  }

  .promo-ticker {
    height: 34px;
  }

  .promo-ticker-group > span {
    font-size: 0.67rem;
    letter-spacing: 0.04em;
  }

  .promo-ticker-group > span::before {
    margin: 0 16px;
  }

  /* Com o menu aberto, a faixa some para não aparecer sob o painel. */
  body.menu-open .promo-ticker {
    visibility: hidden;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 62px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(92%, 490px);
    justify-self: center;
  }

  .experience-card {
    top: 28px;
    left: -30px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div,
  .proof-strip div:first-child {
    min-height: 98px;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section,
  .impact-section,
  .quote-section {
    padding: 88px 0;
  }

  .section-heading-split,
  .coverage-note,
  .impact-grid,
  .quote-layout,
  .faq-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    gap: 22px;
  }

  .coverage-note {
    gap: 14px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child,
  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card:last-child {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .service-card:last-child .service-photo {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .impact-grid {
    gap: 52px;
  }

  .impact-photo {
    width: min(78%, 480px);
    justify-self: center;
  }

  .quote-intro,
  .faq-title {
    position: static;
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reviews-rating {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:first-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 9, 8, 0.22);
    padding: 28px 0;
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin: 20px 0 8px;
  }

  .final-cta {
    padding-top: 84px;
  }

  .final-cta-grid > div {
    padding-bottom: 0;
  }

  .final-photo {
    width: min(82%, 480px);
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

/* Celular */
@media (max-width: 560px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.52rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.8vw, 3.2rem);
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .inline-link {
    align-self: flex-start;
  }

  .hero-rating {
    width: 100%;
  }

  .hero-visual {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .hero-photo {
    border-radius: 22px 22px 64px 22px;
  }

  .experience-card {
    top: 24px;
    left: -20px;
    width: 128px;
    min-height: 108px;
    padding: 16px;
  }

  .experience-card strong {
    font-size: 1.25rem;
  }

  .photo-caption {
    right: 22px;
    bottom: 24px;
  }

  .proof-strip strong {
    font-size: 0.8rem;
  }

  .proof-strip span {
    font-size: 0.64rem;
    line-height: 1.35;
  }

  .section,
  .impact-section,
  .quote-section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .review-card:last-child {
    grid-column: auto;
  }

  .service-card:last-child {
    display: block;
  }

  .service-card:last-child .service-photo {
    height: auto;
    aspect-ratio: 3 / 4;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-content {
    min-height: 270px;
  }

  .impact-photo,
  .final-photo {
    width: calc(100% - 20px);
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid span {
    min-height: 52px;
  }

  .quote-box {
    padding: 26px 20px;
  }

  .review-card {
    min-height: 245px;
  }

  .final-cta {
    padding-top: 74px;
  }

  .phone-link {
    display: flex;
    width: max-content;
    margin: 20px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .promo-ticker-track {
    animation: none;
  }
}

/* ==========================================================
   V5 — SISTEMA VISUAL HÍBRIDO CLARO / PREMIUM
   O verde fica reservado para ações de WhatsApp.
   ========================================================== */

:root {
  --paper: #f7f5ef;
  --paper-soft: #efebe1;
  --surface: #ffffff;
  --ink: #171814;
  --ink-soft: #55584f;
  --line-light: rgba(23, 24, 20, 0.12);
  --green: #20ad5b;
  --green-dark: #168847;
  --green-soft: #e7f7ed;
  --shadow-soft: 0 20px 60px rgba(30, 27, 18, 0.09);
}

body {
  color: var(--ink);
  background: var(--paper);
}

.eyebrow {
  color: var(--gold-deep);
}

h1 span,
h2 span {
  color: var(--gold-deep);
}

.button-primary,
.button-dark,
.button-header {
  border-color: var(--green);
  color: #ffffff;
  background: linear-gradient(135deg, #25bc66, var(--green));
  box-shadow: 0 14px 34px rgba(32, 173, 91, 0.24);
}

.button-primary:hover,
.button-dark:hover,
.button-header:hover {
  border-color: var(--green-dark);
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 42px rgba(32, 173, 91, 0.32);
}

.inline-link,
.card-link {
  color: var(--green-dark);
}

/* Cabeçalho branco */
.site-header {
  border-color: rgba(23, 24, 20, 0.07);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 36px rgba(27, 24, 16, 0.07);
}

.brand strong {
  color: var(--ink);
}

.site-header nav a {
  color: #4d5048;
}

.site-header nav a:hover {
  color: var(--gold-deep);
}

.button-header {
  min-height: 46px;
  padding-inline: 22px;
}

.menu-toggle {
  border-color: var(--line-light);
  background: #ffffff;
}

.menu-toggle span {
  background: var(--ink);
}

/* Primeira dobra clara */
.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 24%, rgba(229, 173, 59, 0.16), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero::after {
  border-left-color: rgba(168, 114, 24, 0.11);
  background:
    linear-gradient(rgba(168, 114, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 114, 24, 0.045) 1px, transparent 1px);
}

.hero-lead {
  color: #55584f;
}

.hero-lead strong {
  color: var(--ink);
}

.cta-note {
  color: #777a72;
}

.hero-rating {
  border-color: var(--line-light);
}

.rating-score {
  color: var(--ink);
}

.hero-rating p {
  color: #666960;
}

.hero-photo {
  border-color: rgba(168, 114, 24, 0.3);
  box-shadow: 0 32px 90px rgba(44, 39, 25, 0.18);
}

.experience-card {
  border: 6px solid #ffffff;
  color: var(--ink);
  background: linear-gradient(145deg, #f8d77e, var(--gold));
  box-shadow: 0 24px 55px rgba(64, 49, 16, 0.25);
}

.photo-caption strong {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.proof-strip {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.54);
}

.proof-strip div {
  border-color: var(--line-light);
}

.proof-strip strong {
  color: var(--ink);
}

.proof-strip span {
  color: #696c64;
}

/* Avaliações imediatamente após a primeira dobra */
.reviews-first {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(229, 173, 59, 0.06), transparent 38%),
    #ffffff;
}

.reviews-first::before {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(168, 114, 24, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 35px rgba(168, 114, 24, 0.035),
    0 0 0 70px rgba(168, 114, 24, 0.025);
}

.reviews-intro {
  position: relative;
  display: grid;
  align-items: end;
  margin-bottom: 36px;
  grid-template-columns: 1fr 370px;
  gap: 64px;
}

.reviews-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.reviews-rating-premium {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 208px;
  align-content: center;
  border: 1px solid rgba(229, 173, 59, 0.32);
  border-radius: 24px;
  padding: 28px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 198, 90, 0.18), transparent 40%),
    var(--black);
  box-shadow: 0 24px 64px rgba(23, 24, 20, 0.18);
}

.reviews-rating-premium::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(244, 198, 90, 0.2);
  border-radius: 50%;
  content: "";
}

.rating-label {
  color: #a8a69f;
  font-family: var(--font-display);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.rating-main {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 10px 0 18px;
}

.rating-main > strong {
  font-family: var(--font-display);
  font-size: 3.75rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.rating-main > div {
  display: grid;
  gap: 7px;
}

.rating-main small {
  color: #aaa79f;
}

.reviews-rating-premium > a {
  position: relative;
  z-index: 1;
  width: max-content;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.review-highlights {
  display: grid;
  margin-bottom: 24px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper);
  grid-template-columns: repeat(4, 1fr);
}

.review-highlights span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-light);
  padding: 14px;
  color: #595c54;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.review-highlights span:last-child {
  border-right: 0;
}

.premium-review-grid {
  gap: 20px;
}

/* Bolinhas do carrossel de avaliações. Ficam escondidas no desktop
   (onde os três cards aparecem juntos) e só surgem no celular, onde o
   carrossel desliza. As bolinhas são criadas pelo script.js. */
.review-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.review-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(23, 24, 20, 0.2);
  cursor: pointer;
  transition:
    width 160ms ease,
    background 160ms ease;
}

.review-dots span.is-active {
  width: 20px;
  border-radius: 99px;
  background: var(--gold-deep);
}

.reviews-first .review-card {
  position: relative;
  min-height: 318px;
  border: 1px solid var(--line-light);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(33, 29, 19, 0.07);
}

.reviews-first .review-card::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.reviews-first .review-card-featured {
  border-color: rgba(168, 114, 24, 0.34);
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(43, 35, 16, 0.13);
}

.review-card-top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.review-source {
  color: #999b94 !important;
  font-family: var(--font-display);
  font-size: 0.56rem !important;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.reviews-first .review-card > p {
  color: #33352f;
  font-size: 1.02rem;
}

.review-author {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
}

.review-initial {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(168, 114, 24, 0.25);
  border-radius: 50%;
  color: var(--gold-deep) !important;
  background: #faf5e8;
  font-family: var(--font-display);
  font-size: 0.72rem !important;
  font-weight: 800;
}

.review-author > div {
  display: grid;
  gap: 3px;
}

.reviews-first .review-card strong {
  color: var(--ink);
}

.reviews-first .review-card .review-author div span {
  color: #85877f;
}

.reviews-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  gap: 30px;
}

.reviews-bottom p {
  max-width: 550px;
  margin-bottom: 0;
  color: #62655d;
  font-size: 0.85rem;
  line-height: 1.6;
}

.reviews-bottom p strong {
  color: var(--ink);
}

/* Serviços em cartões brancos */
.services {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(229, 173, 59, 0.045), transparent 24%),
    var(--paper);
}

.section-heading-split > p {
  color: #666960;
}

.service-card {
  border-color: rgba(23, 24, 20, 0.1);
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  border-color: rgba(168, 114, 24, 0.35);
  box-shadow: 0 26px 70px rgba(33, 29, 19, 0.13);
}

.service-photo {
  border-color: var(--line-light);
}

.service-content p,
.coverage-note p {
  color: #666960;
}

.service-index {
  color: rgba(168, 114, 24, 0.56);
}

.coverage-note {
  border-color: var(--line-light);
}

.coverage-note > span {
  color: var(--gold-deep);
}

/* Contraste escuro refinado */
.impact-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 28%, rgba(229, 173, 59, 0.1), transparent 24%),
    var(--black);
}

.impact-section .eyebrow {
  color: var(--gold-bright);
}

.impact-copy h2 span {
  color: var(--gold-bright);
}

.impact-lead,
.reason-list p {
  color: #aaa79f;
}

.impact-lead strong,
.reason-list h3 {
  color: var(--white);
}

.reason-list article,
.reason-list article:last-child {
  border-color: rgba(255, 255, 255, 0.13);
}

.reason-list article > span {
  color: var(--gold-bright);
}

/* Formulário claro */
.quote-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 36%, rgba(229, 173, 59, 0.1), transparent 22%),
    #f4f1e9;
}

.quote-intro p:not(.eyebrow) {
  color: #64675f;
}

.quote-intro .response-note {
  border-color: var(--gold);
  color: #4f524b;
}

.quote-box {
  border-color: rgba(23, 24, 20, 0.11);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.quote-box legend,
.select-label > span {
  color: var(--ink);
}

.choice-grid span {
  border-color: var(--line-light);
  color: #5d6058;
  background: #faf9f6;
}

.choice-grid input:checked + span {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px var(--green);
}

.choice-grid input:focus-visible + span {
  outline-color: var(--green);
}

.select-label select {
  border-color: var(--line-light);
  color: var(--ink);
  background: #faf9f6;
}

.select-label select:focus {
  border-color: var(--green);
}

.quote-preview {
  border-color: var(--green);
  color: #666960;
}

/* Processo escuro para ritmo visual */
.process-section {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(229, 173, 59, 0.12), transparent 38%),
    #171814;
}

.process-section .eyebrow,
.process-section h2 span,
.process-grid article > span {
  color: var(--gold-bright);
}

.process-grid,
.process-grid article {
  border-color: rgba(255, 255, 255, 0.14);
}

.process-grid p {
  color: #a8aaa3;
}

/* FAQ clara */
.faq-section {
  color: var(--ink);
  background: #ffffff;
}

.faq-title > p:not(.eyebrow) {
  color: #6a6d65;
}

.faq-list,
.faq-list details {
  border-color: var(--line-light);
}

.faq-list summary {
  color: var(--ink);
}

.faq-list details p {
  color: #666960;
}

.faq-list summary::before,
.faq-list summary::after {
  background: var(--gold-deep);
}

.final-cta .button-primary {
  min-width: 270px;
}

.final-cta {
  color: var(--white);
}

.phone-link {
  color: #ffffff;
}

footer .brand strong {
  color: var(--white);
}

.floating-cta {
  background: linear-gradient(135deg, #25bc66, var(--green-dark));
  box-shadow: 0 18px 44px rgba(20, 118, 62, 0.35);
}

@media (max-width: 820px) {
  .site-header nav {
    background: rgba(255, 255, 255, 0.99);
  }

  .site-header nav a {
    border-color: var(--line-light);
    color: var(--ink);
  }

  .reviews-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reviews-rating-premium {
    max-width: 480px;
  }

  .review-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-highlights span:nth-child(2) {
    border-right: 0;
  }

  .review-highlights span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .reviews-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .reviews-first {
    padding-top: 78px;
  }

  .reviews-rating-premium {
    min-height: 190px;
    padding: 24px;
  }

  .rating-main > strong {
    font-size: 3.2rem;
  }

  .review-highlights {
    grid-template-columns: 1fr;
  }

  .review-highlights span,
  .review-highlights span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .review-highlights span:last-child {
    border-bottom: 0;
  }

  .reviews-first .review-card-featured {
    transform: none;
  }

  .reviews-bottom .button {
    width: 100%;
  }
}

/* =========================================================
   ADIÇÕES — telefone no topo, faixa de CTA, avaliações
   detalhadas, cartão de serviço sem foto e voltar ao topo.
   ========================================================= */

/* ---------- Telefone no cabeçalho ---------- */

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: block;
  text-align: right;
  line-height: 1.15;
}

.header-phone small {
  display: block;
  margin-bottom: 3px;
  color: #8f8d86;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.header-phone strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-phone:hover strong {
  color: var(--gold-bright);
}

/* ---------- Faixa de CTA ---------- */

.cta-band {
  position: relative;
  padding: 56px 0;
  background: linear-gradient(100deg, #1a1305 0%, var(--black) 62%);
  border-block: 1px solid rgba(229, 173, 59, 0.22);
  color: var(--cream);
}

.cta-band-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 40px;
}

.cta-band h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta-band h3 span {
  color: var(--gold-bright);
}

.cta-band-lead {
  max-width: 560px;
  margin: 0;
  color: #b6b3ab;
  font-size: 0.95rem;
  line-height: 1.65;
}

.cta-band-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.cta-band-phone {
  color: #b6b3ab;
  font-size: 0.85rem;
}

.cta-band-phone:hover {
  color: var(--gold-bright);
}

/* ---------- Avaliações detalhadas ---------- */

.rating-breakdown {
  display: grid;
  gap: 7px;
  width: 100%;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.rating-breakdown li {
  display: grid;
  align-items: center;
  grid-template-columns: 34px 1fr 26px;
  gap: 10px;
}

.bd-label {
  color: #b6b3ab;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}

.bd-label i {
  margin-left: 2px;
  color: var(--gold);
  font-style: normal;
}

.bd-track {
  overflow: hidden;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.bd-track i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
}

.bd-value {
  color: #b6b3ab;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.rating-note {
  margin: 0 0 20px;
  color: #b6b3ab;
  font-size: 0.8rem;
  line-height: 1.6;
}

.rating-note strong {
  display: block;
  color: var(--white);
}

.reviews-rating-premium > .button {
  width: 100%;
}

/* ---------- Cartão de serviço sem foto ---------- */

.service-card-plain .service-plain-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(160deg, #17180f, #0b0c0a),
    radial-gradient(circle at 80% 20%, rgba(229, 173, 59, 0.16), transparent 60%);
}

.service-plain-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 13px;
  border: 1px solid rgba(229, 173, 59, 0.4);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-plain-list li {
  position: relative;
  padding-left: 20px;
  color: var(--cream);
  font-size: 0.95rem;
}

.service-plain-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--gold);
}

/* ---------- Voltar ao topo ---------- */

.to-top {
  position: fixed;
  z-index: 96;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(229, 173, 59, 0.4);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 240ms,
    background 180ms ease,
    color 180ms ease;
}

.to-top svg {
  width: 20px;
  height: 20px;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--gold);
  color: #171106;
}

/* ---------- Campo de bairro ---------- */

.select-label input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(20, 18, 12, 0.16);
  border-radius: 14px;
  background: #fff;
  color: #14120c;
  font-size: 0.95rem;
}

.select-label input[type="text"]:focus {
  border-color: var(--gold-deep);
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 173, 59, 0.2);
}

/* ---------- Contato no rodapé ---------- */

.footer-contact a {
  color: var(--gold-bright);
}

/* ---------- Responsivo das adições ---------- */

@media (max-width: 1180px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 820px) {
  .cta-band {
    padding: 42px 0;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta-band-actions {
    justify-items: stretch;
  }

  .cta-band-actions .button {
    width: 100%;
  }

  .cta-band-phone {
    text-align: center;
  }

  .service-card-plain .service-plain-top {
    min-height: 190px;
    padding: 24px;
  }

  .to-top {
    right: 18px;
    bottom: 90px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .rating-breakdown {
    margin: 18px 0 14px;
  }
}

/* =========================================================
   CELULAR — menos rolagem e alvos de toque maiores.
   ========================================================= */

/* Links de texto ganham área de toque em qualquer tela */
.inline-link,
.card-link,
.phone-link,
.cta-band-phone {
  padding-block: 9px;
}

@media (max-width: 820px) {
  /* Cartões de serviço viram lista horizontal: foto à esquerda,
     texto à direita. Corta bastante rolagem sem perder a foto. */
  .service-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: stretch;
  }

  .service-card .service-photo,
  .service-card-plain .service-plain-top {
    height: 100%;
    min-height: 100%;
    margin: 0;
  }

  .service-card-plain .service-plain-top {
    padding: 18px 16px;
  }

  .service-plain-tag {
    margin-bottom: 12px;
    padding: 5px 10px;
    font-size: 0.52rem;
  }

  .service-plain-list li {
    padding-left: 14px;
    font-size: 0.8rem;
  }

  .service-content {
    padding: 20px 18px;
  }

  .service-content h3 {
    font-size: 1.12rem;
  }

  .service-content p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* o link vira botão, para dar área de toque no dedo */
  .service-content .card-link {
    display: block;
    margin-top: auto;
    padding: 11px 8px;
    border: 1px solid rgba(229, 173, 59, 0.4);
    border-radius: 999px;
    font-size: 0.66rem;
    text-align: center;
  }

  .service-content .card-link::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .service-card {
    grid-template-columns: 38% 1fr;
  }

  .service-content {
    padding: 16px 14px;
  }

  .service-content h3 {
    margin-bottom: 6px;
    font-size: 1.02rem;
  }

  .service-content p {
    margin-bottom: 12px;
    font-size: 0.8rem;
  }

  .service-index {
    font-size: 0.68rem;
  }

  /* Avaliações no celular: carrossel deslizante.
     No desktop os três cards ficam lado a lado numa grade. No celular
     eles viram um trilho que desliza com o dedo (scroll-snap), mostrando
     um card por vez com uma "espiada" do próximo — o que deixa claro que
     dá para arrastar. As bolinhas embaixo indicam a posição. */
  .premium-review-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .premium-review-grid::-webkit-scrollbar {
    display: none;
  }

  .reviews-first .review-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
    min-height: 0;
    padding: 20px 20px 18px;
    border-radius: 18px;
  }

  .reviews-first .review-card-featured {
    transform: none;
  }

  .reviews-first .review-card::before {
    left: 20px;
    width: 34px;
  }

  .review-card p,
  .reviews-first .review-card > p {
    margin: 12px 0 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .review-author {
    gap: 10px !important;
  }

  .review-dots {
    display: flex;
  }

  .reviews-rating-premium {
    padding: 24px 20px;
  }

  .rating-note {
    margin-bottom: 16px;
    font-size: 0.76rem;
  }

  /* Passos e dúvidas mais justos */
  .process-grid article {
    padding: 24px 20px;
  }

  .faq-list summary {
    padding-block: 18px;
  }
}

/* =========================================================
   AJUSTE AO TEMA CLARO
   O bloco "Cabeçalho branco" acima inverte o tema do site.
   Estas regras alinham as adições a ele.
   ========================================================= */

.header-phone small {
  color: #7c8078;
}

.header-phone strong {
  color: var(--ink);
}

.header-phone:hover strong {
  color: var(--gold-deep);
}

.footer-contact a {
  color: var(--gold-bright);
}

/* a seta fica escura para contrastar com o miolo claro */
.to-top {
  border-color: rgba(23, 24, 20, 0.14);
  background: var(--ink, #14120c);
  color: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(27, 24, 16, 0.22);
}

.to-top:hover {
  background: var(--gold);
  color: #171106;
}

.header-phone small {
  color: #6b6f66;
}

/* A foto do hero tem a marca d'água dourada da JM no canto direito.
   A legenda vai para a esquerda e ganha um véu escuro atrás, senão
   o texto branco se perde em cima da marca e da parte clara da rede. */
.hero-photo::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgba(6, 7, 6, 0.82));
  pointer-events: none;
}

.photo-caption {
  right: auto;
  left: 30px;
  max-width: 55%;
  text-align: left;
}

.photo-caption strong {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* área de toque mínima nos links de texto do celular */
@media (max-width: 820px) {
  .inline-link,
  .card-link,
  .phone-link,
  .cta-band-phone {
    padding-block: 12px;
  }
}

@media (max-width: 820px) {
  .card-link {
    padding-block: 14px;
  }
}

/* A seta fica acima do botão flutuante do WhatsApp, em qualquer tela.
   O botão fica em right:22 / bottom:22 e tem 52px de altura. */
.to-top {
  right: 22px;
  bottom: 86px;
}

@media (max-width: 820px) {
  .to-top {
    right: 18px;
    bottom: 84px;
  }
}

/* =========================================================
   O QUE OS CLIENTES MAIS CITAM
   Faixa única: rótulo à esquerda, etiquetas em linha à direita.
   Classe própria para não herdar o grid de .review-highlights.
   ========================================================= */


/* =========================================================
   ÂNCORAS DO MENU
   O cabeçalho é fixo e tem ~93px. Sem isto, clicar em
   "Serviços" ou "Avaliações" para a seção embaixo dele e o
   título da seção fica escondido.
   ========================================================= */

html {
  scroll-padding-top: 150px;
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 118px;
  }
}

/* =========================================================
   GALERIA DE FOTOS COM SETAS
   Cada campo de imagem vira uma galeria. Com uma foto só as
   setas ficam escondidas; a partir da segunda elas aparecem.
   ========================================================= */

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  transform: scale(var(--image-zoom, 1));
}

.gallery-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(8, 9, 8, 0.62);
  color: #fff;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
}

.gallery-nav:hover {
  border-color: var(--gold-bright);
  background: rgba(8, 9, 8, 0.85);
  color: var(--gold-bright);
}

.gallery-nav[disabled] {
  opacity: 0.32;
  cursor: default;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

/* só aparecem quando há mais de uma foto (classe posta pelo script) */
.image-slot.has-gallery .gallery-nav {
  display: flex;
}

.gallery-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 14px;
  left: 0;
  display: none;
  justify-content: center;
  gap: 7px;
}

.image-slot.has-gallery .gallery-dots {
  display: flex;
}

.gallery-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition:
    background 160ms ease,
    width 160ms ease;
}

.gallery-dots span.is-active {
  width: 20px;
  border-radius: 99px;
  background: var(--gold-bright);
}

/* o zoom no hover não se aplica mais à galeria */
.image-slot:hover .gallery-track img {
  transform: scale(var(--image-zoom, 1));
}

@media (max-width: 560px) {
  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-prev {
    left: 8px;
  }

  .gallery-next {
    right: 8px;
  }
}

/* =========================================================
   ESTRELAS AMARELAS E FOTO DO AVALIADOR
   ========================================================= */

.stars,
.review-stars,
.rating-main .stars,
.hero-rating .stars {
  color: #fbbc04;
}

.bd-label i {
  color: #fbbc04;
}

.bd-track i {
  background: linear-gradient(90deg, #fdd45c, #fbbc04);
}

.review-avatar {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 24, 20, 0.1);
  border-radius: 50%;
  background: rgba(229, 173, 59, 0.16);
}

.review-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar b {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
}

/* =========================================================
   LOGO SEM O FUNDO QUADRADO
   ========================================================= */

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

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

/* A regra ".review-card div span" mais acima é mais específica e estava
   deixando as estrelas do cartão cinzas. Este seletor tem precedência. */
.review-card .review-stars,
.review-card-top .review-stars {
  color: #fbbc04;
  font-size: 0.85rem;
}

/* =========================================================
   MENU DO CELULAR
   O nav aberto é fixed com z-index 99 e estava cobrindo o
   próprio botão de fechar (e o botão de WhatsApp do topo).
   Estes dois ficam acima dele.
   ========================================================= */

.menu-toggle,
.header-actions {
  position: relative;
  z-index: 101;
}

/* =========================================================
   CORREÇÕES DO CELULAR
   Três problemas que apareceram no aparelho de verdade:
   1. O cabeçalho tinha 4 filhos num grid de 3 colunas e
      quebrava em duas linhas (o botão do menu caía embaixo).
   2. A foto do cartão de serviço tem aspect-ratio 3/4 e ficava
      mais larga que a coluna, invadindo o texto.
   3. O menu aberto tinha altura fixa pequena e começava antes
      do cabeçalho terminar.
   ========================================================= */

@media (max-width: 1180px) {
  /* 1. cabeçalho numa linha só, com a marca centralizada */
  .header-inner {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .header-inner .brand {
    justify-content: center;
  }

  .header-actions {
    position: absolute;
    right: 58px;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 820px) {
  /* 2. a foto para de esticar além da coluna do cartão */
  .service-card .service-photo {
    aspect-ratio: auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .service-card .gallery-track,
  .service-card .gallery-track img {
    max-width: 100%;
  }

  .service-content {
    min-width: 0;
  }
}

/* =========================================================
   MENU DO CELULAR — altura explícita
   O nav é fixed com top:76 e bottom:0, mas a altura calculada
   estava travando em 92px (só os paddings) e os links vazavam
   por cima da página, sem fundo atrás. Aqui a altura é dada
   de forma explícita. O 100dvh acompanha a barra do navegador
   do celular, que aparece e some conforme a rolagem.
   ========================================================= */

@media (max-width: 1180px) {
  .site-header nav {
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    padding: 22px 24px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header nav a {
    padding: 17px 0;
  }
}

/* =========================================================
   CARTÃO DE SERVIÇO NO CELULAR
   A foto é que define a altura quando a imagem é muito
   vertical (o varal tem 904x2450). Aqui ela passa a
   acompanhar a altura do texto, como os outros cartões.
   ========================================================= */

@media (max-width: 820px) {
  .service-card {
    align-items: stretch;
  }

  .service-card .service-photo {
    height: 100%;
    min-height: 100%;
    max-height: none;
  }

  .service-card .gallery-track {
    height: 100%;
  }

  .service-card .gallery-track img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
}

/* A V5 dava tratamento especial ao último cartão de serviço
   (display:block e foto em 3/4). Como agora todos os três têm
   foto e viram lista horizontal no celular, o último segue a
   mesma regra dos outros. */
@media (max-width: 820px) {
  .service-card:last-child {
    display: grid;
    grid-template-columns: 40% 1fr;
  }

  .service-card:last-child .service-photo {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .service-card:last-child {
    grid-template-columns: 38% 1fr;
  }
}

/* =========================================================
   MENU DO CELULAR — fundo sólido e atalhos de contato
   O fundo estava em 99% de opacidade e deixava a página
   aparecer levemente por trás do menu.
   ========================================================= */

@media (max-width: 1180px) {
  .site-header nav {
    background: #ffffff;
  }
}

/* o bloco de contato só existe dentro do menu do celular */
.nav-contato {
  display: none;
}

@media (max-width: 1180px) {
  .nav-contato {
    display: grid;
    justify-items: stretch;
    gap: 12px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
  }

  .nav-contato .button {
    width: 100%;
  }

  .nav-contato-tel {
    padding-block: 10px;
    color: #5c6058;
    font-size: 0.9rem;
    text-align: center;
  }
}

/* ajustes finos do menu do celular */
@media (max-width: 1180px) {
  .site-header nav {
    justify-content: stretch;
  }

  .site-header nav a {
    width: 100%;
  }

  .nav-contato .button {
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  /* as barrinhas de 1px somem em tela de alta densidade */
  .menu-toggle span {
    height: 2px;
    border-radius: 2px;
  }
}

/* No celular a foto do cartão fica estreita (cerca de 137px).
   Setas de 42px cobriam quase um terço da imagem. */
@media (max-width: 820px) {
  .service-card .gallery-nav {
    width: 30px;
    height: 30px;
  }

  .service-card .gallery-nav svg {
    width: 15px;
    height: 15px;
  }

  .service-card .gallery-prev {
    left: 5px;
  }

  .service-card .gallery-next {
    right: 5px;
  }

  .service-card .gallery-dots {
    bottom: 9px;
    gap: 5px;
  }

  .service-card .gallery-dots span {
    width: 5px;
    height: 5px;
  }

  .service-card .gallery-dots span.is-active {
    width: 14px;
  }
}

/* O texto do cartão tinha min-height de 270/295px, herdado do
   layout de 3 colunas do computador. Na lista horizontal do
   celular isso deixava sobra vazia — e o último cartão ficava
   100px mais alto que os outros. */
@media (max-width: 820px) {
  .service-content,
  .service-card:last-child .service-content {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .service-content p {
    flex: 1;
  }
}

/* A foto do varal é bem vertical (904x2450) e, na lista do
   celular, era ela que definia a altura do cartão — deixando
   o terceiro 150px mais alto que os outros. Posicionando a
   galeria de forma absoluta, quem manda na altura é o texto. */
@media (max-width: 820px) {
  .service-card .service-photo {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .service-card .gallery-track {
    position: absolute;
    inset: 0;
    height: auto;
  }
}

/* O .menu-toggle virou flex para centralizar dentro do cabeçalho,
   mas isso jogou as três barrinhas lado a lado, com largura zero.
   Em coluna elas voltam a aparecer. */
@media (max-width: 1180px) {
  .menu-toggle {
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0;
  }
}

/* =========================================================
   ASSINATURA DA ALTINOVA NO RODAPÉ
   Fica embaixo de tudo, discreta, no canto direito — como as
   agências costumam assinar. A marca é tipográfica, igual ao
   site da Altinova: ALTI + NOVA em dourado + COMERCIAL.
   Não usa imagem de outro domínio, então não pesa e não
   quebra se o site da Altinova sair do ar.
   ========================================================= */

.footer-signature {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.signature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  opacity: 0.65;
  transition: opacity 180ms ease;
}

.signature-link:hover {
  opacity: 1;
}

.signature-label {
  color: #7b7871;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.signature-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #d8d4cc;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.signature-brand em {
  color: var(--gold-bright);
  font-style: normal;
}

.signature-brand b {
  color: #8d8a84;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

@media (max-width: 820px) {
  .footer-signature {
    justify-content: center;
    margin-top: 22px;
  }

  .signature-link {
    padding-block: 10px;
  }
}

/* O botão flutuante do WhatsApp fica fixo no canto inferior direito
   e cobria a assinatura quando a pessoa chega ao fim da página.
   O espaço abaixo do rodapé deixa a assinatura livre. */
footer {
  padding-bottom: 96px;
}

@media (max-width: 820px) {
  footer {
    padding-bottom: 118px;
  }
}

/* ALTINOVA é uma palavra só, com NOVA em destaque —
   igual à marca no site da Altinova. */
.signature-brand {
  gap: 0;
}

.signature-brand b {
  margin-left: 7px;
}

/* A seta de voltar ao topo fica na coluna da direita (48px + 22px
   de margem). A assinatura recua para não encostar nela. */
.footer-signature {
  padding-right: 84px;
}

@media (max-width: 820px) {
  .footer-signature {
    padding-right: 0;
  }
}

/* =========================================================
   ASSINATURA CENTRALIZADA E MAIS ENXUTA
   Centralizada não briga com os botões flutuantes do canto,
   então o recuo de 84px e o espaço extra embaixo saem.
   ========================================================= */

.footer-signature {
  justify-content: center;
  margin-top: 20px;
  padding-top: 16px;
  padding-right: 0;
}

footer {
  padding-bottom: 34px;
}

@media (max-width: 820px) {
  footer {
    /* espaço só para o botão flutuante do WhatsApp */
    padding-bottom: 96px;
  }

  .footer-signature {
    margin-top: 18px;
  }
}

/* =========================================================
   BARRA DE PROVA (abaixo do hero)
   Antes era só texto informativo, com o primeiro item colado
   na borda (padding-left: 0) parecendo cortado.
   Agora o primeiro e o último item são clicáveis: levam ao
   perfil no Google e ao WhatsApp.
   ========================================================= */

.proof-strip {
  gap: 0;
}

.proof-item {
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 20px 26px;
  border-right: 1px solid var(--line-light);
}

/* corrige o desalinhamento: todos com o mesmo respiro */
.proof-strip .proof-item:first-child {
  padding-left: 26px;
}

.proof-strip .proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.proof-desc {
  color: #696c64;
  font-size: 0.78rem;
  line-height: 1.45;
}

.proof-stars {
  margin-bottom: 4px;
  color: #fbbc04;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* os dois itens clicáveis ganham reação ao passar o mouse */
.proof-item-link {
  position: relative;
  transition: background 180ms ease;
}

.proof-item-link::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  content: "→";
  color: var(--gold-deep);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.proof-item-link:hover {
  background: rgba(229, 173, 59, 0.06);
}

.proof-item-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.proof-item-link:hover strong {
  color: var(--gold-deep);
}

/* ---- celular: 2x2 compacto ---- */
@media (max-width: 820px) {
  .proof-item {
    min-height: 0;
    padding: 16px 14px;
  }

  .proof-strip .proof-item:first-child {
    padding-left: 14px;
  }

  .proof-item strong {
    font-size: 0.92rem;
  }

  .proof-desc {
    font-size: 0.72rem;
  }

  /* no toque não existe hover, então a seta fica sempre visível */
  .proof-item-link::after {
    right: 12px;
    bottom: 14px;
    opacity: 0.75;
    transform: none;
  }
}

@media (max-width: 400px) {
  .proof-item {
    padding: 14px 12px;
  }

  .proof-item strong {
    font-size: 0.86rem;
  }
}

/* =========================================================
   NOTAS NO LUGAR DOS TELEFONES REPETIDOS
   O telefone ao lado de um botão que já abre o WhatsApp
   competia com o botão. Ficou só o reforço.
   ========================================================= */

.cta-band-nota {
  color: #b6b3ab;
  font-size: 0.82rem;
}

.final-cta-nota {
  margin: 16px 0 0;
  color: #8d8a84;
  font-size: 0.84rem;
}

/* =========================================================
   RODAPÉ ORGANIZADO EM COLUNAS
   Os contatos estavam soltos embaixo da logo, repetindo
   links e sem hierarquia.
   ========================================================= */

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-sobre {
  grid-column: 1;
  margin: 14px 0 0;
  color: #8d8a84;
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h4 {
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a {
  color: #c6c2ba;
  font-size: 0.85rem;
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

/* botão de WhatsApp dentro do rodapé */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 6px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: filter 160ms ease;
}

.footer-cta svg {
  width: 16px;
  height: 16px;
}

.footer-cta:hover {
  filter: brightness(1.08);
}

.footer-legal {
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #6f6c67;
  font-size: 0.72rem;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }

  .footer-brand,
  .footer-sobre {
    grid-column: 1 / -1;
  }

  .footer-legal {
    margin-top: 24px;
    text-align: center;
  }

  .footer-cta {
    width: 100%;
  }
}

/* A regra ".proof-strip span" (tema claro) é mais específica e estava
   deixando as estrelas e as descrições cinzas. */
.proof-strip .proof-stars {
  color: #d19a1c;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.proof-strip .proof-desc {
  color: #696c64;
  font-size: 0.78rem;
  line-height: 1.45;
}

/* =========================================================
   VÍDEO DENTRO DA GALERIA
   O varal elétrico é mais fácil de entender vendo funcionar
   do que lendo. O vídeo não baixa sozinho (preload="none"):
   só carrega se a pessoa apertar o play.
   ========================================================= */

.gallery-track video {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
  object-fit: cover;
  background: #0d1013;
}

/* selo discreto avisando que aquele slide é um vídeo */
.image-slot:has(.gallery-video) .gallery-track {
  position: relative;
}

.service-photo .gallery-video {
  cursor: pointer;
}

/* =========================================================
   VISUALIZAÇÃO AMPLIADA DAS FOTOS E VÍDEOS DOS SERVIÇOS
   ========================================================= */

.service-photo .gallery-track {
  cursor: zoom-in;
}

.gallery-expand {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(13, 16, 19, 0.82);
  color: #fff;
  cursor: zoom-in;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-expand:hover,
.gallery-expand:focus-visible {
  background: rgba(13, 16, 19, 0.98);
  transform: scale(1.06);
}

.gallery-expand svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.lightbox-open {
  overflow: hidden;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  padding: max(18px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  place-items: center;
  background: rgba(5, 6, 6, 0.94);
  backdrop-filter: blur(8px);
}

.media-lightbox__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1240px, 100%);
  height: min(920px, 100%);
  min-height: 0;
}

.media-lightbox__title {
  align-self: center;
  margin: 0 58px 14px 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.media-lightbox__close,
.media-lightbox__nav {
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(20, 22, 21, 0.88);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.media-lightbox__close:hover,
.media-lightbox__close:focus-visible,
.media-lightbox__nav:hover,
.media-lightbox__nav:focus-visible {
  border-color: var(--gold-bright);
  background: #20231f;
}

.media-lightbox__close {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.media-lightbox__stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  touch-action: pan-y;
}

.media-lightbox__media {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  place-items: center;
}

.media-lightbox__media img,
.media-lightbox__media video {
  position: absolute;
  inset: 0;
  display: block;
  width: calc(100% - 150px);
  max-width: calc(100% - 150px);
  height: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #0d1013;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.media-lightbox__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.media-lightbox__nav[hidden] {
  display: none;
}

.media-lightbox__prev {
  left: 6px;
}

.media-lightbox__next {
  right: 6px;
}

.media-lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding-top: 12px;
  color: #c9c6be;
}

.media-lightbox__caption,
.media-lightbox__counter {
  margin: 0;
  font-size: 0.78rem;
}

.media-lightbox__caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-lightbox__counter {
  flex: 0 0 auto;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 820px) {
  .gallery-expand {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }

  .gallery-expand svg {
    width: 14px;
    height: 14px;
  }

  .media-lightbox {
    padding: max(12px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }

  .media-lightbox__panel {
    height: 100%;
  }

  .media-lightbox__title {
    margin: 0 54px 10px 8px;
    font-size: 0.8rem;
  }

  .media-lightbox__close {
    width: 42px;
    height: 42px;
  }

  .media-lightbox__media img,
  .media-lightbox__media video {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    height: calc(100% - 18px);
    max-height: calc(100% - 18px);
    border-radius: 10px;
  }

  .media-lightbox__nav {
    width: 44px;
    height: 44px;
    background: rgba(13, 16, 19, 0.82);
    font-size: 2rem;
  }

  .media-lightbox__prev {
    left: 12px;
  }

  .media-lightbox__next {
    right: 12px;
  }

  .media-lightbox__meta {
    gap: 10px;
    min-height: 48px;
    padding: 8px 10px 0;
  }

  .media-lightbox__caption {
    max-width: calc(100vw - 100px);
  }
}

/* =========================================================
   ETIQUETAS DENTRO DO CARTÃO DE SERVIÇO
   Usadas em "Varais sob medida" e "Manutenção de varais"
   para listar os tipos sem gastar linha de texto.
   ========================================================= */

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 6px 12px;
  border: 1px solid rgba(23, 24, 20, 0.12);
  border-radius: 999px;
  background: rgba(229, 173, 59, 0.08);
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .service-tags {
    gap: 6px;
    margin-bottom: 14px;
  }

  .service-tags li {
    padding: 5px 10px;
    font-size: 0.68rem;
  }
}

/* =========================================================
   MARCA COMPLETA NO CABEÇALHO
   A arte tem margem transparente ao redor do brasão. O leve
   aumento mostra melhor o escudo e seu acabamento sem recortar.
   ========================================================= */

.site-header .brand {
  gap: 10px;
}

.site-header .brand img {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  object-fit: contain;
  transform: none;
  transform-origin: center;
}

.site-header .brand span {
  min-width: 0;
  gap: 3px;
}

.site-header .brand strong,
.site-header .brand small {
  line-height: 1.08;
  white-space: nowrap;
}

.site-header .brand strong {
  font-size: 1rem;
}

.site-header .brand small {
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 86px;
  }

  .site-header .brand img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 82px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    transform: none;
  }

  .site-header .brand strong {
    font-size: 0.9rem;
  }

  .site-header .brand small {
    font-size: 0.5rem;
    letter-spacing: 0.07em;
  }
}

/* Contorno luminoso exclusivo do CTA fixo do WhatsApp. */
.floating-cta {
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.floating-cta::before {
  position: absolute;
  z-index: -2;
  inset: -180%;
  content: "";
  background: conic-gradient(
    transparent 0 72%,
    rgba(244, 198, 90, 0.18) 77%,
    var(--gold-bright) 82%,
    #ffffff 85%,
    var(--gold) 88%,
    transparent 94%
  );
  animation: floating-cta-orbit 3s linear infinite;
}

.floating-cta::after {
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, #25bc66, var(--green-dark));
}

.floating-cta:hover::after,
.floating-cta:focus-visible::after {
  background: linear-gradient(135deg, var(--green), #11753d);
}

@keyframes floating-cta-orbit {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta::before {
    animation: none;
  }
}

/* ==========================================================
   POP-UP DA CONDIÇÃO DA SEMANA

   O disparo fica no script.js — aqui é só o visual. O bloco usa
   o mesmo contraste escuro das outras faixas do site, para não
   parecer um anúncio de fora colado por cima.
   ========================================================== */

.cupom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 9, 8, 0.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: cupom-fade 0.25s ease both;
}

/* O atributo hidden precisa vencer o display:flex acima,
   senão o pop-up aparece já na entrada da página. */
.cupom-overlay[hidden] {
  display: none;
}

.cupom-card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 38px 32px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 173, 59, 0.28);
  background: linear-gradient(165deg, #17190f 0%, #0d0e0b 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: cupom-subir 0.32s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.cupom-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.cupom-fechar:hover,
.cupom-fechar:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cupom-tag {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cupom-titulo {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(23px, 5.4vw, 29px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
}

.cupom-titulo em {
  font-style: normal;
  color: var(--gold-bright);
}

.cupom-texto {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #cfccc3;
}

.cupom-codigo-linha {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 14px;
  border: 1px dashed rgba(229, 173, 59, 0.5);
  background: rgba(229, 173, 59, 0.07);
}

.cupom-codigo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  /* O código tem 14 caracteres. clamp() segura ele numa linha só
     mesmo em tela de 320 px, sem virar letrinha no desktop. */
  font-size: clamp(15px, 4.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  user-select: all;
  white-space: nowrap;
}

.cupom-copiar {
  flex: 0 0 auto;
  padding: 12px 20px;
  /* Borda transparente já no estado normal: quando ela vira dourada
     no "Copiado", o botão não cresce 2 px e o card não dá um pulo. */
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--gold);
  color: #17190f;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cupom-copiar:hover,
.cupom-copiar:focus-visible {
  background: var(--gold-bright);
}

.cupom-copiar:active {
  transform: scale(0.97);
}

/* Confirmação discreta de propósito. Se este botão ficasse verde,
   ficariam dois blocos verdes colados e o olho perderia meio segundo
   decidindo qual é a ação — o verde tem que ser só do WhatsApp. */
.cupom-copiar[data-copiado] {
  background: transparent;
  border: 1px solid rgba(229, 173, 59, 0.55);
  color: var(--gold-bright);
}

/* A linha do aviso ocupa espaço mesmo vazia, senão o botão verde
   pula para cima na hora que a mensagem aparece. */
.cupom-aviso {
  min-height: 20px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.cupom-botao.cupom-botao {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 22px;
}

.cupom-rodape {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 420px) {
  .cupom-card {
    padding: 34px 22px 26px;
  }

  /* Sem isso "Aproveitar agora no WhatsApp" quebra em duas linhas
     e o botão fica com cara de bloco de texto. */
  .cupom-botao.cupom-botao {
    font-size: 14.5px;
    padding: 15px 14px;
  }

  .cupom-codigo-linha {
    flex-direction: column;
  }

  .cupom-codigo {
    padding: 10px 0;
  }

  .cupom-copiar {
    width: 100%;
  }
}

@keyframes cupom-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes cupom-subir {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cupom-overlay,
  .cupom-card {
    animation: none;
  }
}

/* ==========================================================
   SEÇÃO DE PREÇO

   Miolo claro, como as outras seções do site. O bloco de aviso
   usa o dourado escuro (--gold-deep) porque fica sobre fundo
   claro — o --gold normal não teria contraste aqui.
   ========================================================== */

.price-section {
  background: var(--paper-soft);
}

.price-lead {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(16px, 2.1vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-soft);
}

.price-lead strong {
  color: var(--ink);
}

/* Linha do "a partir de". Só aparece quando o bloco for
   descomentado no index.html, com o valor real preenchido. */
.price-from {
  max-width: 760px;
  margin: 0 0 18px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(168, 114, 24, 0.28);
  background: rgba(229, 173, 59, 0.12);
  font-size: 17px;
  color: var(--ink);
}

.price-from strong {
  color: var(--gold-deep);
}

.price-factors {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-factors li {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  border: 1px solid var(--line-light);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}

.price-factors h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink);
}

.price-factors p {
  margin: 0;
  font-size: 14.6px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.price-warning {
  margin-top: 26px;
  padding: 26px 26px 24px;
  border-radius: 18px;
  border-left: 4px solid var(--gold-deep);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-warning h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}

.price-warning p {
  margin: 0;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.price-warning a {
  color: var(--gold-deep);
  font-weight: 700;
}

.price-cta {
  margin-top: 32px;
}

.price-cta .cta-note {
  margin-top: 12px;
  max-width: 560px;
}

@media (max-width: 700px) {
  /* No celular os quatro cartões empilham e a seção ficava com mais de
     duas telas. Aperta o respiro sem mexer no texto — quem chega pelo
     anúncio de "preço" precisa ler tudo isso. */
  .price-factors {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-factors li {
    padding: 16px 18px 15px;
  }

  .price-num {
    margin-bottom: 6px;
  }

  .price-factors h3 {
    margin-bottom: 5px;
    font-size: 16.5px;
  }

  .price-factors p {
    font-size: 14.2px;
    line-height: 1.5;
  }

  .price-lead {
    margin-bottom: 14px;
  }

  .price-cta .button {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

/* Linha secundária dentro da caixa de preço: o piso vale para tela de
   proteção, e varal/manutenção/estrutura têm preço próprio. Fica em
   bloco separado para não competir com o R$ 490. */
.price-outros {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(168, 114, 24, 0.22);
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* Lista dentro de uma resposta do FAQ. Usada na pergunta de preço, que
   herdou os quatro fatores da antiga seção #preco. */
.faq-lista {
  margin: 12px 0 14px;
  padding-left: 20px;
  list-style: none;
}

.faq-lista li {
  position: relative;
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.faq-lista li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.faq-lista strong {
  color: var(--ink);
}

/* ==========================================================
   AVISO DE COOKIES

   Barra discreta no rodapé da tela. Não cobre o conteúdo:
   um aviso que tapa a página na entrada cai na mesma regra de
   interstício intrusivo que o pop-up do cupom evita.
   ========================================================== */

.cookie-aviso {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 22px;
  background: #14160f;
  border-top: 1px solid rgba(229, 173, 59, 0.3);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
  animation: cookie-subir 0.3s ease both;
}

.cookie-aviso[hidden] {
  display: none;
}

.cookie-texto {
  flex: 1 1 460px;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.55;
  color: #cfccc3;
}

.cookie-texto strong {
  color: var(--white);
}

.cookie-botoes {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-btn {
  min-width: 118px;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-recusar {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
}

.cookie-recusar:hover,
.cookie-recusar:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-aceitar {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #17190f;
}

.cookie-aceitar:hover,
.cookie-aceitar:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* Enquanto o aviso está na tela, o botão flutuante e a seta de
   voltar ao topo sobem para não ficarem atrás dele.

   A altura vem do JavaScript (--altura-cookies), medida de verdade:
   o texto quebra em mais linhas em telas estreitas, então qualquer
   número fixo aqui erraria em alguma largura. */
body.tem-cookie-aviso .floating-cta {
  bottom: calc(var(--altura-cookies, 0px) + 32px);
}

body.tem-cookie-aviso .to-top {
  bottom: calc(var(--altura-cookies, 0px) + 100px);
}

.footer-rever {
  text-align: center;
  margin-top: 10px;
}

.footer-rever-btn {
  border: 0;
  background: transparent;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}

.footer-rever-btn:hover,
.footer-rever-btn:focus-visible {
  color: var(--white);
}

@media (max-width: 700px) {
  .cookie-aviso {
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .cookie-texto {
    flex-basis: 100%;
    font-size: 13.2px;
  }

  .cookie-botoes {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }

  body.tem-cookie-aviso .to-top {
    bottom: calc(var(--altura-cookies, 0px) + 92px);
  }
}

@keyframes cookie-subir {
  from { transform: translateY(100%); }
  to   { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-aviso {
    animation: none;
  }
}
