/* ═══════════════════════════════════════════
   DESIGN TOKENS & STYLES — Clínica Dentinho
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Cores principais */
  --dental-mint:  #00b4a6;
  --dental-teal:  #0096a0;
  --dental-sky:   #e8f4fd;
  --dental-soft:  #f0faf9;
  --cm-blue:      #1977cc;
  --sb-purple:    #5353bd;
  --fusion-grad:  linear-gradient(135deg,#1977cc 0%,#5353bd 100%);
  --fusion-glow:  rgba(25,119,204,0.35);

  /* Texto */
  --text-dark:    #292929;
  --text-body:    #555555;
  --text-muted:   #757575;
  --text-cm:      #333333;

  /* Superfícies */
  --surface-white: #ffffff;
  --surface-sb:   #f6f5f7;
  --surface-cm:   #f7f7f7;
  --surface-dark: #0e0e1a;

  /* Acentos */
  --cm-charcoal:  #41464b;
  --cm-red:       #d20c1f;
  --cm-yellow:    #ffce39;
  --sb-tint:      rgba(83,83,189,0.10);

  /* Border radius */
  --radius-pill:  50px;
  --radius-card:  20px;
  --radius-cm:    3px;

  /* Fontes */
  --font-modern:  'Instrument Sans', sans-serif;
  --font-body:    'Source Sans Pro', sans-serif;
  --font-display: 'Rajdhani', sans-serif;
}

/* ── BASE RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); color:var(--text-body); background:#fff; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* ── KEYFRAMES ── */
@keyframes meshShift { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,-30px) scale(1.1);} 66%{transform:translate(-20px,20px) scale(.95);} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(-50px,20px) scale(.9);} 66%{transform:translate(30px,-40px) scale(1.05);} }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 30px 10px rgba(25,119,204,.3);} 50%{box-shadow:0 0 60px 20px rgba(83,83,189,.5);} }
@keyframes fadeInUp { from{opacity:0; transform:translateY(40px);} to{opacity:1; transform:translateY(0);} }
@keyframes fadeInLeft { from{opacity:0; transform:translateX(-40px);} to{opacity:1; transform:translateX(0);} }
@keyframes fadeInRight { from{opacity:0; transform:translateX(40px);} to{opacity:1; transform:translateX(0);} }
@keyframes scaleIn { from{opacity:0; transform:scale(.85);} to{opacity:1; transform:scale(1);} }
@keyframes spinnerAnim { 0%{transform:rotate(0deg); box-shadow:1px 1px 0 1px var(--cm-blue);} 50%{transform:rotate(180deg); box-shadow:1px 1px 0 1px var(--sb-purple);} 100%{transform:rotate(360deg); box-shadow:1px 1px 0 1px var(--cm-blue);} }
@keyframes shimmerMove { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-28px); transition:opacity .65s ease,transform .65s ease; }
.reveal-l.visible { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(28px); transition:opacity .65s ease,transform .65s ease; }
.reveal-r.visible { opacity:1; transform:translateX(0); }

/* ── LAYOUT HELPERS ── */
.fds-section { padding:100px 0; scroll-margin-top:52px; }
.fds-container { max-width:1200px; margin:0 auto; padding:0 32px; }
.fds-divider { border:none; border-top:1px solid rgba(230,230,230,.8); margin:48px 0; }

/* ── CHIPS / LABELS ── */
.fds-chip { display:inline-block; font-family:var(--font-modern); font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:5px 14px; border-radius:30px; margin-bottom:24px; }
.fds-chip--blue { color:var(--cm-blue); border:1px solid var(--cm-blue); }
.fds-chip--purple { color:var(--sb-purple); background:var(--sb-tint); border:1px solid rgba(83,83,189,.25); }
.fds-chip--fusion { color:#fff; background:var(--fusion-grad); border:none; }
.fds-section-title { font-family:var(--font-modern); font-size:38px; font-weight:700; color:var(--text-dark); line-height:1.2; margin-bottom:12px; }
.fds-section-sub { font-family:var(--font-body); font-size:17px; color:var(--text-muted); margin-bottom:48px; max-width:680px; }

/* ── BACKGROUNDS ── */
.bg-white { background:#fff; }
.bg-light { background:linear-gradient(180deg,#fff 0%,#f5f5f5 100%); }
.bg-sb { background:var(--surface-sb); }
.bg-dark { background:var(--surface-dark); position:relative; }
.bg-dark::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(83,83,189,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(83,83,189,.05) 1px,transparent 1px); background-size:60px 60px; pointer-events:none; }

/* ── UTILITY CLASSES ── */
.icon-xs { font-size:9px; }
.icon-sm { font-size:10px; }
.icon-md { font-size:12px; }
.text-light { color:rgba(255,255,255,.8); font-style:normal; }
.text-white { color:#fff; }

/* ══ HEADER ══ */
.header-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 1000;
}

.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 50px;
  padding: 10px 24px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 28px rgba(0,150,160,0.10), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,180,166,0.15);
  animation: headerDrop 0.8s cubic-bezier(0.22,1,0.36,1) both;
  transition: box-shadow 0.3s;
}

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

.site-header.scrolled {
  box-shadow: 0 12px 40px rgba(0,150,160,0.18);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,180,166,.35);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.logo-icon-wrap:hover { transform: rotate(-5deg) scale(1.08); }

.logo-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-text-wrap { line-height: 1.1; }

.logo-name {
  display: block;
  font-family: var(--font-modern);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-tagline {
  display: block;
  font-family: var(--font-modern);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dental-mint);
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav a {
  font-family: var(--font-modern);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 11px;
  border-radius: 24px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dental-mint), var(--cm-blue));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header-nav a:hover { color: var(--dental-teal); }
.header-nav a:hover::after { width: 55%; }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  color: #fff;
  font-family: var(--font-modern);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,180,166,.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,180,166,.42);
}

