:root {
  --bg: #ffffff;
  --surface: #fbfbfb;
  --text: #1a1a1a;
  --muted: #5f5f5f;

  --gold: #c9a24d;
  --gold-soft: #e6d3a3;
  --gold-ink: #8a6a1f;

  --line: rgba(26, 26, 26, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

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

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

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

/* =========================
       Header
       ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 55%),
    linear-gradient(135deg, var(--gold), #f1e2bf);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.22);
  border: 1px solid rgba(201, 162, 77, 0.35);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

/* Mobile menu toggle */
#navToggle {
  display: none;
}

.navToggleBtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navToggleBtn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: block;
}

.navToggleBtn span::before,
.navToggleBtn span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.navToggleBtn span::before {
  top: -6px;
}

.navToggleBtn span::after {
  top: 6px;
}

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

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(201, 162, 77, 0.12);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #f1e2bf);
  border-color: rgba(201, 162, 77, 0.55);
  color: #1a1a1a;
}

.btn--ghost {
  background: transparent;
}

/* =========================
       Hero
       ========================= */
.hero {
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -80px -40px auto -40px;
  height: 340px;
  background:
    radial-gradient(
      circle at 25% 35%,
      rgba(201, 162, 77, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(230, 211, 163, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(247, 247, 247, 1), rgba(255, 255, 255, 1));
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  background: rgba(201, 162, 77, 0.1);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.18);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 18px 0 16px;
}

.trustRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.trustRow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.trustRow i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.9);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.14);
  display: inline-block;
}

.heroCard {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff, #fbfbfb);
  border: 1px solid rgba(201, 162, 77, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 430px;
}

.tile {
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  overflow: hidden;
  position: relative;
  background: #f2f2f2;
}

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(201, 162, 77, 0.22),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.tile--1 {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
}

.tile--2 {
  background: radial-gradient(circle at 30% 30%, #ffffff, #f5f0e6);
}

.tile--3 {
  background: linear-gradient(135deg, #fbfbfb, #f1e2bf);
}

.tile--4 {
  background: radial-gradient(circle at 70% 30%, #fff, #f7f7f7);
}

.heroOverlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.heroOverlay strong {
  font-size: 14px;
}

.heroOverlay p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
       Sections
       ========================= */
section {
  padding: 54px 0;
}

.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.sectionHead h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}

.sectionHead p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  font-size: 14px;
}

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

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 18px;
}

.card--soft {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border-color: rgba(201, 162, 77, 0.2);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 77, 0.12);
  border: 1px solid rgba(201, 162, 77, 0.25);
  margin-bottom: 12px;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-ink);
  stroke-width: 2;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* About block */
.aboutBox {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 162, 77, 0.18);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 162, 77, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.aboutInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
  align-items: stretch;
}

.aboutPhoto {
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  min-height: 320px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(230, 211, 163, 0.55),
      transparent 50%
    ),
    linear-gradient(135deg, #ffffff, #f7f7f7);
  position: relative;
  overflow: hidden;
}

.aboutPhoto::after {
  content: 'Foto de clínica (substitua por uma sua)';
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.aboutText {
  padding: 6px 6px 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.aboutText h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}

.aboutText p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(201, 162, 77, 0.16);
  border: 1px solid rgba(201, 162, 77, 0.35);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}

.check::before {
  content: '✓';
  font-weight: 900;
  color: var(--gold-ink);
  font-size: 12px;
  line-height: 1;
}

/* Testimonials */
.quote {
  font-size: 14px;
  color: var(--muted);
}

.author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(201, 162, 77, 0.25),
      transparent 55%
    ),
    linear-gradient(135deg, #ffffff, #f1e2bf);
  border: 1px solid rgba(201, 162, 77, 0.25);
}

.author strong {
  font-size: 14px;
}

.author span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* CTA band */
.ctaBand {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 162, 77, 0.2);
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(201, 162, 77, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.ctaBand h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.ctaBand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 13px;
  background: #fff;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.footerGrid h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 14px;
}

.footerGrid a {
  color: var(--muted);
}

.footerGrid a:hover {
  color: var(--text);
}

/* Floating WhatsApp */
.whatsFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.whatsFloat a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--gold), #f1e2bf);
  border: 1px solid rgba(201, 162, 77, 0.55);
  font-weight: 900;
  font-size: 14px;
}

.whatsFloat svg {
  width: 18px;
  height: 18px;
}

/* =========================
       Responsive
       ========================= */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .header__actions {
    min-width: auto;
  }

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

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

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

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

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

  .navToggleBtn {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    margin: 0 auto;
    width: min(var(--container), calc(100% - 40px));
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }

  .nav a {
    padding: 12px 12px;
  }

  #navToggle:checked ~ .nav {
    display: flex;
  }
}

/* ===== HERO OVERLAY AJUSTE ===== */
.heroOverlay {
  max-height: none; /* remove limitação */
}

/* ===== EQUIPE HERO ===== */

.team-box h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.team-slider {
  overflow: hidden;
  height: 210px; /* 3 profissionais visíveis */
}

.team-track {
  transition: transform 0.4s ease;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team-member:first-child {
  border-top: none;
}

.team-member img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 77, 0.35);
  flex-shrink: 0;
}

.team-member strong {
  display: block;
  font-size: 14px;
}

.team-member span {
  display: block;
  font-size: 12px;
  color: #777;
}

.team-member a {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #b8902f;
  text-decoration: none;
}

.team-next {
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  color: #b8902f;
  font-weight: 600;
  cursor: pointer;
}

.team-track {
  overflow: hidden;
  max-height: 210px;
}
/* ===== HERO PROFISSIONAIS ===== */

.heroOverlay h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.team-list {
  display: flex;
  flex-direction: column;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team-member:first-child {
  border-top: none;
}

.team-member img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 77, 0.35);
}

.team-member strong {
  display: block;
  font-size: 14px;
}

.team-member span {
  display: block;
  font-size: 12px;
  color: #777;
}

.team-member a {
  font-size: 12px;
  font-weight: 600;
  color: #b8902f;
  text-decoration: none;
}

.team-member.extra {
  display: none;
}

.team-next {
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  color: #b8902f;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
  height: auto;
}
