/* Clínica Siso Cianorte · Design: Preto + Dourado + Warm Cream Rosé | Sora 100% */
:root {
  --primary-900: #0a0a0a;
  --primary-800: #1a1a1a;
  --primary-700: #2a2a2a;
  --primary-100: #f0eee9;
  --primary-50:  #faf8f4;
  /* UM dourado único - Classic Gold Leaf #d4af37 em tudo */
  --gold-bright: #d4af37;
  --gold-700: #d4af37;
  --gold-600: #c4a032;
  --gold-500: #d4af37;
  --gold-300: #e6c971;
  --gold-100: #fff3cf;
  --rose-500: #e8d5d5;
  --rose-200: #f4d8d4;    /* novo - rosé sutil pra dividir seções */
  --rose-100: #fbf1f0;    /* marker bg em fundo claro */
  --cream:    #fbf7f0;
  --white:    #ffffff;
  --ink-900:  #1a1a1a;
  --ink-700:  #3a3a3a;
  --ink-500:  #666666;
  --ink-100:  #e6e3dc;
  --ink-50:   #f7f5f1;
  --font-display: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:    'Sora', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --section-py: clamp(64px, 9vw, 120px);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.14);
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 36px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--ink-900); background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font: inherit; }
@media (max-width: 480px) { input, select, textarea { font-size: 16px !important; } }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 18px; } }
.skip-link { position: absolute; left: -9999px; top: 8px; padding: 8px 14px; background: var(--primary-800); color: white; border-radius: 6px; z-index: 9999; }
.skip-link:focus { left: 8px; }

/* === A11Y: focus visible em interativos === */
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }
.nav-toggle:focus-visible { outline: 2px solid var(--primary-800); outline-offset: 4px; }
.footer-social-link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), background .3s ease, box-shadow .35s ease, border-color .3s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Shimmer premium em todos botoes primarios */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transition: left .9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary > * { position: relative; z-index: 2; }
.btn-wa-icon { flex-shrink: 0; width: 18px; height: 18px; }
.btn-lg .btn-wa-icon, .btn-xl .btn-wa-icon { width: 19px; height: 19px; }

