:root {
  --navy-950: #081a30;
  --navy-900: #0a2646;
  --navy-800: #14385f;
  --gold-500: #f4bf57;
  --gold-600: #dfab46;
  --mint-500: #43c3ad;
  --white: #ffffff;
  --surface: #f5f7fb;
  --surface-strong: #edf1f7;
  --text: #172043;
  --muted: #5f6d86;
  --border: rgba(23, 32, 67, 0.1);
  --border-inverse: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 24px 64px rgba(8, 26, 48, 0.14);
  --shadow-md: 0 18px 40px rgba(8, 26, 48, 0.12);
  --container: 1180px;
  --header-height: 84px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  line-height: 1.05;
}

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

section {
  padding: 92px 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--navy-900) 0%, #14508a 100%);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  color: var(--gold-500);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker-mint {
  color: var(--mint-500);
}

#tratamento .section-heading-visual {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

#tratamento .solution-heading-main {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mint-500);
}

.section-heading h2,
.hero-copy h1,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 900;
  margin-top: 14px;
}

.section-heading-visual h2 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
}

.section-heading p,
.hero-lead,
.about-copy p,
.contact-copy p,
.content-card p,
.benefit-card p,
.review-card p {
  font-size: 1.08rem;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8, 26, 48, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 14px 34px rgba(244, 191, 87, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-1px);
  background: var(--gold-600);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-lead {
  margin-top: 24px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-highlight {
  margin-top: 18px;
  color: var(--gold-500);
  font-size: 1.12rem;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.02rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: inset 0 0 0 5px var(--navy-900);
}

.hero-actions {
  margin-top: 34px;
}

.hero-actions .primary-button {
  min-width: min(100%, 360px);
}

.hero-footnote {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 520px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-pill,
.stat-card {
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-inverse);
  background: rgba(255, 255, 255, 0.06);
}

.trust-pill strong,
.stat-card strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.trust-pill span,
.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-tagline {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: 34px;
  padding: 28px 24px 0;
  background:
    radial-gradient(circle at top, rgba(244, 191, 87, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-inverse);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  object-position: center bottom;
}

.hero-rating {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: min(280px, calc(100% - 36px));
  padding: 16px 18px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.hero-rating-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #4285f4 0deg 90deg,
    #34a853 90deg 180deg,
    #fbbc05 180deg 270deg,
    #ea4335 270deg 360deg
  );
  box-shadow: inset 0 0 0 1px rgba(8, 26, 48, 0.08);
}

.google-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #4285f4;
}

.hero-rating-title {
  display: grid;
  gap: 2px;
}

.hero-rating-title span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-rating-title strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-rating-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
}

.hero-rating-score strong {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.hero-rating-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hero-rating-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.content-card,
.benefit-card,
.review-card,
.video-card,
.specialist-card {
  border-radius: var(--radius-lg);
}

.pain-grid,
.results-grid,
.reviews-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pain-showcase {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px 120px 24px 0;
  align-items: start;
}

.pain-poster {
  position: relative;
  min-height: 380px;
  padding: 54px 380px 54px 54px;
  border-radius: 34px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: start;
  background:
    radial-gradient(circle at 20% 92%, rgba(92, 108, 191, 0.34), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(82, 96, 170, 0.30), transparent 18%),
    linear-gradient(180deg, #1c2757 0%, #151d43 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pain-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.pain-poster::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 6%;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 28px solid rgba(92, 108, 191, 0.28);
  border-right-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.pain-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.pain-item-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 0;
  text-align: left;
}

.pain-item-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint-500);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.pain-item-visual p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.pain-denture {
  position: absolute;
  right: -2%;
  bottom: -10%;
  z-index: 3;
  width: min(38%, 420px);
  transform: none;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35));
}

.content-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.pain-grid .content-card {
  min-height: 100%;
}

#dores .section-heading-visual {
  max-width: 1080px;
  margin: 0 auto 28px;
  text-align: left;
}

#dores .section-kicker {
  color: var(--mint-500);
}

.content-card h3,
.benefit-card h3,
.video-card h3,
.review-card h3,
.specialist-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.content-card-accent {
  background: linear-gradient(180deg, rgba(244, 191, 87, 0.14) 0%, rgba(244, 191, 87, 0.04) 100%);
}

