/* ==========================================================
   STYLE.CSS — Dra. Silvia Neves Estética Avançada
   Rosé Atelier · Londrina/PR
   ========================================================== */


/* ── 1. VARIÁVEIS ─────────────────────────────────────────── */
:root {
  /* Cores */
  --c-bordo:        #5C2E2E;
  --c-bordo-dark:   #4A2424;
  --c-cafe:         #3D2A20;
  --c-grafite:      #2A1F1A;
  --c-dourado:      #A8895C;
  --c-dourado-soft: #C2A77E;
  --c-rose:         #E8D5C8;
  --c-rose-soft:    #D9C9BC;
  --c-nude:         #F4ECE4;
  --c-off-white:    #FAF6F1;
  --c-text:         #3D2A20;
  --c-text-soft:    #6B5447;
  --c-border:       rgba(168, 137, 92, 0.25);
  --c-whatsapp:     #1FAD52;
  --c-whatsapp-dk:  #168A3F;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Lora', serif;

  /* Sombras */
  --shadow-card:  0 4px 24px rgba(60, 30, 30, 0.08);
  --shadow-hover: 0 8px 36px rgba(60, 30, 30, 0.14);

  /* Geometria */
  --radius-btn:  4px;
  --radius-card: 8px;

  /* Layout */
  --header-h:       80px;
  --container:      1200px;
  --section-py:     96px;
  --section-py-mob: 64px;

  /* Movimento */
  --ease-elegant: cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-off-white);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}


/* ── 3. TIPOGRAFIA ────────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  color: var(--c-grafite);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: clamp(32px, 5vw, 54px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }

.mobile-title-break {
  display: none;
}

h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-grafite);
  margin-bottom: 8px;
}

h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-dourado);
  margin-bottom: 16px;
}

p {
  font-family: var(--font-body);
  color: var(--c-text);
  line-height: 1.75;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-dourado);
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--c-dourado);
  margin: 16px 0 28px;
}


/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-divider {
  margin-left: auto;
  margin-right: auto;
}


/* ── 5. BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 30px;
  border-radius: var(--radius-btn);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.3s var(--ease-elegant),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--c-bordo);
  color: var(--c-off-white);
  border: 1.5px solid var(--c-bordo);
}

.btn-primary:hover {
  background-color: var(--c-bordo-dark);
  border-color: var(--c-bordo-dark);
  box-shadow: var(--shadow-card), inset 0 0 18px rgba(250, 246, 241, 0.12);
  animation: btn-soft-pulse 1.15s var(--ease-elegant) infinite;
}

.btn-ghost {
  background-color: transparent;
  color: var(--c-bordo);
  border: 1.5px solid var(--c-bordo);
}

.btn-ghost:hover {
  background-color: var(--c-bordo);
  color: var(--c-off-white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 14px;
  width: 100%;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--c-whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background-color: var(--c-whatsapp-dk);
}


/* ── 6. HEADER ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--c-off-white);
  border-bottom: 1px solid var(--c-border);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

#header.scrolled {
  background-color: rgba(250, 246, 241, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(60, 30, 30, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.header-logo img {
  height: 50px;
  width: auto;
}

/* Nav desktop */
.nav-desktop ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-cafe);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-dourado);
  transition: width 0.28s ease;
}

.nav-desktop a:hover {
  color: var(--c-bordo);
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--c-cafe);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background-color: var(--c-off-white);
  border-bottom: 1px solid var(--c-border);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(60, 30, 30, 0.1);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-cafe);
  font-weight: 500;
  display: block;
  padding: 4px 0;
}

.nav-mobile a.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-off-white);
}


/* ── 7. HERO ──────────────────────────────────────────────── */
.section-hero {
  background-color: var(--c-off-white);
  padding: calc(var(--header-h) + 48px) 0 var(--section-py);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-inner > *,
.sobre-inner > *,
.contato-inner > *,
.section-header,
.hero-content {
  min-width: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  letter-spacing: 0.22em;
  color: var(--c-dourado);
}

.hero-content .eyebrow::before,
.hero-content .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background-color: var(--c-dourado);
  opacity: 0.82;
}

.hero-content h1 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.7vw, 44px);
  letter-spacing: 0;
}