/* === HIGHLIGHTS - dourado + bold + risquinho reto fino sob a palavra === */
.hl, .hl-soft, .hl-bold {
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.005em;
  border-bottom: 1.5px solid var(--gold-bright);
  padding-bottom: 1px;
  text-decoration: none;
}
.btn-primary { background: var(--primary-800); color: var(--white); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); }
.btn-ghost { background: transparent; color: var(--primary-800); border-color: rgba(0, 0, 0, 0.2); }
.btn-ghost:hover { background: var(--primary-50); border-color: var(--primary-800); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 17px; }
/* === HEADER PÍLULA COM EFEITO GLASS (transparente, nav centralizado) === */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1240px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: top 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 68px;
  padding: 0 18px 0 26px;
}
.brand-logo { height: 38px; width: auto; }
.nav-desktop { display: flex; gap: 32px; justify-content: center; }
.nav-desktop a { font-size: 14px; color: var(--white); font-weight: 500; padding: 6px 2px; position: relative; transition: color .2s ease; letter-spacing: 0.01em; }
.site-header.is-scrolled .nav-desktop a,
body.is-blog .site-header .nav-desktop a { color: var(--primary-900); }
.nav-desktop a:hover { color: var(--gold-bright); }
.site-header.is-scrolled .nav-desktop a:hover,
body.is-blog .site-header .nav-desktop a:hover { color: var(--gold-bright); }
/* Em páginas internas (blog), header já abre em estado claro */
body.is-blog .site-header { background: rgba(255, 255, 255, 0.78); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08); }
body.is-blog .site-header .brand-logo { filter: none; }
.nav-desktop a:after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-desktop a:hover:after { transform: scaleX(1); }
.cta-header { padding: 11px 22px; font-size: 13.5px; }
.site-header .cta-header { background: var(--gold-bright); color: var(--primary-900); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }
.site-header .cta-header:hover { background: #c4a032; color: var(--primary-900); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(212, 175, 55, 0.5); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--primary-900); transition: transform .3s ease, opacity .3s ease; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; padding: 12px 22px 22px; margin-top: 12px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px) saturate(180%); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10); }
.nav-mobile a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--ink-100); color: var(--primary-900); font-weight: 500; font-size: 15px; }
.nav-mobile a:not(.btn):last-of-type { border-bottom: 0; }
.nav-mobile .btn { margin-top: 16px; }
@media (max-width: 980px) { .nav-desktop, .cta-header { display: none; } .nav-toggle { display: flex; margin-left: auto; } .nav-mobile.is-open { display: flex; } .header-inner { padding: 0 12px 0 18px; } }
/* Mobile: header arredondado e glass (mesmo padrão do desktop, escala menor) */
@media (max-width: 720px) {
  .site-header {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
  .site-header.is-scrolled { top: 10px; }
  .header-inner { height: 56px; padding: 0 18px; }
  /* Mostra só o "W" do logo (esconde o texto SISO) */
  .brand {
    width: 36px;
    height: 36px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
  }
  .brand-logo {
    width: auto;
    height: 36px;
    object-fit: cover;
    object-position: 0 center;
    max-width: none;
  }
  /* Nav-mobile como pílula flutuante embaixo do header (mesma vibe) */
  .nav-mobile {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px 22px 18px;
    background: rgba(20, 18, 30, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
  }
  .nav-mobile a:not(.btn) {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 4px;
    font-size: 14.5px;
  }
  .nav-mobile a:not(.btn):last-of-type { border-bottom: 0; }
  .nav-mobile .btn { margin-top: 12px; padding: 13px 22px; font-size: 14px; }
  /* Em paginas internas (blog/cream), o glass usa tom claro */
  body.is-blog .nav-mobile {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.08);
  }
  body.is-blog .nav-mobile a:not(.btn) {
    color: var(--primary-900);
    border-bottom-color: var(--ink-100);
  }
  /* Eyebrow: 1 linha, sem pontinho piscando, mais compacto */
  .hero-eyebrow {
    font-size: 9.5px;
    padding: 6px 14px;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .hero-eyebrow .dot { display: none; }
}

/* === HERO CINEMATOGRÁFICO CENTRALIZADO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 160px 0 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  animation: heroKenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.5%, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.78) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 163, 90, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(201, 163, 90, 0.7);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.45); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 36px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}
.hero-title em {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
  margin-top: 6px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 22px;
  max-width: 620px;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-subtitle-secondary { color: rgba(255, 255, 255, 0.7); margin-bottom: 56px; font-size: clamp(15px, 1.2vw, 17px); }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--white); border-color: rgba(255, 255, 255, 0.32); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 19px 40px; font-size: 14.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--gold-500); color: var(--gold-300); }
.hero .btn-primary {
  background: var(--gold-500);
  color: var(--primary-900);
  padding: 19px 48px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(201, 163, 90, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}
.hero .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.hero .btn-primary:hover { background: var(--gold-600); color: var(--white); transform: translateY(-3px); box-shadow: 0 24px 50px rgba(201, 163, 90, 0.5); }
.hero .btn-primary:hover::before { transform: translateX(100%); }

/* Trust bar (faixa fina entre hero e próxima seção) */
.trust-bar {
  background: var(--primary-900);
  border-top: 1px solid rgba(201, 163, 90, 0.18);
  border-bottom: 1px solid rgba(201, 163, 90, 0.18);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201, 163, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  text-decoration: none;
  transition: color 0.25s ease;
}
.trust-bar-item:is(a):hover { color: var(--gold-bright); }
.trust-bar-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold-bright); flex-shrink: 0; }
.trust-bar-item strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--white);
}
.trust-bar-item span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}
.trust-bar-sep {
  width: 1px;
  height: 22px;
  background: rgba(201, 163, 90, 0.25);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .trust-bar { padding: 22px 0; }
  .trust-bar-inner {
    gap: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    flex-wrap: nowrap;
  }
  .trust-bar-sep {
    display: block;
    width: 1px;
    height: 56px;
    background: rgba(212, 175, 55, 0.28);
    flex-shrink: 0;
    margin: 0 8px;
  }
  .trust-bar-item {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    text-align: center;
    align-items: center;
    padding: 0 4px;
  }
  .trust-bar-item strong { font-size: 13.5px; line-height: 1.2; }
  .trust-bar-item span { font-size: 11.5px; line-height: 1.3; }
  .trust-bar-stars { margin-bottom: 3px; gap: 1px; }
  .trust-bar-stars svg { width: 11px; height: 11px; }
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.trust-item span {
  font-family: var(--font-display);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.trust-stars {
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
  color: var(--gold-500);
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.trust-stars span {
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10.5px;
}
.star-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.review-stars, .rating-stars { display: inline-flex; gap: 2px; align-items: center; }
.trust-divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  z-index: 1;
  opacity: 0.72;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-scroll:hover { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.hero-scroll span {
  display: block;
  width: 3px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 999px;
  margin: 9px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }

@media (max-width: 980px) {
  .hero-bg { background-image: url('/assets/hero-bg-mobile.webp'); background-position: center 30%; }
}
@media (max-width: 1024px) {
  .hero-inner { padding: 0 32px; }
  .hero-content { max-width: 540px; }
}
@media (max-width: 720px) {
  .hero { padding: 110px 0 70px; min-height: auto; text-align: center; justify-content: center; }
  .hero-inner { padding: 0 22px; }
  .hero-content { max-width: 100%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%); }
  .hero-eyebrow { font-size: 10.5px; padding: 7px 16px; margin-bottom: 24px; letter-spacing: 0.15em; }
  .hero-title { letter-spacing: -0.03em; margin-bottom: 24px; }
  .hero-subtitle { margin: 0 auto 18px; }
  .hero-subtitle.hero-subtitle-secondary { margin-bottom: 32px; }
  .hero-ctas { justify-content: center; gap: 12px; }
  .hero-trust { gap: 14px; padding: 14px 20px; flex-wrap: wrap; justify-content: center; }
  .trust-item { gap: 2px; text-align: center; }
  .trust-item strong { font-size: 14.5px; }
  .trust-item span { font-size: 10px; letter-spacing: 0.08em; }
  .trust-stars span { font-size: 10px; }
  .trust-divider { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 84px 16px 44px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.9) 100%); }
  .hero .btn-primary { padding: 17px 36px; font-size: 14px; width: 100%; max-width: 340px; }
  .hero-trust { width: 100%; max-width: 360px; }
}

.section { padding: var(--section-py) 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--primary-900); color: var(--white); }
.section-dark .section-eyebrow { color: var(--gold-500); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
@media (max-width: 720px) {
  .section-eyebrow { font-size: 12px; gap: 10px; }
  .section-eyebrow::before, .section-eyebrow::after { width: 20px; }
}
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; color: var(--primary-900); margin: 0 0 20px; }
.section-lead { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.7; color: var(--ink-700); margin: 0; }
.section-lead + .section-lead { margin-top: 18px; }
.section-head { display: flex; flex-direction: column; gap: 0; }
.team-card p + p { margin-top: 12px; }
.section-cta-final p + p { margin-top: 14px; }
.section-cta { display: flex; justify-content: center; margin-top: 56px; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 980px; margin: 0 auto; }
@media (max-width: 720px) {
  .benefits-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 18px 18px;
    margin: 0 -18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 18px;
  }
  .benefits-grid::-webkit-scrollbar { display: none; }
  .benefits-grid .benefit {
    flex: 0 0 calc(85% - 14px);
    min-width: 260px;
    max-width: 320px;
    scroll-snap-align: center;
  }
}
.benefit { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.benefit-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--primary-50); color: var(--primary-800); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.benefit-icon svg { width: 28px; height: 28px; }
.benefit h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--primary-900); margin: 0 0 12px; letter-spacing: -0.015em; line-height: 1.25; }
.benefit p { font-size: 15px; line-height: 1.6; color: var(--ink-700); margin: 0; }

