/* ============================================================
   Gesser Odontologia — Modern Medical Gold Palette
   HTML vanilla. Replicação fiel da LP Manus.
   ============================================================ */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
body { overflow-x: hidden; max-width: 100vw; min-height: 100vh; margin: 0; }
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
pre, code { max-width: 100%; overflow-x: auto; }
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"],
input[type="url"], textarea, select { font-size: 16px; }
body.modal-open { overflow: hidden; }

:root {
  --brand: #C4A265;
  --brand-dark: #B08E4F;
  --brand-light: #F5EFE3;
  --warm-50: #FAF7F2;
  --warm-100: #F5EFE3;
  --warm-200: #E8D9BF;
  --bg-white: #FFFFFF;
  --bg-cream: #FDFCF9;

  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;

  --green-500: #25D366;
  --green-600: #1ebe5d;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-brand: 0 8px 25px rgba(196, 162, 101, 0.25);
  --shadow-brand-lg: 0 12px 35px rgba(196, 162, 101, 0.35);

  --container-max: 1280px;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-700);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  color: var(--stone-900);
  margin: 0;
  font-weight: 800;
}
p { margin: 0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--warm-50); }
::-webkit-scrollbar-thumb { background: rgba(196, 162, 101, 0.4); border-radius: 4px; }

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 5s ease-in-out 1s infinite; }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }
.section-white { background: var(--bg-white); }
.section-cream { background: rgba(250, 250, 249, 0.5); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--brand-light);
  border: 1px solid rgba(196, 162, 101, 0.20);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.section-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title-left { text-align: left; }
.section-title .brand { color: var(--brand); }
.brand { color: var(--brand); }
.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone-600);
  margin-bottom: 12px;
}
.section-cta { text-align: center; margin-top: 40px; }
.cta-note {
  font-size: 14px;
  color: var(--stone-500);
  margin-bottom: 20px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 13px; gap: 8px; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
}
.btn-outline {
  background: white;
  color: var(--stone-700);
  border: 1px solid var(--stone-200);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--stone-300);
  background: var(--stone-50);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stone-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo img { height: 48px; }
.nav-links { display: none; gap: 4px; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; }
  .nav-cta { display: inline-flex !important; }
}
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--stone-900); background: var(--stone-50); }
.nav-cta { display: none; }

.nav-mobile-toggle {
  background: none;
  border: none;
  color: var(--stone-700);
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
}
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }
.nav-mobile-toggle:hover { background: var(--stone-100); }
.nav-mobile-toggle .icon-close { display: none; }
.nav-mobile-toggle.is-open .icon-menu { display: none; }
.nav-mobile-toggle.is-open .icon-close { display: block; }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.nav-mobile-menu.is-open { display: flex; transform: translateX(0); }
@media (min-width: 1024px) { .nav-mobile-menu { display: none !important; } }
.nav-mobile-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--stone-700);
  border-radius: var(--radius-sm);
}
.nav-mobile-link:hover { background: var(--stone-50); color: var(--stone-900); }
.nav-mobile-menu .btn { margin-top: 16px; }

/* === HERO === */
.hero {
  position: relative;
  background: white;
  padding-top: 100px;
  padding-bottom: 32px;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding-top: 112px; padding-bottom: 0; } }
.hero-bg-gradient {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(245, 239, 227, 0.6), rgba(250, 247, 242, 0.3), transparent);
  pointer-events: none;
}
.hero-bg-blob {
  position: absolute;
  top: 80px; right: 80px;
  width: 384px; height: 384px;
  background: rgba(245, 239, 227, 0.4);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 10; }
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .hero-grid { flex-direction: row; gap: 48px; }
}
.hero-content { flex: 1; max-width: 560px; }
.hero-content .section-badge { margin-bottom: 16px; }
.hero-title {
  margin-top: 16px;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--stone-900);
  letter-spacing: -0.025em;
}
.hero-sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--stone-600);
  line-height: 1.6;
  max-width: 480px;
}
.hero-desc {
  margin-top: 12px;
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.6;
  max-width: 480px;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-note {
  margin-top: 16px;
  font-size: 11px;
  color: var(--stone-400);
}

.hero-photos {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .hero-photos { justify-content: flex-end; margin-top: 0; }
}
.hero-photos-inner {
  position: relative;
  display: inline-block;
}
.hero-circle {
  width: 288px; height: 288px;
  border-radius: 50%;
  border: 6px solid rgba(196, 162, 101, 0.5);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(196, 162, 101, 0.10);
}
@media (min-width: 640px) { .hero-circle { width: 320px; height: 320px; } }
@media (min-width: 1024px) { .hero-circle { width: 380px; height: 380px; } }
@media (min-width: 1280px) { .hero-circle { width: 420px; height: 420px; } }
.hero-circle img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero-perfil {
  position: absolute;
  bottom: -16px; left: -24px;
  width: 112px; height: 112px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 640px) { .hero-perfil { width: 128px; height: 128px; } }
@media (min-width: 1024px) { .hero-perfil { bottom: -8px; left: -40px; } }
.hero-perfil img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-100);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-cro { top: -8px; right: -8px; }
.hero-card-loc { top: 50%; right: -16px; }
@media (min-width: 1024px) {
  .hero-card-cro { top: 16px; right: -24px; }
  .hero-card-loc { right: -40px; }
}
.hero-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--stone-900);
}
.hero-card-sub {
  font-size: 10px;
  color: var(--stone-500);
}