.hero-text {
  font-size: 17px;
  color: var(--c-text-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin-bottom: 30px;
}

.hero-proof span {
  flex: 1 1 148px;
  min-width: 136px;
  padding: 14px 16px;
  border-left: 1px solid var(--c-dourado);
  background-color: rgba(156, 122, 74, 0.08);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: var(--c-bordo);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-proof small {
  margin-top: 6px;
  color: var(--c-text-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  flex: 0 0 244px;
  min-width: 244px;
  padding-left: 20px;
  padding-right: 20px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hero-btns .btn-ghost {
  border-width: 1.5px;
  border-color: var(--c-bordo);
}

.hero-btns .btn-ghost:hover {
  background-color: var(--c-bordo);
  color: var(--c-off-white);
}

.hero-img-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.55;
  max-height: 500px;
  height: auto;
  background-color: var(--c-rose);
  border-radius: 4px 80px 4px 80px;
  object-fit: cover;
  object-position: center;
  position: relative;
  overflow: hidden;
}


/* ── 8. SOBRE ─────────────────────────────────────────────── */
.section-sobre {
  background-color: var(--c-nude);
  padding: var(--section-py) 0;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-placeholder {
  display: block;
  width: 100%;
  height: clamp(560px, 50vw, 660px);
  background-color: var(--c-rose);
  border-radius: 4px 60px 4px 60px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  overflow: hidden;
}

.sobre-content h2 {
  margin-bottom: 0;
}

.sobre-content > p {
  color: var(--c-text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.selos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--c-border);
}

.selo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 0 22px;
  min-height: 78px;
  border-right: 1px solid rgba(61, 42, 32, 0.18);
}

.selo:first-child {
  padding-left: 0;
}

.selo:last-child {
  padding-right: 0;
  border-right: 0;
}

.selo-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-dourado);
}

.selo-value-rating {
  gap: 10px;
}

.selo-stars {
  display: inline-flex;
  gap: 2px;
}

.selo-stars svg {
  width: 11px;
  height: 11px;
  color: var(--c-dourado);
  fill: currentColor;
}

.selo-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--c-text-soft);
}


/* ── 9. PROCEDIMENTOS ─────────────────────────────────────── */
.section-procedimentos {
  background-color: var(--c-off-white);
  padding: var(--section-py) 0;
}

.section-procedimentos .section-header h2 {
  font-size: clamp(32px, 4.2vw, 48px);
}

.procedimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.proc-card {
  background-color: var(--c-off-white);
  border-radius: var(--radius-card);
  padding: 44px 30px 34px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.proc-card::after {
  content: attr(data-index);
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: rgba(168, 137, 92, 0.22);
  pointer-events: none;
}

.proc-card:hover {
  transform: translateY(-7px);
  border-color: rgba(168, 137, 92, 0.48);
  box-shadow: 0 16px 44px rgba(60, 30, 30, 0.16);
}

.proc-card h3 {
  margin-bottom: 14px;
  padding-right: 54px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.18;
}

.proc-card p {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 30px;
}

.proc-link {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-bordo-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.25s ease;
}

.proc-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-dourado);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.proc-link:hover {
  color: var(--c-dourado);
}

.proc-link:hover::after {
  transform: scaleX(1);
  background-color: var(--c-bordo);
}


/* ── 10. DIFERENCIAIS ─────────────────────────────────────── */
.section-diferenciais {
  background-color: var(--c-nude);
  padding: var(--section-py) 0;
}

.section-diferenciais .section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 46px;
}

.section-diferenciais .section-lead {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--c-text-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.diferencial-item {
  min-height: 214px;
  text-align: left;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(156, 122, 74, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(92, 46, 46, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.dif-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  padding: 11px;
  color: var(--c-dourado);
  margin-bottom: 22px;
  background: linear-gradient(145deg, rgba(156, 122, 74, 0.16), rgba(255, 252, 248, 0.82));
  border: 1px solid rgba(156, 122, 74, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(92, 46, 46, 0.07);
  box-sizing: content-box;
  stroke: currentColor;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-item h3 {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #9C7A4A;
  margin-bottom: 12px;
  text-align: left;
  position: relative;
  transition: color 0.25s ease;
}

.diferencial-item h3::after {
  display: none;
}

.diferencial-item:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 122, 74, 0.36);
  box-shadow: 0 22px 48px rgba(92, 46, 46, 0.09);
}

.diferencial-item:hover .dif-icon {
  transform: scale(1.08);
  color: var(--c-dourado-soft);
  background: linear-gradient(145deg, rgba(92, 46, 46, 0.1), rgba(156, 122, 74, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 14px 26px rgba(92, 46, 46, 0.1);
}

.diferencial-item:hover h3 {
  color: var(--c-dourado);
}

.diferencial-item p {
  font-size: 14px;
  color: var(--c-text-soft);
  text-align: left;
  line-height: 1.68;
}


/* ── 11. RESULTADOS ───────────────────────────────────────── */
.section-resultados {
  background-color: var(--c-off-white);
  padding: var(--section-py) 0;
}

.resultados-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.resultados-marquee::before,
.resultados-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 150px);
  pointer-events: none;
}

.resultados-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-off-white), rgba(255, 252, 248, 0));
}