.check-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.check-list-danger li::before {
  background: #f97373;
  box-shadow: inset 0 0 0 5px var(--white);
}

.pain-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(244, 191, 87, 0.34);
}

.pain-note strong {
  font-weight: 700;
}

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

.solution-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 760px);
  min-height: 340px;
  margin: 10px auto 28px;
}

.solution-motion {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.solution-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(73, 208, 177, 0.14), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 36%);
}

.solution-motion::after {
  content: none;
}

.solution-motion-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 58%;
  height: 44%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(73, 208, 177, 0.24) 0%, rgba(73, 208, 177, 0.08) 45%, transparent 72%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
}

.solution-motion-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 208, 177, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 5s ease-in-out infinite;
}

.solution-motion-image {
  position: absolute;
  left: 42%;
  top: 44%;
  width: min(92%, 620px);
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.32));
  animation: float-protocol 5s ease-in-out infinite;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.18) 56px, rgba(0, 0, 0, 0.82) 110px, #000 160px);
  mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.18) 56px, rgba(0, 0, 0, 0.82) 110px, #000 160px);
}

@keyframes float-protocol {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-4deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -51%) rotate(2deg) translateY(-6px);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.8;
  }
}

.benefits-grid-visual {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.benefits-grid-visual .benefit-card {
  grid-column: span 2;
}

.benefits-grid-visual .benefit-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.benefits-grid-visual .benefit-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.benefit-card {
  min-height: 200px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-inverse);
}

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 0.96;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

.results-media {
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.results-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#resultados .section-heading-visual {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

#resultados .section-heading-visual p {
  max-width: 620px;
  margin-inline: auto;
}

#resultados .results-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}

#resultados .results-media {
  width: min(100%, 520px);
  min-height: auto;
}

#resultados .results-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-inverse);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0;
}

.video-shell {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-inverse);
  min-height: 100%;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-top p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fbbc04;
  color: var(--navy-950);
  font-weight: 800;
}

.review-avatar-blue {
  background: #4285f4;
  color: var(--white);
}

.review-avatar-gold {
  background: rgba(244, 191, 87, 0.2);
  color: var(--gold-400);
}

.review-avatar-green {
  background: rgba(79, 201, 179, 0.2);
  color: var(--mint-400);
}

.review-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-carousel-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.reviews-score {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
  min-height: 280px;
  padding: 28px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-inverse);
  text-align: center;
}

.reviews-score strong {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.95;
}

.reviews-stars {
  color: #fbbc04;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.reviews-stars-inline {
  margin-bottom: 16px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.reviews-score p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-google {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #4285f4 0 24%, #ea4335 24% 48%, #fbbc04 48% 72%, #34a853 72% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.review-carousel-window {
  overflow: hidden;
}

.review-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  transition: transform 320ms ease;
  will-change: transform;
}

.review-slide {
  min-height: 230px;
  border-radius: 24px;
}

.review-slide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-profile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-profile h3 {
  margin: 0 0 4px;
}

.review-profile span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.review-google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-950);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

@media (min-width: 1101px) {
  .video-card {
    padding: 42px;
  }

  .video-shell {
    width: 100%;
  }
}

.carousel-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.specialist-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-radius: 28px;
  background: var(--surface);
}

.specialist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-info {
  position: absolute;
  inset: auto 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
  box-shadow: 0 18px 30px rgba(8, 26, 48, 0.18);
}

.specialist-info h3 {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.02;
}

.specialist-info p {
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.15;
  color: rgba(8, 26, 48, 0.84);
}

.specialist-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--white);
  font-size: 1.55rem;
  flex-shrink: 0;
}

.about-grid {
  align-items: center;
}

.about-photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  max-width: 520px;
}

.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.about-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-grid {
  align-items: center;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details p {
  margin-top: 0;
}

.cta-final {
  width: 100%;
  margin-top: 28px;
}

#avaliacoes .reviews-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}

#avaliacoes .section-heading p {
  max-width: 620px;
  margin-inline: auto;
}

#avaliacoes .video-card h3 {
  margin-bottom: 0;
}

#avaliacoes .review-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0;
}

#avaliacoes .review-card p {
  font-size: 1rem;
}