/* === STEPS CARROSSEL CINEMATOGRÁFICO === */
.steps-carousel-wrap { position: relative; }
.steps-carousel {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding: 24px;
  padding: 8px 4px 24px;
  margin: 0 -4px;
}
.steps-carousel::-webkit-scrollbar { display: none; }

.step {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  scroll-snap-align: start;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 163, 90, 0.5), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.step:hover { background: linear-gradient(150deg, rgba(201, 163, 90, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%); border-color: rgba(201, 163, 90, 0.32); transform: translateY(-3px); }
.step:hover::before { opacity: 1; }

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin: 0 0 14px; line-height: 1.25; letter-spacing: -0.02em; }
.step p { font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.72); margin: 0; }
.step p + p { margin-top: 10px; }

/* steps-arrow / steps-progress removidos (substituidos por .carousel-controls + .carousel-dot universal) */

@media (max-width: 720px) {
  .step { flex-basis: calc(85% - 14px); padding: 28px 22px; min-width: 240px; }
  .steps-carousel { gap: 14px; padding: 4px 18px 18px; margin: 0 -18px; scroll-padding: 18px; }
  .step-num { font-size: 44px; }
}

/* === PROCEDIMENTOS - SEÇÃO LIGHT WARM === */
.section-procedimentos {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, var(--rose-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fbf7f0 100%);
  position: relative;
}

.procs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.proc {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(201, 163, 90, 0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 0;
}
.proc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(201, 163, 90, 0.22), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 163, 90, 0.5);
}

.proc-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-100) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--radius-lg);
}
.proc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}
.proc:hover .proc-image img { transform: scale(1.05); }

.proc-body {
  padding: 26px 20px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.proc-divider {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold-500);
  border-radius: 999px;
  margin-bottom: 16px;
  transition: width .35s ease, background .35s ease;
}
.proc:hover .proc-divider { width: 56px; background: var(--gold-700); }

.proc-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--primary-900);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.proc-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
  max-width: 280px;
}
.proc-cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--primary-900);
  background: transparent;
  border: 1.5px solid var(--gold-bright);
  border-radius: 999px;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease, gap .25s ease;
}
.proc-cta-mini svg { color: var(--gold-bright); transition: transform .25s ease, color .25s ease; }
.proc-cta-mini:hover {
  background: var(--gold-bright);
  color: var(--primary-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.36);
  gap: 10px;
}
.proc-cta-mini:hover svg { color: var(--primary-900); transform: translateX(2px); }

@media (max-width: 980px) { .procs-grid { gap: 22px; } .proc-body { padding: 22px 16px 26px; } .proc-body h3 { font-size: 18px; } .proc-body p { font-size: 13.5px; } }
@media (max-width: 720px) { .procs-grid { grid-template-columns: 1fr; gap: 18px; max-width: 480px; margin: 0 auto; } .proc-image { aspect-ratio: 16 / 10; } .proc-body h3 { font-size: 22px; } .proc-body p { font-size: 14.5px; } }