.resultados-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-off-white), rgba(255, 252, 248, 0));
}

.resultados-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  padding: 8px 22px 4px;
  animation: resultados-marquee 52s linear infinite;
  will-change: transform;
}

.resultados-marquee:hover .resultados-track {
  animation-play-state: paused;
}

.resultado-item {
  flex: 0 0 clamp(220px, 23vw, 330px);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid rgba(168, 137, 92, 0.22);
  box-shadow: 0 12px 34px rgba(92, 46, 46, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.resultado-img {
  display: block;
  width: 100%;
  height: clamp(280px, 31vw, 420px);
  background-color: var(--c-rose);
  border-radius: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.resultado-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 26, 0) 44%, rgba(42, 31, 26, 0.58) 100%);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.resultado-item:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 137, 92, 0.56);
  box-shadow: 0 20px 44px rgba(92, 46, 46, 0.16);
}

.resultado-item:hover .resultado-img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.03);
}

.resultado-item:hover::after {
  opacity: 0.9;
}

.resultado-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 252, 248, 0.28);
  border-radius: 999px;
  background-color: rgba(255, 252, 248, 0.86);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: var(--c-bordo-dark);
  font-style: italic;
  text-align: left;
  letter-spacing: 0.02em;
  transform: translateY(4px);
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.resultado-item:hover .resultado-caption {
  transform: translateY(0);
  background-color: var(--c-off-white);
  color: var(--c-bordo);
}

.resultados-disclaimer {
  margin-top: 42px;
  text-align: center;
  font-size: 17px;
  color: #9C7A4A;
}

.resultados-swipe-hint {
  display: none;
}

@keyframes resultados-marquee {
  from {
    transform: translateX(calc(-50% - 11px));
  }
  to {
    transform: translateX(0);
  }
}


/* ── 12. DEPOIMENTOS ──────────────────────────────────────── */
.section-depoimentos {
  background-color: var(--c-nude);
  padding: var(--section-py) 0;
}

.carousel-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  --carousel-gap: 24px;
  --carousel-visible: 3;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.depo-card {
  background-color: var(--c-off-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 42px 34px 36px;
  /* largura calculada e injetada pelo JS via data-card-width */
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  height: auto;
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.depo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 137, 92, 0.45);
  box-shadow: 0 14px 38px rgba(60, 30, 30, 0.14);
}

.depo-aspas {
  font-family: var(--font-display);
  font-size: 58px;
  color: var(--c-dourado);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.62;
}

.depo-card blockquote p {
  font-style: italic;
  font-size: 15.5px;
  color: var(--c-cafe);
  line-height: 1.9;
  margin-bottom: 32px;
}

.depo-card blockquote {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.depo-card blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.depo-stars {
  color: var(--c-dourado);
  font-size: 13px;
  letter-spacing: 2px;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e8d5c4;
  border: 1px solid rgba(168, 137, 92, 0.35);
  color: var(--c-cafe);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.depo-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-grafite);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background-color: var(--c-off-white);
  font-size: 18px;
  color: var(--c-cafe);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--c-dourado);
  color: var(--c-bordo);
  background-color: var(--c-nude);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-rose-soft);
  border: none;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.dot.active {
  background-color: var(--c-dourado);
  transform: scale(1.4);
}


/* ── 13. CONTATO ──────────────────────────────────────────── */
.section-contato {
  background-color: var(--c-off-white);
  padding: var(--section-py) 0;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contato-mapa {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-card);
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

.contato-info h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.6vw, 46px);
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  margin-top: 4px;
}

.contato-lista li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(168, 137, 92, 0.22);
}

.contato-lista li:first-child {
  padding-top: 0;
}

.contato-lista li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contato-icon {
  width: 20px;
  height: 20px;
  color: var(--c-dourado);
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contato-lista li:hover .contato-icon {
  transform: scale(1.1);
  color: var(--c-dourado-soft);
}

.contato-lista strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-dourado);
  margin-bottom: 3px;
}