.map-side {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.map-side iframe,
.map-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-fallback {
  display: none;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  width: auto;
  height: 108px;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 0 22px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .pain-grid,
  .results-grid,
  .reviews-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .benefits-grid-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .benefits-grid-visual .benefit-card,
  .benefits-grid-visual .benefit-card:nth-child(4),
  .benefits-grid-visual .benefit-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-copy,
  .about-copy,
  .contact-copy {
    max-width: none;
  }

  #avaliacoes .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel-shell {
    grid-template-columns: 1fr;
  }

  .review-carousel-track {
    grid-auto-columns: calc(50% - 9px);
  }

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

  .hero-rating {
    right: 20px;
    bottom: 20px;
  }

  .pain-showcase {
    grid-template-columns: 1fr;
    max-width: 860px;
    padding: 0 0 30px;
  }

  .pain-poster {
    min-height: auto;
    padding: 38px 28px 190px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .pain-poster::before {
    left: 3%;
    top: 12%;
    width: 56%;
    border-width: 22px;
  }

  .pain-column {
    gap: 22px;
  }

  .pain-item-visual {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .pain-item-visual p {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }

  .pain-denture {
    right: 50%;
    bottom: -2%;
    width: min(62%, 340px);
    transform: translateX(50%);
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 78px;
  }

  .brand {
    height: auto;
  }

  .brand img {
    height: 50px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(8, 26, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: left;
  }

  .hero {
    padding-top: 44px;
  }

  .site-nav {
    gap: 16px;
  }

  #dores .section-heading-visual {
    text-align: center;
  }
}

@media (max-width: 720px) {
  section {
    padding: 72px 0;
  }

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

  .section-heading h2,
  .hero-copy h1,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .section-heading-visual h2 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  #tratamento .solution-heading-main {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .site-header {
    height: 74px;
  }

  .brand {
    height: auto;
  }

  .brand img {
    height: 44px;
  }

  .header-inner {
    gap: 12px;
  }

  .content-card,
  .benefit-card,
  .video-card,
  .review-card {
    padding: 24px;
  }

  .reviews-carousel-shell {
    gap: 18px;
  }

  .reviews-score {
    min-height: auto;
    padding: 24px 18px;
  }

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

  .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .carousel-arrow-prev {
    left: -6px;
  }

  .carousel-arrow-next {
    right: -6px;
  }

  .review-carousel-track {
    grid-auto-columns: 100%;
  }

  .hero-actions .primary-button,
  .cta-final {
    width: 100%;
  }

  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid-visual {
    grid-template-columns: 1fr;
  }

  .hero-rating {
    position: static;
    max-width: none;
    margin-top: 18px;
    width: 100%;
  }

  .hero-frame {
    padding: 20px 18px 0;
  }

  .hero-frame img {
    max-height: 420px;
  }

  .pain-poster {
    padding: 24px 18px 156px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .pain-poster::before {
    left: -10%;
    top: 10%;
    width: 72%;
    border-width: 18px;
  }

  .pain-column {
    gap: 16px;
  }

  .pain-item-visual {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .pain-item-visual span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .pain-item-visual p {
    font-size: clamp(0.82rem, 4vw, 1rem);
    line-height: 1.08;
  }

  .pain-denture {
    right: 50%;
    bottom: -1%;
    width: min(76%, 270px);
    transform: translateX(50%);
  }

  .solution-visual {
    min-height: 250px;
    margin-bottom: 18px;
  }

  .solution-motion {
    border-radius: 18px;
  }

  .solution-motion-image {
    left: 44%;
    top: 42%;
    width: min(104%, 440px);
  }

  .hero-rating-score {
    gap: 10px;
  }

  .hero-rating-score strong {
    font-size: 1.75rem;
  }

  .footer-logo {
    height: 96px;
  }

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

  .specialist-card {
    min-height: 440px;
  }

  .specialist-info {
    inset: auto 12px 12px;
    padding: 16px 16px 16px 18px;
  }

  .specialist-info h3 {
    font-size: 1.08rem;
  }

  .specialist-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .map-side {
    min-height: auto;
    padding: 22px;
  }

  .map-embed {
    display: none;
  }

  .map-fallback {
    display: grid;
    gap: 12px;
  }

  .map-fallback strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
  }

  .map-fallback p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
  }

  .site-footer {
    padding: 24px 0 32px;
  }

  .footer-logo {
    height: 84px;
  }

  .footer-inner {
    gap: 10px;
  }

}
