:root {
  --ink: #2e2a25; /* Grafite Quente mais suave */
  --muted: #6b635f;
  --porcelain: #fffdfa; /* Off-white premium */
  --rose-soft: #f2ece0; /* Bege Champagne Acetinado */
  --rose-strong: #c5a86a; /* Dourado Nobre */
  --sage: #dfe8df;
  --sage-deep: #58705c;
  --wine: #c5a86a; /* Dourado principal */
  --wine-dark: #a88a4e; /* Dourado escuro para hover */
  --gold: #c5a86a;
  --border: #e8dfd5; /* Borda bege suave */
  --white: #ffffff;
  --success: #477a58;
  --error: #b13e44;
  --shadow: 0 28px 80px rgba(168, 138, 78, 0.1);
  --shadow-soft: 0 16px 46px rgba(168, 138, 78, 0.06);
  --shadow-hairline: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
  --radius-card: 8px;
  --radius-media: 18px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 28% 16%, rgba(125, 38, 56, 0.22), transparent 28%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(125, 38, 56, 0.38);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 420ms var(--ease-premium);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 251, 0.84);
  border-bottom: 1px solid rgba(234, 223, 219, 0.74);
  backdrop-filter: blur(18px);
  transition: box-shadow 520ms var(--ease-premium), background 520ms var(--ease-premium), border-color 520ms var(--ease-premium);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 12px 35px rgba(36, 31, 32, 0.08);
}

.header-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.05); /* Pequeno ajuste de contraste para o dourado se destacar */
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.header-cta {
  display: none;
}

.menu-button {
  width: 48px;
  height: 48px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--shadow-hairline);
}

.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 520ms var(--ease-premium), opacity 360ms var(--ease-premium);
}

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

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

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

.mobile-nav {
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: var(--porcelain);
  transition: max-height 520ms var(--ease-premium), border-color 520ms var(--ease-premium);
}

.mobile-nav.is-open {
  max-height: 360px;
  border-color: var(--border);
}

.mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vw, 70px) 0 clamp(44px, 7vw, 96px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 253, 250, 0.95) 0%, rgba(255, 253, 250, 0.88) 40%, rgba(242, 236, 224, 0.80) 100%),
    url('assets/photos/hero-clinic-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(197, 168, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 168, 106, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 74%, transparent);
}

.hero-grid {
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 680px;
}

.mobile-hero-photo {
  display: none;
}

.signature-line,
.kicker {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-label {
  display: inline-flex;
  margin: 0 0 12px;
  border: 1px solid rgba(125, 38, 56, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--wine);
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 850;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 13.4ch;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 4.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5.2vw, 4.1rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.2vw, 1.22rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 520ms var(--ease-premium), background 520ms var(--ease-premium), border-color 520ms var(--ease-premium), color 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium);
}

.btn:hover {
  transform: translateY(-2px) scale(0.992);
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(125, 38, 56, 0.22);
}

.btn-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 18px 42px rgba(125, 38, 56, 0.28);
}

.btn-secondary {
  border-color: rgba(125, 38, 56, 0.28);
  background: rgba(255, 255, 255, 0.68);
  color: var(--wine);
}

.btn-secondary:hover {
  border-color: var(--wine);
  background: var(--white);
}

.btn svg,
.header-cta svg,
.treatment-card svg,
.authority-grid svg,
.differential-list svg,
.form-intro svg,
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.btn-primary svg {
  box-sizing: content-box;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px;
  transition: transform 520ms var(--ease-premium), background 520ms var(--ease-premium);
}

.btn-primary:hover svg {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(3px, -1px) scale(1.04);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.hero-proof div {
  border-top: 1px solid rgba(125, 38, 56, 0.2);
  padding-top: 14px;
}

.hero-proof dt {
  color: var(--wine);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 850;
  line-height: 1;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 310px;
}

.hero-visual picture {
  height: min(68dvh, 630px);
  min-height: 330px;
  border-radius: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(125, 38, 56, 0.1);
  background: rgba(255, 255, 255, 0.54);
  padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-hairline);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(14px, 3vw, 26px);
}

.floating-note {
  position: absolute;
  max-width: min(220px, 70vw);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 800;
}

.answer-summary {
  padding: clamp(26px, 5vw, 52px) 0;
  background:
    linear-gradient(135deg, rgba(223, 232, 223, 0.7), rgba(246, 236, 233, 0.72)),
    var(--porcelain);
}

.answer-panel {
  display: grid;
  gap: clamp(22px, 5vw, 44px);
  align-items: center;
  border: 1px solid rgba(125, 38, 56, 0.13);
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.78);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-soft), var(--shadow-hairline);
}

.answer-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3.8vw, 3rem);
}

.answer-panel p {
  max-width: 78ch;
  margin-bottom: 0;
  color: var(--muted);
}

.answer-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.answer-panel dl div {
  border: 1px solid rgba(125, 38, 56, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.66);
  padding: 12px 14px;
  box-shadow: var(--shadow-hairline);
}

.answer-panel dt {
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 850;
}