/* ══ HERO ══ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #091018;
}

.c-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.c-slide.active { opacity: 1; }

.c-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(5,12,24,0.75) 0%, rgba(0,150,160,0.15) 55%, rgba(25,119,204,0.22) 100%);
}

.c-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?w=1600&q=85'); }
.c-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1588776814546-ec7e7c3c4d98?w=1600&q=85'); }
.c-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&q=85'); }
.c-slide:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=85'); }

.hero-mesh {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg,#00b4a620,#1977cc18,#5353bd18,#00b4a620);
  background-size: 300% 300%;
  animation: meshShift 14s ease infinite;
  pointer-events: none; opacity: 0.6;
}

.hero-orb {
  position: absolute; border-radius: 50%; z-index: 2;
  pointer-events: none; filter: blur(80px);
}

.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,180,166,.28), transparent 70%);
  top: -100px; left: -80px;
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,119,204,.22), transparent 70%);
  bottom: 60px; right: -60px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 20px; padding-bottom: 120px;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 800px;
  height: 480px;
  background: rgba(255,255,204,.18);
  border-radius: 30px;
  z-index: -1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,166,.15);
  border: 1px solid rgba(0,180,166,.38);
  color: #7ef5ee;
  font-family: var(--font-modern); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-modern);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 700; color: #fff; line-height: 1.09;
  margin-bottom: 20px; max-width: 800px;
  animation: fadeInUp 0.9s ease 0.38s both;
}

.hero-title .hl {
  background: linear-gradient(130deg, #5ef7ef 0%, #62b8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-family: var(--font-body); font-size: 18px;
  color: rgba(255,255,255,.90); max-width: 500px;
  line-height: 1.7; margin-bottom: 46px;
  animation: fadeInUp 0.9s ease 0.52s both;
}

.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.9s ease 0.66s both;
}

.btn-hero {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  color: #fff; font-family: var(--font-modern); font-size: 16px; font-weight: 700;
  padding: 17px 36px; border-radius: var(--radius-pill);
  text-decoration: none; cursor: pointer; border: none; outline: none;
  animation: ctaPulse 2.8s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  animation-play-state: paused;
  box-shadow: 0 18px 50px rgba(0,180,166,.6);
}

@keyframes ctaPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(0,180,166,.45); }
  50%      { box-shadow: 0 6px 48px rgba(0,180,166,.80), 0 0 0 14px rgba(0,180,166,.09); }
}

.cta-tooth {
  width: 28px; height: 28px; object-fit: contain; flex-shrink: 0;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(94,247,239,.5));
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.75); font-family: var(--font-modern);
  font-size: 15px; font-weight: 500; padding: 16px 28px;
  border-radius: var(--radius-pill); border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px); text-decoration: none; cursor: pointer;
  transition: all 0.25s;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,.09); color: #fff;
  border-color: rgba(255,255,255,.38);
}

.c-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 48px; height: 48px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 15px; outline: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.c-arrow:hover {
  background: rgba(0,180,166,.32); border-color: rgba(0,180,166,.55);
  transform: translateY(-50%) scale(1.07);
}

.c-arrow.prev { left: 32px; }
.c-arrow.next { right: 32px; }

.c-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 9px;
}

.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer; transition: all 0.35s;
}

.c-dot.active { background: var(--dental-mint); width: 28px; border-radius: 4px; }

.scroll-hint {
  position: absolute; bottom: 134px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 7px;
  animation: fadeInUp 1s ease 1.1s both;
}

.scroll-hint span {
  font-family: var(--font-modern); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.35);
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.22); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}

.scroll-mouse::after {
  content: ''; width: 3px; height: 8px;
  background: var(--dental-mint); border-radius: 2px;
  animation: mwheel 1.8s ease-in-out infinite;
}

@keyframes mwheel {
  0%,100% { transform: translateY(0); opacity: 1; }
  80%      { transform: translateY(10px); opacity: 0; }
}

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  display: flex; justify-content: center;
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.09);
  animation: fadeInUp 1s ease 1s both;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 56px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: var(--font-modern); font-size: 24px; font-weight: 700;
  color: #fff; line-height: 1;
}

.stat-val em { color: var(--dental-mint); font-style: normal; }

.stat-lbl {
  font-family: var(--font-body); font-size: 11.5px;
  color: rgba(255,255,255,.4); margin-top: 4px;
}

/* ══ SERVIÇOS – GRID DE CARDS ══ */
#servicos {
  background: linear-gradient(180deg, #fff 0%, var(--dental-soft) 40%, #f4f8ff 70%, #fff 100%);
  padding: 120px 0 100px;
}