.contato-lista p {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.55;
}

.contato-lista a {
  color: var(--c-bordo);
  font-weight: 500;
  transition: color 0.25s ease;
}

.contato-lista a:hover {
  color: var(--c-dourado);
}

.contato-info .btn-primary {
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-elegant), box-shadow 0.25s ease;
}

.contato-info .btn-primary:hover {
  background-color: var(--c-bordo);
  border-color: var(--c-bordo);
  box-shadow: var(--shadow-hover), inset 0 0 18px rgba(250, 246, 241, 0.12);
}

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


/* ── 14. FOOTER ───────────────────────────────────────────── */
#footer {
  position: relative;
  overflow: hidden;
  background-color: var(--c-bordo);
  color: #f5ede6;
}

#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(245, 237, 230, 0.18) 0 1px, transparent 1.2px),
    radial-gradient(circle at 74% 68%, rgba(168, 137, 92, 0.14) 0 1px, transparent 1.3px);
  background-size: 18px 18px, 26px 26px;
}

.footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 196, 145, 0.78) 50%, transparent 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  padding: 76px 24px 58px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand img,
.footer-logo-img {
  width: 400px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 38px);
  color: #f5ede6;
  margin-bottom: 14px;
  line-height: 1.2;
}

.footer-brand-line {
  width: 72px;
  height: 1px;
  margin-bottom: 18px;
  background-color: #e2c491;
  box-shadow: 0 0 14px rgba(226, 196, 145, 0.28);
  opacity: 0.82;
}

.footer-tagline {
  font-size: 11px;
  color: #e2c491;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.9;
}

.footer-col h4 {
  margin-bottom: 24px;
  color: #e2c491;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.footer-contato-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contato-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #f5ede6;
  line-height: 1.65;
  opacity: 0.82;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: #e2c491;
  filter: drop-shadow(0 0 8px rgba(226, 196, 145, 0.18));
  flex: 0 0 18px;
  margin-top: 3px;
}

.footer-contato-col a {
  color: #f5ede6;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.footer-contato-col a:hover {
  color: #f0d8aa;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(226, 196, 145, 0.28);
  padding: 20px 24px 24px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 11px;
  color: #fff7ed;
  opacity: 0.78;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(226, 196, 145, 0.18);
}


/* ── 15. WHATSAPP FLUTUANTE ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--c-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.2s ease;
  animation: pulse-wa 2s ease-in-out infinite;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.whatsapp-float:hover {
  background-color: var(--c-whatsapp-dk);
  animation: none;
  transform: scale(1.07);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15); }
  50%       { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.65), 0 2px 8px rgba(0, 0, 0, 0.15); }
}


/* ── 16. ANIMAÇÕES ────────────────────────────────────────── */
.fade-up,
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease-elegant),
    transform 0.7s var(--ease-elegant);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.fade-up.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right,
.reveal-photo {
  transform: translateX(40px);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-scale {
  transform: scale(0.8);
}

.hero-image.reveal-photo {
  transform: scale(0.97);
}

.section-divider.reveal-line {
  width: 0;
  transition:
    width 0.8s var(--ease-elegant),
    opacity 0.7s var(--ease-elegant);
  transition-delay: var(--reveal-delay, 0s);
}

.section-divider.reveal-line.is-visible {
  width: 60px;
}

.dif-icon,
.contato-icon,
.depo-aspas {
  display: inline-block;
  transform-origin: center;
}

@keyframes btn-soft-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-1px) scale(1.015); }
}


/* ── 17. ACESSIBILIDADE ───────────────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-dourado);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-up,
  .reveal,
  .reveal-right,
  .reveal-left,
  .reveal-scale,
  .reveal-photo {
    opacity: 1;
    transform: none;
  }

  .section-divider.reveal-line {
    width: 60px;
  }
}


/* ── 18. FAQ ──────────────────────────────────────────────── */
.container-narrow {
  max-width: 800px;
}

.section-faq {
  background-color: var(--c-off-white);
  padding: var(--section-py) 0;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 0.5px solid var(--c-border);
  padding: 1.5rem 0;
}

.faq-item:first-of-type {
  border-top: 0.5px solid var(--c-border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-grafite);
  line-height: 1.4;
  transition: color 0.25s ease;
}

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