/* === SORRISOS TRANSFORMADOS — galeria dark cinematográfica === */
.section-sorrisos {
  background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-sorrisos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(201, 163, 90, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(201, 163, 90, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.section-sorrisos .container { position: relative; z-index: 1; }
.section-sorrisos .section-eyebrow { color: var(--gold-bright); }
.section-sorrisos .section-title { color: var(--white); }
.section-sorrisos .section-title em { color: var(--gold-bright); font-style: normal; font-weight: 700; }
.section-sorrisos .section-lead { color: rgba(255, 255, 255, 0.72); }

.cases-carousel-wrap {
  position: relative;
  margin: 56px 0 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.cases-carousel {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: casesScroll 80s linear infinite;
  will-change: transform;
}
.cases-carousel:hover { animation-play-state: paused; }
@keyframes casesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

.case-card {
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(201, 163, 90, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s ease, box-shadow .4s ease;
}
.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
}
.case-card:hover { transform: translateY(-6px) scale(1.015); border-color: rgba(201, 163, 90, 0.55); box-shadow: 0 24px 50px rgba(201, 163, 90, 0.18), 0 12px 40px rgba(0, 0, 0, 0.5); }
.case-card:hover::after { opacity: 1; }
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card:hover img { transform: scale(1.05); }

.cases-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}

.section-sorrisos .btn-primary { background: var(--gold-bright); color: var(--primary-900); box-shadow: 0 12px 30px rgba(212, 175, 55, 0.42); }
.section-sorrisos .btn-primary:hover { background: #c4a032; color: var(--primary-900); box-shadow: 0 16px 36px rgba(212, 175, 55, 0.5); }

@media (max-width: 980px) {
  .case-card { width: 260px; height: 340px; }
  .cases-carousel { gap: 16px; animation-duration: 65s; }
  @keyframes casesScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
}
@media (max-width: 720px) {
  .case-card { width: 220px; height: 290px; }
  .cases-carousel { gap: 14px; animation-duration: 56s; }
  .cases-carousel-wrap { margin: 36px 0 28px; }
  @keyframes casesScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
}
/* === ESTÉTICA & ORTODONTIA - 3 cards com foto (light cream) === */
.section-estetica {
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, var(--rose-100) 0%, transparent 60%),
    linear-gradient(180deg, #fbf7f0 0%, var(--cream) 100%);
  position: relative;
}
.section-estetica .section-title em { color: var(--gold-700); font-style: normal; font-weight: 700; }

.estetica-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.estetica-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(201, 163, 90, 0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 0;
}
.estetica-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(201, 163, 90, 0.22), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 163, 90, 0.5);
}
.estetica-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-100) 100%);
  position: relative;
}
.estetica-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(0.4, 0, 0.2, 1);
}
.estetica-card:hover .estetica-image img { transform: scale(1.04); }

/* Rotator: 3 fotos em cross-fade dentro do card de Lentes & Facetas */
.estetica-image--rotator { isolation: isolate; }
.estetica-image--rotator .rotator-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: transform .55s cubic-bezier(0.4, 0, 0.2, 1);
  animation: lentesRotate 13.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}
.estetica-image--rotator .rotator-img:nth-child(1) { animation-delay: 0s; }
.estetica-image--rotator .rotator-img:nth-child(2) { animation-delay: -9s; }
.estetica-image--rotator .rotator-img:nth-child(3) { animation-delay: -4.5s; }
.estetica-card:hover .estetica-image--rotator .rotator-img { transform: scale(1.04); }
.estetica-image--rotator:hover .rotator-img,
.estetica-image--rotator:focus-within .rotator-img { animation-play-state: paused; }

@keyframes lentesRotate {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  33%  { opacity: 1; }
  39%  { opacity: 0; }
  100% { opacity: 0; }
}

.estetica-image--rotator .rotator-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.estetica-image--rotator .rotator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.45);
  animation: lentesDot 13.5s infinite steps(1);
}
.estetica-image--rotator .rotator-dot:nth-child(1) { animation-delay: 0s; }
.estetica-image--rotator .rotator-dot:nth-child(2) { animation-delay: -9s; }
.estetica-image--rotator .rotator-dot:nth-child(3) { animation-delay: -4.5s; }
/* === CONTROLES UNIVERSAIS DE CARROSSEL (setas + dots elegantes) === */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 0;
  max-width: 480px;
  padding: 0 14px;
}
/* Procs e Equipe: viram carrossel só no mobile, então controles só no mobile */
.section-outros-procs .carousel-controls,
#equipe .carousel-controls { display: none; }
@media (max-width: 640px) {
  .section-outros-procs .carousel-controls,
  #equipe .carousel-controls { display: flex; }
}
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--ink-100);
  color: var(--gold-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .3s ease, color .3s ease, transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.carousel-arrow:hover, .carousel-arrow:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--primary-900);
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.36);
}
.carousel-arrow:disabled { opacity: 0.28; cursor: not-allowed; }
.carousel-arrow:disabled:hover { background: var(--white); color: var(--gold-700); transform: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); }

/* Dots: bolinhas indicando posição (substitui progress bar) */
.carousel-progress {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border-radius: 0;
  max-width: none;
  overflow: visible;
  height: auto;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-100);
  transition: background .3s ease, width .3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  border: 0;
}
.carousel-dot:hover { background: var(--gold-300); }
.carousel-dot.is-active {
  background: var(--gold-bright);
  width: 22px;
  border-radius: 999px;
}