.hero-stats {
  margin-top: 48px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-100);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
@media (min-width: 1024px) { .hero-stats { margin-top: 64px; } }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 640px) {
  .hero-stat { padding-top: 0; padding-bottom: 0; border-left: 1px solid var(--stone-100); }
  .hero-stat:first-child { border-left: none; }
}
.hero-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--stone-900);
}
.hero-stat-sub {
  font-size: 11px;
  color: var(--stone-500);
}

/* === ORTODONTIA === */
.orto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .orto-grid { grid-template-columns: 1fr 1fr; } }
.orto-image { position: relative; order: 2; }
@media (min-width: 1024px) { .orto-image { order: 1; } }
.orto-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.orto-frame img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) { .orto-frame img { height: 384px; } }
.orto-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 50%, transparent);
  padding: 64px 24px 20px;
}
.orto-overlay-brand {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.orto-overlay-sub {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.orto-shape {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 96px; height: 96px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.orto-content { order: 1; display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .orto-content { order: 2; } }

.card-treatment {
  background: white;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card-treatment:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-treatment .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-treatment h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.card-treatment p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone-600);
}
.card-note {
  font-size: 13px;
  color: var(--stone-500);
  padding-left: 4px;
}

/* === IMPLANTES === */
.implant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .implant-grid { grid-template-columns: 1fr 1fr; } }
.implant-grid .card-treatment {
  background: rgba(250,250,249,0.8);
  border-color: var(--stone-100);
}
.implant-grid .card-treatment:hover {
  background: white;
  box-shadow: var(--shadow-md);
}
.implant-grid .card-treatment .card-icon {
  background: white;
  border: 1px solid var(--stone-100);
  transition: background 0.3s ease;
}
.implant-grid .card-treatment:hover .card-icon { background: var(--brand-light); }

.implant-extra {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .implant-extra { flex-direction: row; gap: 32px; } }
.implant-image {
  flex: 1;
  width: 100%;
}
.implant-image > * {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.implant-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (min-width: 1024px) { .implant-image img { height: 320px; } }
.implant-cta {
  flex: 1;
  text-align: center;
}
@media (min-width: 1024px) { .implant-cta { text-align: left; } }
.implant-cta p {
  font-size: 14px;
  color: var(--stone-500);
  margin-bottom: 20px;
}

/* === PARA QUEM === */
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 640px) { .profiles-grid { grid-template-columns: 1fr 1fr; } }
.profile-card {
  background: white;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.profile-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.profile-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.profile-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone-600);
}

/* === TRATAMENTOS COMPLEMENTARES === */
.trat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .trat-grid { grid-template-columns: 1fr 1fr; } }
.trat-image { position: relative; }
.trat-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
@media (min-width: 1024px) { .trat-image img { height: 420px; } }
.trat-shape-1 {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.trat-shape-2 {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 112px; height: 112px;
  background: var(--warm-50);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.trat-content { display: flex; flex-direction: column; gap: 24px; }
.trat-item {
  display: flex;
  gap: 16px;
}
.trat-item svg { flex-shrink: 0; margin-top: 2px; }
.trat-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 4px;
}
.trat-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone-600);
}
.trat-note {
  font-size: 13px;
  color: var(--stone-500);
  padding-left: 40px;
}
.trat-content .btn { align-self: flex-start; margin-left: 40px; }