.faq-item summary:hover {
  color: var(--c-bordo);
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--c-dourado);
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding-top: 1rem;
  animation: faqFadeIn 0.4s ease;
}

.faq-answer p {
  font-size: 16px;
  color: var(--c-cafe);
  line-height: 1.7;
  margin: 0;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 0.5px solid var(--c-border);
}

.faq-cta p {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--c-grafite);
  margin-bottom: 24px;
  line-height: 1.3;
}


/* ==========================================================
   RESPONSIVO
   ========================================================== */

/* ── Tablet (769–1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .procedimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .resultados-track {
    gap: 18px;
    animation-duration: 46s;
  }

  .resultado-item {
    flex-basis: clamp(210px, 34vw, 300px);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .hero-inner {
    gap: 40px;
  }

  .section-depoimentos .section-header {
    margin-bottom: 44px;
  }

  .carousel-track {
    gap: var(--carousel-gap);
  }

  .carousel-wrapper {
    --carousel-gap: 20px;
    --carousel-visible: 2;
  }

  .depo-card {
    padding: 42px 34px 36px;
  }

  .depo-card blockquote p {
    font-size: 15px;
    line-height: 1.85;
  }
}

/* ── Mobile (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-img-placeholder,
  .sobre-img-placeholder,
  .proc-card,
  .diferencial-item,
  .resultado-item,
  .depo-card,
  .contato-mapa {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .hero-content,
  .hero-content h1,
  .hero-text,
  .section-header,
  .section-header h2,
  .section-header .eyebrow,
  .contato-info,
  .contato-info h2,
  .contato-lista,
  .resultados-disclaimer {
    max-width: calc(100vw - 40px);
  }

  h1,
  h2,
  h3,
  p,
  a,
  li {
    overflow-wrap: break-word;
  }

  /* Header */
  .nav-desktop,
  .btn-whatsapp-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .section-hero {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: var(--section-py-mob);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-content {
    display: contents;
  }

  .hero-content .eyebrow {
    order: -2;
    justify-self: center;
    text-align: center;
    margin-bottom: 0;
  }

  .hero-image {
    order: -1;
    margin-top: 2px;
    margin-bottom: 8px;
  }

  .hero-img-placeholder {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: none;
    border-radius: 4px 40px 4px 40px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  .hero-btns .btn {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero-content .eyebrow {
    gap: 10px;
    letter-spacing: 0.18em;
    max-width: 100%;
  }

  .hero-content .eyebrow::before,
  .hero-content .eyebrow::after {
    width: 24px;
    flex: 0 0 24px;
  }

  .hero-content h1 {
    justify-self: center;
    max-width: 100%;
    margin-bottom: 4px;
    font-size: clamp(34px, 9.4vw, 46px);
    text-align: center;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-text {
    justify-self: center;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 8px;
    text-align: center;
  }

  .hero-proof {
    justify-self: center;
    max-width: 360px;
    margin-bottom: 8px;
  }

  .hero-proof span {
    flex-basis: 100%;
    text-align: center;
    border-left: 0;
    border-top: 1px solid var(--c-dourado);
  }

  .hero-proof-registry {
    display: none;
  }

  .section-header h2,
  .contato-info h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  /* Sobre */
  .section-sobre { padding: var(--section-py-mob) 0; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sobre-img-placeholder {
    aspect-ratio: auto;
    height: clamp(440px, 118vw, 620px);
    max-height: none;
    border-radius: 4px 40px 4px 40px;
  }

  .selos {
    margin-top: 34px;
    padding-top: 30px;
  }

  .selo {
    padding: 0 12px;
  }

  .selo-value {
    font-size: 30px;
  }

  .selo-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .selo-stars svg {
    width: 9px;
    height: 9px;
  }

  /* Procedimentos */
  .section-procedimentos { padding: var(--section-py-mob) 0; }
  .procedimentos-grid { display: block; }

  .proc-card {
    grid-column: auto;
    min-height: auto;
    padding: 38px 24px 30px;
    align-items: center;
    text-align: center;
  }

  .proc-card h3 {
    padding-right: 0;
    font-size: 24px;
    text-align: center;
  }

  .proc-card p {
    text-align: center;
  }

  .proc-link {
    align-self: center;
  }

  /* Diferenciais */
  .section-diferenciais { padding: var(--section-py-mob) 0; }

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

  .diferencial-item {
    min-height: auto;
    text-align: left;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dif-icon {
    margin-bottom: 16px;
  }

  .diferencial-item h3,
  .diferencial-item p {
    text-align: left;
  }

  /* Resultados */
  .section-resultados { padding: var(--section-py-mob) 0; }

  .resultados-swipe-hint {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-dourado);
    opacity: 0.85;
    margin-bottom: 14px;
  }

  .resultados-marquee {
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .resultados-marquee::-webkit-scrollbar {
    display: none;
  }

  .resultados-marquee::before,
  .resultados-marquee::after {
    display: none;
  }

  .resultados-track {
    gap: 16px;
    width: max-content;
    padding: 8px 20px 6px;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .resultado-item[aria-hidden="true"] {
    display: none;
  }

  .resultado-item {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: center;
  }

  .resultado-img {
    height: 300px;
  }

  .resultado-caption {
    text-align: center;
  }

  /* Depoimentos */
  .section-depoimentos { padding: var(--section-py-mob) 0; }

  .depo-card {
    padding: 34px 26px 30px;
  }

  .carousel-wrapper {
    --carousel-gap: 16px;
    --carousel-visible: 1;
  }

  .carousel-track { gap: var(--carousel-gap); }

  /* Contato */
  .section-contato { padding: var(--section-py-mob) 0; }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }

  .contato-mapa {
    height: 280px;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contato-info {
    text-align: center;
    justify-self: center;
  }

  .contato-info .eyebrow,
  .contato-info h2 {
    text-align: center;
  }

  .contato-info .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .contato-lista li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .contato-icon {
    margin-top: 0;
  }

  .contato-info .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-img {
    width: 260px;
    margin-bottom: 10px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }

  /* FAQ */
  .section-faq { padding: var(--section-py-mob) 0; }

  .faq-item summary {
    font-size: 16px;
    gap: 1rem;
  }

  .faq-cta p {
    font-size: 20px;
  }
}

/* ── 19. PROC ACCORDION (grupos — mobile) ─────────────────── */

/* Desktop: grupos transparentes ao grid */
@media (min-width: 769px) {
  .proc-group        { display: contents; }
  .proc-group-header { display: none; }
  .proc-group-cards  { display: contents; }
}

/* Mobile: accordion estilo FAQ */
@media (max-width: 768px) {
  .proc-group {
    border-top: 1px solid var(--c-border);
  }

  .proc-group:last-child {
    border-bottom: 1px solid var(--c-border);
  }

  .proc-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: transparent;
    cursor: pointer;
    gap: 12px;
    font-family: var(--font-body);
    transition: color 0.25s ease;
  }

  .proc-group-header:hover .proc-group-label {
    color: var(--c-bordo);
  }

  .proc-group-label {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--c-grafite);
    flex: 1;
    text-align: left;
    line-height: 1.25;
    transition: color 0.25s ease;
  }

  .proc-group-count {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-dourado);
    white-space: nowrap;
  }

  .proc-group-toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .proc-group-toggle::before,
  .proc-group-toggle::after {
    content: '';
    position: absolute;
    background: var(--c-dourado);
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  .proc-group-toggle::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    transform: translateY(-50%);
  }

  .proc-group-toggle::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    transform: translateX(-50%);
  }

  .proc-group-header[aria-expanded="true"] .proc-group-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .proc-group-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 20px;
  }

  .proc-group-cards.is-closed {
    display: none;
  }
}


/* ── Small mobile (≤375px) ────────────────────────────────── */
@media (max-width: 375px) {
  .container { padding: 0 16px; }

  .hero-img-placeholder,
  .sobre-img-placeholder,
  .proc-card,
  .diferencial-item,
  .resultado-item,
  .depo-card,
  .contato-mapa,
  .hero-content,
  .hero-content h1,
  .hero-text,
  .section-header,
  .section-header h2,
  .section-header .eyebrow,
  .contato-info,
  .contato-info h2,
  .contato-lista,
  .resultados-disclaimer {
    max-width: calc(100vw - 32px);
  }

  h1 { font-size: 27px; }
  h2 { font-size: 24px; }

  .resultados-marquee {
    scroll-padding-inline: 16px;
  }

  .resultado-item {
    flex-basis: min(78vw, 238px);
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-content .eyebrow {
    gap: 8px;
    letter-spacing: 0.14em;
    font-size: 10px;
  }

  .hero-content .eyebrow::before,
  .hero-content .eyebrow::after {
    width: 20px;
    flex-basis: 20px;
  }
}