/* Em fundo escuro o arrow ajusta */
#sorrisos .carousel-arrow,
#implantes .carousel-arrow,
#depoimentos .carousel-arrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--gold-bright);
}
#sorrisos .carousel-dot,
#implantes .carousel-dot,
#depoimentos .carousel-dot { background: rgba(255, 255, 255, 0.18); }
#sorrisos .carousel-dot.is-active,
#implantes .carousel-dot.is-active,
#depoimentos .carousel-dot.is-active { background: var(--gold-bright); }

@keyframes lentesDot {
  0%, 33%   { background: var(--gold-500); transform: scale(1.15); }
  34%, 100% { background: rgba(251, 247, 240, 0.45); transform: scale(1); }
}
.estetica-body {
  padding: 28px 22px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.estetica-divider {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold-500);
  border-radius: 999px;
  margin-bottom: 16px;
  transition: width .35s ease, background .35s ease;
}
.estetica-card:hover .estetica-divider { width: 56px; background: var(--gold-700); }
.estetica-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-900);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.estetica-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
  max-width: 280px;
}
@media (max-width: 980px) { .estetica-grid { gap: 22px; } .estetica-body { padding: 22px 18px 26px; } .estetica-body h3 { font-size: 19px; } .estetica-body p { font-size: 13.5px; } }
@media (max-width: 720px) {
  .estetica-grid { grid-template-columns: 1fr; gap: 18px; max-width: 420px; margin: 0 auto; }
  .estetica-image { aspect-ratio: 4 / 3; }
  .estetica-body h3 { font-size: 22px; }
  .estetica-body p { font-size: 14.5px; }
  /* Lentes & Facetas mobile: preenche o card + Ken Burns vertical revelando a foto */
  .estetica-image--rotator { aspect-ratio: 4 / 3; }
  .estetica-image--rotator .rotator-img {
    object-fit: cover;
    object-position: center top;
    animation: lentesRotate 13.5s infinite cubic-bezier(0.65, 0, 0.35, 1), lentesPan 13.5s infinite ease-in-out;
  }
}

/* Ken Burns vertical: cada foto desce de top -> bottom durante a janela visível (6%-33%) */
@keyframes lentesPan {
  0%   { object-position: center 0%; }
  6%   { object-position: center 0%; }
  33%  { object-position: center 100%; }
  100% { object-position: center 100%; }
}

/* === OUTROS PROCEDIMENTOS - seção separada com bg foto + cards glass === */
.section-outros-procs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-outros-procs::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('/assets/outros-procs-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px) saturate(0.95);
  transform: scale(1.04);
}
.section-outros-procs::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(251, 247, 240, 0.94) 0%, rgba(251, 247, 240, 0.86) 50%, rgba(251, 247, 240, 0.96) 100%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 163, 90, 0.08) 0%, transparent 70%);
}
.section-outros-procs .section-title em { color: var(--gold-700); font-style: normal; font-weight: 700; }
.section-outros-procs .section-eyebrow { color: var(--gold-700); }

/* === Outros procedimentos: grid 3x3 desktop · carrossel mobile === */
.section-outros-procs .procs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-outros-procs .proc-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 38px 28px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.section-outros-procs .proc-card:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201, 163, 90, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(201, 163, 90, 0.42);
}
.section-outros-procs .proc-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  background: var(--gold-700);
  -webkit-mask-image: var(--ico);
  mask-image: var(--ico);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform .35s ease, background-color .35s ease;
}
.section-outros-procs .proc-card:hover .proc-icon {
  transform: scale(1.08);
  background: var(--gold-500);
}
.section-outros-procs .proc-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--gold-700);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.section-outros-procs .proc-card p {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}

/* Tablet: 2 colunas */
@media (max-width: 980px) {
  .section-outros-procs .procs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 720px; }
  .section-outros-procs .proc-card { padding: 30px 20px 26px; }
  .section-outros-procs .proc-icon { width: 38px; height: 38px; margin-bottom: 14px; }
  .section-outros-procs .proc-card h3 { font-size: 17px; }
  .section-outros-procs .proc-card p { font-size: 13px; }
}

/* Mobile: carrossel horizontal scroll-snap */
@media (max-width: 640px) {
  .section-outros-procs .procs-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
    gap: 14px;
    padding: 6px 0 22px;
    margin: 0 -20px;
    scroll-padding-left: 32px;
    max-width: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-outros-procs .procs-grid::-webkit-scrollbar { display: none; }
  .section-outros-procs .procs-grid > *:first-child { margin-left: 32px; }
  .section-outros-procs .procs-grid > *:last-child { margin-right: 32px; }
  .section-outros-procs .proc-card {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: start;
    padding: 28px 22px 26px;
  }
  .section-outros-procs .proc-icon { width: 38px; height: 38px; margin-bottom: 14px; }
  .section-outros-procs .proc-card h3 { font-size: 17px; }
  .section-outros-procs .proc-card p { font-size: 13.5px; }
}
@media (max-width: 720px) { .section-outros-procs::before { background-attachment: scroll; } }

/* === EQUIPE - cards uniformes premium · grid desktop · carrossel mobile === */
#equipe {
  background: linear-gradient(180deg, var(--rose-100) 0%, var(--white) 60%, var(--cream) 100%);
}
#equipe .section-title em { color: var(--gold-700); font-style: normal; font-weight: 700; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  isolation: isolate;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease, border-color .35s ease;
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(201, 163, 90, 0.04) 0%, transparent 35%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(212, 175, 55, 0.22), 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-bright);
}
.team-card:hover::before { opacity: 1; }