.svc-head {
  text-align: center;
  margin-bottom: 72px;
}

.svc-head .fds-section-sub { margin: 0 auto; }

.svc-grid-wrap {
  max-width: 1120px;
  margin: 0 auto 100px;
}

.svc-grid-group { margin-bottom: 40px; }

.svc-row-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-modern);
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
  color: #fff; margin-bottom: 14px;
}

.svc-row-label.lbl-mint   { background: var(--dental-mint); }
.svc-row-label.lbl-blue   { background: var(--cm-blue); }
.svc-row-label.lbl-purple { background: var(--sb-purple); }

.svc-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sg-card {
  background: var(--surface-cm);
  border-radius: 18px;
  padding: 24px 20px;
  border: 1.5px solid rgba(0,0,0,.045);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .35s ease, background .35s ease,
              box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}

.sg-card:hover { transform: scale(1.04); }

.sg-card[data-g="mint"]:hover {
  background: rgba(0,180,166,.09);
  border-color: rgba(0,180,166,.28);
  box-shadow: 0 14px 38px rgba(0,180,166,.14);
}

.sg-card[data-g="blue"]:hover {
  background: rgba(25,119,204,.08);
  border-color: rgba(25,119,204,.24);
  box-shadow: 0 14px 38px rgba(25,119,204,.13);
}

.sg-card[data-g="purple"]:hover {
  background: var(--sb-tint);
  border-color: rgba(83,83,189,.24);
  box-shadow: 0 14px 38px rgba(83,83,189,.13);
}

.sg-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2px;
}

.sg-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  transition: background .35s ease;
}

.sg-card[data-g="mint"]   .sg-icon { background: rgba(0,180,166,.12);  color: var(--dental-mint); }
.sg-card[data-g="blue"]   .sg-icon { background: rgba(25,119,204,.11); color: var(--cm-blue); }
.sg-card[data-g="purple"] .sg-icon { background: rgba(83,83,189,.10);  color: var(--sb-purple); }

.sg-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; line-height: 1; opacity: 0.18;
}

.sg-card[data-g="mint"]   .sg-num { color: var(--dental-mint); }
.sg-card[data-g="blue"]   .sg-num { color: var(--cm-blue); }
.sg-card[data-g="purple"] .sg-num { color: var(--sb-purple); }

.sg-sub {
  font-family: var(--font-modern);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-muted);
}

.sg-title {
  font-family: var(--font-modern);
  font-size: 16.5px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 2px;
}

.sg-desc {
  font-family: var(--font-body);
  font-size: 14.5px; color: var(--text-muted); line-height: 1.55;
}

/* ══ PROVA SOCIAL ══ */
.prova-social-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--dental-soft) 100%);
}

.prova-social-title {
  text-align: center;
  font-family: var(--font-modern);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 60px 0;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.ps-col-google {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ps-google-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,180,166,.12);
  border: 1px solid rgba(0,180,166,.1);
  width: 100%;
}

.ps-google-logo {
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ps-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--cm-yellow);
}

.ps-rating {
  font-family: var(--font-modern);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ps-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.ps-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 660px;
}

.ps-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform 0.8s ease-in-out;
}

.ps-depoimento {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1.5px solid rgba(0,180,166,.08);
  box-shadow: 0 4px 16px rgba(0,180,166,.08);
  flex-shrink: 0;
  width: 320px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ps-depoimento:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,180,166,.16);
}

.ps-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.ps-author {
  font-family: var(--font-modern);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.ps-title {
  font-family: var(--font-modern);
  font-size: 11px;
  color: var(--cm-blue);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* ══ PLANEJAMENTO REVERSO ══ */
.rp-block {
  position: relative;
  background: var(--surface-dark);
  border-radius: 28px;
  padding: 64px 72px;
  overflow: hidden;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.rp-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
}

.rp-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,180,166,.25), transparent 70%);
  top: -120px; left: -100px;
}