.answer-panel dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.floating-note svg {
  color: var(--wine);
}

.note-top {
  top: 18px;
  right: 18px;
}

.note-bottom {
  left: 16px;
  bottom: 18px;
}

.authority-strip {
  background: var(--ink);
  color: var(--white);
  padding: 18px 0;
}

.authority-grid {
  display: grid;
  gap: 10px;
}

.authority-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.authority-grid svg {
  color: var(--rose-strong);
}

.section {
  padding: clamp(60px, 9vw, 116px) 0;
}

.emotional {
  background: var(--white);
}

.journey,
.faq {
  background: var(--rose-soft);
}

.treatments,
.differentials {
  background: var(--porcelain);
}

.results {
  background: linear-gradient(140deg, #241f20 0%, #34262a 56%, #463137 100%);
  color: var(--white);
}

.social-proof,
.lead-form {
  background: var(--white);
}

.two-column,
.results-grid,
.faq-grid,
.form-layout {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.section-copy p,
.section-heading p,
.journey-grid p,
.treatment-card p,
.differential-list p,
.proof-card-grid p,
.faq-panel p,
.form-intro p,
.final-cta-panel p {
  color: var(--muted);
}

.results .section-copy p,
.results .ethics-note {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading h2,
.section-heading p {
  max-width: 760px;
}

.soft-quote {
  margin-top: 28px;
  border: 1px solid rgba(125, 38, 56, 0.13);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(246, 236, 233, 0.98), rgba(255, 255, 255, 0.8));
  padding: 18px;
  color: var(--wine);
  font-weight: 800;
  box-shadow: var(--shadow-hairline);
}

.soft-quote svg {
  display: block;
  margin-bottom: 10px;
}

.concern-list {
  display: grid;
  gap: 12px;
}

.concern-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--porcelain);
  padding: 16px;
  box-shadow: var(--shadow-hairline);
}

.concern-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  font-weight: 850;
}

.concern-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.journey-grid {
  display: grid;
  gap: 14px;
}

.journey-grid article {
  position: relative;
  border: 1px solid rgba(125, 38, 56, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
  box-shadow: var(--shadow-hairline);
}

.journey-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-weight: 850;
}

.treatment-grid {
  display: grid;
  gap: 18px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--white), rgba(255, 253, 251, 0.92));
  overflow: hidden;
  box-shadow: var(--shadow-hairline), 0 1px 0 rgba(36, 31, 32, 0.03);
  transition: transform 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium), border-color 520ms var(--ease-premium);
}

.treatment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 106, 0.36);
  box-shadow: var(--shadow-soft);
}

.treatment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.treatment-card:nth-child(1) img,
.treatment-card:nth-child(2) img,
.treatment-card:nth-child(4) img,
.treatment-card:nth-child(5) img {
  object-position: 84% center; /* Foca na Dra. e no procedimento posicionados à direita */
}

.treatment-card:nth-child(3) img,
.treatment-card:nth-child(6) img,
.treatment-card:nth-child(8) img {
  object-position: center 22%;
}

.treatment-card div {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treatment-card svg {
  width: 26px;
  height: 26px;
  color: var(--wine);
  margin-bottom: 16px;
}

.treatment-card h3 {
  min-height: 2.7em;
}

.treatment-card button {
  min-height: 44px;
  margin-top: 10px;
  border: 1px solid rgba(125, 38, 56, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  padding: 10px 16px;
  font-weight: 800;
  transition: background 420ms var(--ease-premium), color 420ms var(--ease-premium), transform 420ms var(--ease-premium);
}

.treatment-card button:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-1px);
}

.proof-gallery {
  display: grid;
  gap: 16px;
}

.proof-gallery figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.proof-gallery figcaption {
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.ethics-note {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 16px;
}

.proof-card-grid {
  display: grid;
  gap: 16px;
}

.proof-card-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--porcelain);
  padding: 22px;
  box-shadow: var(--shadow-hairline);
}

.proof-card-number {
  display: block;
  color: var(--wine);
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
}

.proof-card-grid h3 {
  min-height: 2.5em;
}

.authority-photo {
  width: min(100%, 440px);
  margin-inline: auto;
}

.authority-photo img {
  width: 100%;
  height: clamp(260px, 64vw, 420px);
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-media);
  border: 1px solid rgba(125, 38, 56, 0.1);
  box-shadow: var(--shadow), var(--shadow-hairline);
}

.differential-list {
  display: grid;
  gap: 14px;
}

.differential-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.differential-list svg {
  width: 30px;
  height: 30px;
  color: var(--wine);
}

.accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(125, 38, 56, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
  box-shadow: var(--shadow-hairline);
}

.faq-item button {
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 16px 18px;
  text-align: left;
  font-weight: 850;
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform 420ms var(--ease-premium);
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 18px 18px;
}

.lead-form {
  position: relative;
}

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

.form-intro li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 650;
}

.form-intro svg {
  color: var(--success);
  margin-top: 3px;
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--porcelain), rgba(255, 255, 255, 0.88));
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-soft), var(--shadow-hairline);
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.period-field legend {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium);
}