.team-photo {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-100), var(--rose-100));
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px rgba(201, 163, 90, 0.32), 0 10px 26px rgba(0, 0, 0, 0.15);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-ornament {
  display: inline-flex;
  color: var(--gold-500);
  margin-bottom: 12px;
  opacity: 0.85;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-900);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.team-cred {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-100), var(--rose-100));
  border: 1px solid rgba(201, 163, 90, 0.32);
  border-radius: 999px;
  margin-bottom: 8px;
}
.team-cro {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 18px;
  flex: 1;
  max-width: 260px;
}

/* team-tags removidos por decisão de design (cards mais compactos e premium) */

/* Tablet: 2 colunas */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; }
}

/* Mobile: carrossel horizontal scroll-snap */
@media (max-width: 640px) {
  .team-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 6px 0 22px;
    margin: 0 -20px;
    scroll-padding-left: 32px;
    max-width: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-grid > *:first-child { margin-left: 32px; }
  .team-grid > *:last-child { margin-right: 32px; }
  .team-card {
    flex: 0 0 76%;
    max-width: 320px;
    scroll-snap-align: start;
    padding: 32px 22px 28px;
  }
  .team-photo { width: 124px; height: 124px; }
  .team-card h3 { font-size: 18px; min-height: 44px; }
  .team-bio { font-size: 13px; }
}

.section-reviews {
  background: linear-gradient(180deg, var(--primary-900) 0%, #131015 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  isolation: isolate;
}
.section-reviews::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse 60% 60% at center, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.section-reviews::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse 60% 60% at center, rgba(232, 213, 213, 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.section-reviews .section-title { color: var(--white); }
.section-reviews .section-title em { color: var(--gold-bright); font-style: normal; font-weight: 700; }
.section-reviews .section-lead { color: rgba(255, 255, 255, 0.72); }
.section-reviews .section-eyebrow { color: var(--gold-bright); }
.rating-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  align-self: center;
  margin: 12px auto 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rating-summary .google-g { flex-shrink: 0; }
.rating-summary .rating-stars { color: var(--gold-bright); display: inline-flex; gap: 1px; }
.rating-summary strong { color: var(--white); font-weight: 700; }
.rating-summary .rating-divider { color: rgba(255, 255, 255, 0.2); font-weight: 400; user-select: none; }
.rating-summary .rating-source { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; }

/* Carrossel horizontal de depoimentos (desktop e mobile) */
.reviews-carousel-wrap { margin-top: 4px; }
.reviews-track {
  display: flex;
  flex: 1 1 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 22px;
  padding: 8px 4px 22px;
  scroll-padding: 4px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 280px;
  max-width: 420px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.review:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(212, 175, 55, 0.18), 0 6px 18px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.4);
}
.review-stars { color: var(--gold-bright); display: inline-flex; gap: 1px; margin: 0 0 14px; }
.review blockquote {
  margin: 0 0 22px;
  padding: 0 8px 0 0;
  border: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  flex: 1;
  /* Limita altura: cards uniformes. Texto longo ganha scroll interno sutil */
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
}
.review blockquote::-webkit-scrollbar { width: 4px; }
.review blockquote::-webkit-scrollbar-track { background: transparent; }
.review blockquote::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  transition: background .25s ease;
}
.review blockquote::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 55, 0.6); }
.review footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.review-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), #c4a032);
  color: var(--primary-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  user-select: none;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.32);
}
.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review footer strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review footer span { color: rgba(255, 255, 255, 0.55); font-size: 12.5px; }

/* Setas do carrossel de depoimentos (light theme) */
/* reviews-arrow / reviews-progress removidos (substituidos por .carousel-controls + .carousel-dot universal) */

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.reviews-google-link:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.22);
}
.reviews-google-link svg:last-child { color: var(--gold-bright); transition: transform .25s ease; }
.reviews-google-link:hover svg:last-child { transform: translate(2px, -2px); }