/* === COMO FUNCIONA === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  background: white;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card:not(:last-child)::after {
  content: '';
  display: none;
  position: absolute;
  top: 50%; right: -12px;
  width: 24px;
  height: 2px;
  background: var(--warm-200);
}
@media (min-width: 640px) {
  .step-card:not(:last-child)::after { display: block; }
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-light);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  transition: color 0.3s ease;
}
.step-card:hover .step-num { color: var(--warm-200); }
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone-600);
}

/* === GALERIA === */
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .galeria-grid { grid-template-columns: repeat(3, 1fr); } }
.galeria-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galeria-item:hover::after { opacity: 1; }
.galeria-item figcaption {
  position: absolute;
  bottom: 16px; left: 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.galeria-item:hover figcaption { opacity: 1; }

/* === BANNER FULL-WIDTH === */
.banner-clinic {
  position: relative;
  overflow: hidden;
}
.banner-bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 1024px) { .banner-bg { height: 480px; } }
.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: linear-gradient(to top, rgba(28,25,23,0.80), rgba(28,25,23,0.40), rgba(28,25,23,0.20));
}
@media (min-width: 1024px) { .banner-overlay { height: 480px; } }
.banner-content {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
@media (min-width: 1024px) { .banner-content { height: 480px; } }
.banner-title {
  font-size: clamp(22px, 4.5vw, 40px);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
}
.banner-text {
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  max-width: 540px;
  line-height: 1.6;
}
@media (min-width: 640px) { .banner-text { font-size: 16px; } }
.banner-stats { background: var(--stone-900); }
.banner-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 1024px) { .banner-stats-inner { grid-template-columns: repeat(4, 1fr); } }
.banner-stat {
  padding: 24px 16px;
  text-align: center;
  border-left: 1px solid var(--stone-800);
}
.banner-stat:first-child { border-left: none; }
@media (max-width: 1023px) {
  .banner-stat:nth-child(3) { border-left: none; }
}
.banner-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}
@media (min-width: 1024px) { .banner-stat-value { font-size: 20px; } }
.banner-stat-label {
  font-size: 11px;
  color: var(--stone-400);
  margin-top: 4px;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 0 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-900);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(250,250,249,0.5); }
.faq-question svg {
  flex-shrink: 0;
  color: var(--stone-400);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question svg { transform: rotate(180deg); color: var(--brand); }
.faq-answer { padding: 0 0 20px; }
.faq-answer p {
  font-size: 13px;
  color: var(--stone-600);
  line-height: 1.7;
}

/* === CONTATO === */
.contato-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--stone-100);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contato-card { grid-template-columns: 1fr 1fr; } }
.contato-info { padding: 32px; }
@media (min-width: 1024px) { .contato-info { padding: 48px; } }
.contato-info .section-title { margin-bottom: 24px; }
.contato-dra {
  background: var(--stone-50);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.contato-dra h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-900);
}
.contato-cro {
  font-size: 13px;
  color: var(--stone-600);
  margin-top: 4px;
}
.contato-spec {
  font-size: 13px;
  color: var(--brand);
  font-weight: 500;
  margin-top: 4px;
}
.contato-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-row {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.contato-row:hover .contato-icon { background: var(--warm-200); }
.contato-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.contato-row-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-900);
}
.contato-row-sub {
  font-size: 11px;
  color: var(--stone-500);
}
.contato-regions {
  font-size: 11px;
  color: var(--stone-400);
  margin-top: 12px;
  margin-bottom: 12px;
}
.contato-info .btn { margin-top: 8px; }
.contato-map {
  background: var(--stone-100);
  min-height: 400px;
}
.contato-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* === FOOTER === */
.footer {
  background: var(--stone-900);
  color: white;
  padding: 48px 0 24px;
}
@media (min-width: 1024px) { .footer { padding: 64px 0 24px; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: var(--stone-400);
  line-height: 1.6;
  max-width: 240px;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a, .footer-list li {
  font-size: 13px;
  color: var(--stone-400);
  transition: color 0.3s ease;
}
.footer-list a { display: inline-flex; align-items: center; gap: 8px; }
.footer-list a:hover { color: var(--brand); }
.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-row svg { flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid var(--stone-800);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p {
  font-size: 11px;
  color: var(--stone-500);
}

.footer-by {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.footer-by-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 9999px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.footer-by-link:hover { opacity: 1; }
.footer-by-text {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.footer-by-logo { height: 18px; width: auto; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
  color: white;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.10);
  background: var(--green-600);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
@media (max-width: 600px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}