.field input:focus,
.field select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(125, 38, 56, 0.12);
  outline: 0;
}

.field.has-error input,
.field.has-error select {
  border-color: var(--error);
}

.error-message {
  min-height: 18px;
  color: var(--error);
  font-size: 0.78rem;
  font-weight: 700;
}

.period-field {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.period-field label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 12px;
  font-weight: 700;
}

.period-field.has-error label,
.consent.has-error {
  border-color: var(--error);
}

.period-field input,
.consent input {
  accent-color: var(--wine);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 8px 0;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-submit {
  width: 100%;
}

.form-success {
  margin: 0;
  border-radius: 8px;
  background: rgba(71, 122, 88, 0.12);
  color: var(--success);
  padding: 12px;
  font-weight: 800;
}

.final-cta {
  padding: clamp(54px, 9vw, 100px) 0;
  background:
    linear-gradient(135deg, rgba(125,38,56,0.94), rgba(36,31,32,0.96)),
    url("assets/photos/banner-copy.webp") center / cover;
  color: var(--white);
}

.final-cta-panel {
  display: grid;
  gap: 28px;
  align-items: center;
}

.final-cta-panel p,
.final-cta-panel .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-panel .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
}

.site-footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.site-footer a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #1f9d5a;
  color: var(--white);
  padding: 13px 18px;
  box-shadow: 0 18px 40px rgba(31, 157, 90, 0.26);
  font-weight: 850;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 520ms var(--ease-premium), opacity 520ms var(--ease-premium);
}

.whatsapp-float.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.whatsapp-float.is-visible::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(31, 157, 90, 0.36);
  border-radius: inherit;
  animation: pulse 5s ease-in-out infinite;
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 84;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(36, 31, 32, 0.9);
  color: var(--white);
  padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(140%);
  transition: transform 520ms var(--ease-premium);
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

.sticky-mobile-cta.is-hidden-for-form {
  transform: translateY(140%);
}

.sticky-mobile-cta span {
  font-size: 0.9rem;
  font-weight: 800;
}

.sticky-mobile-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  padding: 0 18px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 750ms cubic-bezier(0.215, 0.610, 0.355, 1), transform 750ms cubic-bezier(0.215, 0.610, 0.355, 1);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (min-width: 560px) {
  .authority-grid,
  .journey-grid,
  .proof-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-grid,
  .proof-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .period-field {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .period-field legend,
  .period-field .error-message {
    grid-column: 1 / -1;
  }

  .answer-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .site-header {
    top: 14px;
    width: min(var(--container), calc(100% - 40px));
    margin: 12px auto 0;
    border: 1px solid rgba(234, 223, 219, 0.82);
    border-radius: 999px;
    box-shadow: 0 18px 54px rgba(80, 50, 55, 0.1), var(--shadow-hairline);
  }

  .site-header.is-scrolled {
    box-shadow: 0 20px 60px rgba(80, 50, 55, 0.14), var(--shadow-hairline);
  }

  .header-grid {
    min-height: 64px;
    padding-inline: 10px;
  }

  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .header-cta {
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    background: var(--wine);
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 850;
  }

  .menu-button,
  .mobile-nav {
    display: none;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    justify-self: center;
  }

  .hero-grid,
  .two-column,
  .results-grid,
  .faq-grid,
  .form-layout,
  .final-cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .answer-panel {
    grid-template-columns: 1.35fr 0.95fr;
  }

  .answer-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .authority-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-grid article {
    min-height: 238px;
  }


  .treatment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }


  .proof-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .proof-gallery figure:first-child {
    grid-row: auto;
  }

  .proof-gallery figure:first-child img {
    height: auto;
  }

  .proof-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .sticky-mobile-cta {
    display: none;
  }

  .authority-photo img {
    height: min(62vh, 560px);
    object-position: center top;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

@media (max-width: 819px) {
  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 559px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 48px 0;
  }

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

  .mobile-hero-photo {
    position: relative;
    width: 100%;
    display: block;
    margin: 14px 0 18px;
  }

  .mobile-hero-photo img {
    width: 100%;
    height: clamp(150px, 40vw, 168px);
    border: 1px solid rgba(125, 38, 56, 0.16);
    border-radius: 18px;
    object-fit: cover;
    object-position: 58% center;
    box-shadow: var(--shadow-soft);
  }

  .mobile-hero-photo span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--wine);
    color: var(--white);
    padding: 3px 8px;
    font-size: 0.68rem;
    font-weight: 900;
  }

  .hero-visual {
    display: none;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-proof div {
    padding-top: 10px;
  }

  .hero-proof dt {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
  }

  .hero-proof dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

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

  .treatment-grid {
    gap: 12px;
  }

  .treatment-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .treatment-card img {
    width: 112px;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
  }

  .treatment-card div {
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .treatment-card svg {
    display: none;
  }

  .treatment-card h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .treatment-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .treatment-card button {
    width: 100%;
    padding-inline: 12px;
  }

  .lead-form {
    padding-bottom: 96px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