@media (max-width: 980px) {
  .review { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 720px) {
  .reviews-track {
    gap: 14px;
    padding: 4px 0 18px;
    margin: 0 -20px;
    scroll-padding-left: 32px;
  }
  .reviews-track > *:first-child { margin-left: 32px; }
  .reviews-track > *:last-child { margin-right: 32px; }
  .review {
    flex: 0 0 calc(82% - 14px);
    min-width: 240px;
    padding: 24px 22px;
  }
  .rating-summary { font-size: 13.5px; padding: 10px 18px; gap: 8px; }
  .rating-summary .rating-source { display: none; }
  .rating-summary .rating-divider:last-of-type { display: none; }
}

/* === BLOG EM DESTAQUE - carrossel 5 artigos === */
.section-blog-highlight {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.section-blog-highlight .section-title em { color: var(--gold-bright); font-style: normal; font-weight: 700; }
.blog-highlight-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}
.blog-highlight-track::-webkit-scrollbar { display: none; }
.blog-card-mini {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease, border-color .35s ease;
}
.blog-card-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(212, 175, 55, 0.18), 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
}
.blog-card-mini a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card-img {
  aspect-ratio: 1200/630;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-100), var(--rose-100));
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-mini:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-cat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 4px 12px;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  align-self: flex-start;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-900);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.015em;
  flex: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
  margin-top: 6px;
  transition: gap .25s ease, color .25s ease;
}
.blog-card-mini:hover .blog-card-cta { gap: 10px; color: var(--gold-700); }
.section-blog-highlight .btn-ghost {
  background: transparent;
  border-color: var(--gold-bright);
  color: var(--primary-900);
  font-weight: 600;
}
.section-blog-highlight .btn-ghost:hover {
  background: var(--gold-bright);
  color: var(--primary-900);
}
@media (max-width: 980px) {
  .blog-card-mini { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .blog-highlight-track {
    padding: 8px 0 22px;
    margin: 0 -20px;
    gap: 16px;
    scroll-padding-left: 32px;
  }
  .blog-highlight-track > *:first-child { margin-left: 32px; }
  .blog-highlight-track > *:last-child { margin-right: 32px; }
  .blog-card-mini { flex: 0 0 76%; min-width: 260px; max-width: 320px; }
  .blog-card-body h3 { font-size: 16px; }
}

/* === LOCALIZAÇÃO - bg parede SISO + texto plain + foto fachada === */
.section-localizacao {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-localizacao { background: var(--primary-900); }
.section-localizacao::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  z-index: -2;
  background: radial-gradient(ellipse 60% 60% at center, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.section-localizacao::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 55%;
  height: 70%;
  z-index: -2;
  background: radial-gradient(ellipse 60% 60% at center, rgba(232, 213, 213, 0.14) 0%, rgba(232, 213, 213, 0.05) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.section-localizacao { color: rgba(255, 255, 255, 0.92); }
.section-localizacao .location-eyebrow { color: var(--gold-bright); }
.section-localizacao .location-title { color: var(--white); }
.section-localizacao .location-title em { color: var(--gold-bright); font-style: normal; font-weight: 700; }
.section-localizacao .location-info p { color: rgba(255, 255, 255, 0.85); }
.section-localizacao .location-info strong { color: var(--white); }
.section-localizacao .location-info a { color: var(--white); border-bottom-color: rgba(255, 255, 255, 0.32); }
.section-localizacao .location-info a:hover { border-bottom-color: var(--gold-bright); }
.section-localizacao .location-actions .btn-link { color: rgba(255, 255, 255, 0.95); border-color: var(--gold-bright); }
.section-localizacao .location-actions .btn-link:hover { background: var(--gold-bright); color: var(--primary-900); }

.location-hero {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.location-content { display: flex; flex-direction: column; gap: 18px; padding-right: 12px; }
.location-eyebrow {
  font-family: 'Sora', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold-700);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.location-title {
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin-bottom: 10px;
}
.location-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-900);
  margin: 0;
}
.location-info strong {
  font-weight: 700;
  color: var(--primary-900);
}
.location-info a {
  color: var(--primary-900);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: border-color .2s ease;
}
.location-info a:hover { border-color: var(--gold-700); }

.location-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
/* "Como chegar" agora vira botão ghost dourado decente */
.location-actions .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--primary-900);
  text-decoration: none;
  background: transparent;
  border: 1.5px solid var(--gold-bright);
  border-radius: 999px;
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease;
}
.location-actions .btn-link svg { color: var(--gold-bright); transition: color .3s ease, transform .3s ease; flex-shrink: 0; }
.location-actions .btn-link:hover {
  background: var(--gold-bright);
  color: var(--primary-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.36);
}
.location-actions .btn-link:hover svg { color: var(--primary-900); transform: translate(-2px, 0); }

.location-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.16);
  border: 6px solid var(--white);
  aspect-ratio: 4/5;
  max-height: 560px;
  margin-left: auto;
  width: 100%;
  max-width: 480px;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .5s ease;
  isolation: isolate;
}
.location-photo:hover {
  transform: rotate(-0.4deg) scale(1.01);
  box-shadow: 0 32px 80px rgba(212, 175, 55, 0.22), 0 8px 22px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.36);
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.location-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .location-hero { grid-template-columns: 1fr; gap: 32px; }
  .location-photo { margin-left: 0; max-width: 100%; aspect-ratio: 16/10; max-height: 420px; }
  .location-content { padding-right: 0; text-align: left; }
  .location-eyebrow { font-size: 20px; }
}
@media (max-width: 640px) {
  .location-info p { font-size: 14px; }
  .location-actions { gap: 14px; flex-direction: column; align-items: stretch; }
  .location-actions .btn,
  .location-actions .btn-link { width: 100%; justify-content: center; }
}

.section-cta-final { background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.section-cta-final:before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201, 168, 118, 0.18) 0%, transparent 70%); }
.section-cta-final:after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212, 165, 165, 0.12) 0%, transparent 70%); }
.section-cta-final .container { position: relative; z-index: 1; max-width: 800px; }
.section-cta-final h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.5vw, 50px); line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.025em; }
.section-cta-final h2 em { font-style: normal; color: var(--gold-bright); font-weight: 700; }
.section-cta-final .btn-primary { background: var(--gold-bright); color: var(--primary-900); box-shadow: 0 12px 32px rgba(212, 175, 55, 0.42); }
.section-cta-final .btn-primary:hover { background: #c4a032; }
.section-cta-final p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; color: rgba(255, 255, 255, 0.82); margin: 0 auto 36px; max-width: 640px; }