.rp-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(83,83,189,.22), transparent 70%);
  bottom: -80px; right: -80px;
}

.rp-tooth-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,180,166,.14);
  border: 1px solid rgba(0,180,166,.35);
  border-radius: 30px;
  padding: 7px 20px 7px 14px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}

.rp-tooth-badge img {
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(94,247,239,.6));
}

.rp-tooth-badge span {
  font-family: var(--font-modern);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #7ef5ee;
}

.rp-title {
  font-family: var(--font-modern);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff; line-height: 1.25;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.rp-title .hl {
  background: linear-gradient(130deg, #5ef7ef, #62b8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rp-text {
  font-family: var(--font-body);
  font-size: 16px; color: rgba(255,255,255,.58);
  max-width: 660px; margin: 0 auto 48px;
  line-height: 1.75; position: relative; z-index: 1;
}

.rp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

.rp-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}

.rp-step-n {
  display: inline-block;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  font-family: var(--font-modern);
  font-size: 24px; font-weight: 700;
  color: var(--dental-mint); line-height: 60px;
  text-align: center; margin-bottom: 6px;
}

.rp-step-label {
  font-family: var(--font-modern);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.rp-arrow {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, rgba(0,180,166,.5), rgba(25,119,204,.5));
  margin: 0 8px;
  position: relative; top: -14px;
  flex-shrink: 0;
}

.rp-arrow::after {
  content: '';
  position: absolute; right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left: 7px solid rgba(25,119,204,.7);
}

.rp-tagline {
  font-family: var(--font-modern);
  font-size: 13px; font-weight: 600;
  font-style: italic;
  color: var(--dental-mint);
  margin-top: 44px;
  position: relative; z-index: 1;
  letter-spacing: .04em;
}

/* ══ LOCALIZATION ══ */
#localizacao {
  background: linear-gradient(180deg, #fff 0%, var(--dental-soft) 100%);
  padding: 120px 0 100px;
}

.loc-head {
  text-align: center;
  margin-bottom: 60px;
}

.loc-head .fds-section-title {
  margin-bottom: 16px;
}

.loc-head .fds-section-sub {
  margin: 0 auto;
  max-width: 600px;
}

.loc-map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,180,166,.15);
  border: 1px solid rgba(0,180,166,.1);
}

.loc-map-wrapper iframe {
  border-radius: 24px;
}

/* ══ CONTACT US ══ */
#contato {
  background: linear-gradient(180deg, var(--dental-soft) 0%, #fff 100%);
  padding: 120px 0 100px;
}

.contact-head {
  text-align: center;
  margin-bottom: 60px;
}

.contact-head .fds-section-title {
  margin-bottom: 16px;
}

.contact-head .fds-section-sub {
  margin: 0 auto;
  max-width: 600px;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,180,166,.1);
  border: 1px solid rgba(0,180,166,.1);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-family: var(--font-modern);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,180,166,.15);
  border-radius: 12px;
  background: #f9f9f9;
  color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dental-mint);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,180,166,.1);
}

.contact-form textarea {
  resize: vertical;
  font-size: 14px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  color: #fff;
  font-family: var(--font-modern);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,180,166,.28);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,180,166,.42);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ══ FOOTER ══ */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,.75);
  padding-top: 80px;
  margin-top: 120px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand {
  font-family: var(--font-modern);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
}

.footer-title {
  font-family: var(--font-modern);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--dental-mint);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,180,166,.15);
  border-radius: 50%;
  color: var(--dental-mint);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--dental-mint);
  color: #fff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.contact-item i {
  color: var(--dental-mint);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

.footer-links-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.footer-links-bottom a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-bottom a:hover {
  color: var(--dental-mint);
}

.footer-links-bottom span {
  color: rgba(255,255,255,.3);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dental-mint) 0%, var(--cm-blue) 100%);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,180,166,.3);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,180,166,.5);
}

/* ══ WHATSAPP BUTTON ══ */
.whatsapp-btn {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  animation-play-state: paused;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.2);
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .header-wrap { width: 88%; }
  .header-nav a { font-size: 12px; padding: 8px 9px; }
}

@media (max-width: 900px) {
  .svc-grid-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-nav { display: none; }
  .header-wrap { width: 92%; }
  .stat-item { padding: 14px 24px; }
  .stat-val { font-size: 19px; }
  .rp-block { padding: 44px 28px; }
  .rp-flow { gap: 16px; }
  .rp-arrow { display: none; }
}

@media (max-width: 540px) {
  .svc-grid-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}