.site-footer { background: var(--primary-900); color: rgba(255, 255, 255, 0.85); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p, .footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); margin: 0 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.78); display: inline-flex; align-items: center; justify-content: center; transition: background .25s ease, color .25s ease, transform .25s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
.footer-social-link:hover { background: var(--gold-500); color: var(--primary-900); transform: translateY(-2px); border-color: var(--gold-500); }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--gold-bright); margin: 0 0 18px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col li { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.footer-col li a { color: rgba(255, 255, 255, 0.7); transition: color .2s ease; display: flex; align-items: flex-start; gap: 10px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-item-icon { flex-shrink: 0; color: var(--gold-bright); margin-top: 2px; }
.footer-bottom { padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom small { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }
.footer-bottom a { color: var(--gold-bright); }
.footer-credit { display: inline-flex; align-items: center; gap: 8px; }
.footer-credit a { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity .25s ease; }
.footer-credit a:hover { opacity: 1; }
.footer-rd360-logo { height: 18px; width: auto; display: block; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 720px) {
  /* Mobile: brand topo + Nav | Regiões (centralizadas) + Contato abaixo */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    text-align: center;
  }
  /* Brand: full width topo */
  .footer-brand {
    grid-column: 1 / -1;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-brand .footer-tagline { text-align: center; }
  .footer-social { justify-content: center; }
  /* Navegação (col 1) | Regiões (col 2) — CENTRALIZADAS */
  .footer-col:nth-child(2) { order: 2; text-align: center; }
  .footer-col:nth-child(4) { order: 3; text-align: center; }
  .footer-col:nth-child(2) ul,
  .footer-col:nth-child(4) ul { align-items: center; }
  .footer-col:nth-child(2) li,
  .footer-col:nth-child(2) li a,
  .footer-col:nth-child(4) li,
  .footer-col:nth-child(4) li a { justify-content: center; }
  /* Contato: full width abaixo, h4 centralizado, items em coluna única centralizada (ícones em mesma vertical) */
  .footer-col:nth-child(3) {
    order: 4;
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }
  .footer-col:nth-child(3) h4 { text-align: center; }
  .footer-col:nth-child(3) ul {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
  }
  /* Estilos comuns das listas */
  .footer-col h4 { font-size: 12px; margin-bottom: 14px; }
  .footer-col ul { gap: 10px; }
  .footer-col li,
  .footer-col li a { font-size: 13.5px; line-height: 1.45; }
  .footer-col li > a { display: inline-flex; gap: 8px; }
  /* Footer-bottom mobile: stack centralizado (padrão Estudiodonto) */
  .footer-bottom { padding: 22px 0; }
  .footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom small:nth-of-type(1),
  .footer-bottom small:nth-of-type(2) {
    line-height: 1.5;
    display: block;
  }
  .footer-bottom small:nth-of-type(2) { font-size: 11.5px; opacity: 0.7; }
  .footer-bottom .footer-credit {
    margin-top: 4px;
  }
}
@media (max-width: 340px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Botão WhatsApp flutuante - maior e com pulse */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease;
  animation: waFloatPulse 2.4s ease-in-out infinite;
}
.floating-wa svg { width: 32px; height: 32px; }
.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}
@keyframes waFloatPulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

section[id] { scroll-margin-top: 96px; }

/* === RESPONSIVIDADE TABLET (720-980) === */
@media (max-width: 980px) {
  :root { --section-py: clamp(56px, 8vw, 96px); }
  .hero-grid { padding: 32px 24px 80px; gap: 48px; }
  .section-head { margin-bottom: 44px; }
}

@media (max-width: 720px) {
  :root { --section-py: clamp(64px, 12vw, 96px); }
  .container { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
  .hero-grid { padding: 24px 18px 56px; gap: 32px; }
  .hero-trust { gap: 16px 24px; padding-top: 22px; }
  .trust-item strong { font-size: 15px; }
  .trust-item span { font-size: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .benefits-grid, .procs-grid, .team-grid, .reviews-grid, .steps { gap: 16px; }
  .benefit, .proc-body, .team-card, .review { padding: 24px 22px; }
  .step { padding: 26px 22px; }
  .section-cta { margin-top: 40px; }
  .section-cta .btn, .section-cta-final .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.02em; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .trust-divider { display: none; }
  .floating-wa { width: 60px; height: 60px; bottom: 20px; right: 20px; }
  .floating-wa svg { width: 28px; height: 28px; }
}

/* Anti-quebra horizontal em iframe do Maps */
.location-map iframe { max-width: 100%; }

/* Garantia mobile-safe */
/* Quebra de linha: só entre palavras, NUNCA no meio de palavra. Hyphens off em PT-BR. */
.hero-content, .hero-subtitle, .section-lead, .section-title, .review blockquote, .post-body p, .post-body li {
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}
