/* ============================================================
   Dra. Kyara Ramalho — LP HTML vanilla
   Stack: HTML + CSS + JS puro. Zero framework.
   Cores extraídas do projeto Manus original (preservação fiel).
   ============================================================ */

/* === BOILERPLATE MOBILE-SAFE RD360 === */
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;
  position: relative;
  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; }

/* === TOKENS === */
:root {
  --brand-primary: #6B6CA0;
  --brand-primary-hover: #4F507D;
  --brand-primary-light: rgba(107, 108, 160, 0.12);
  --brand-peach: #E8A5BA;
  --brand-peach-warm: #D082A0;
  --brand-sand: #F0F0F8;
  --brand-sand-bg: #F5F5F9;
  --brand-cream: #FBF7F5;
  --brand-cream-warm: #FCFAFC;
  --brand-cream-warmer: #F5F1F9;
  --brand-cream-warmest: #EEEAF2;
  --brand-teal: #4F507D;
  --brand-teal-mid: #6B6CA0;
  --brand-teal-light: #A6A8C8;
  --brand-text-dark: #1F1F2E;
  --brand-text-medium: #4A4A60;
  --brand-text-soft: #4A4A60;
  --brand-text-softer: #6B6BC0;
  --brand-text-muted: #71718A;
  --brand-dark-1: #2D2D44;
  --brand-dark-2: #1F1F2E;
  --brand-dark-footer: #1A1A24;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Sora', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 16px rgba(31, 31, 46, 0.05);
  --shadow-md: 0 8px 32px rgba(107, 108, 160, 0.20);
  --shadow-lg: 0 16px 48px rgba(107, 108, 160, 0.28);
  --shadow-warm: 0 8px 28px rgba(107, 108, 160, 0.36);
  --shadow-warm-lg: 0 12px 36px rgba(107, 108, 160, 0.46);

  --container-max: 1200px;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--brand-text-dark);
  background: var(--brand-cream-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  margin: 0;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* Scrollbar custom */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--brand-cream); }
::-webkit-scrollbar-thumb { background: var(--brand-peach); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-primary); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes waPop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-slide-in-right { animation: slideInRight 0.6s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 15px; gap: 8px; font-weight: 600; }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach-warm));
  color: white;
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm-lg);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid rgba(107, 108, 160, 0.35);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--brand-primary);
  background: rgba(107, 108, 160, 0.06);
}

.btn-outline-teal {
  background: transparent;
  color: var(--brand-teal);
  border: 2px solid rgba(79, 80, 125, 0.30);
  font-weight: 600;
  padding: 14px 24px;
  font-size: 15px;
}
.btn-outline-teal:hover {
  border-color: var(--brand-teal);
  background: rgba(79, 80, 125, 0.06);
}

.btn-peach {
  background: linear-gradient(135deg, var(--brand-peach), var(--brand-peach-warm));
  color: var(--brand-text-dark);
  box-shadow: 0 8px 32px rgba(232, 165, 186, 0.35);
}
.btn-peach:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 165, 186, 0.48);
}

.btn-onprimary {
  background: white;
  color: var(--brand-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.btn-onprimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-pill-terra {
  background: rgba(107, 108, 160, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(107, 108, 160, 0.25);
}
.btn-pill-terra:hover { background: var(--brand-primary); color: white; }
.btn-pill-teal {
  background: rgba(79, 80, 125, 0.12);
  color: var(--brand-teal);
  border: 1px solid rgba(79, 80, 125, 0.25);
}
.btn-pill-teal:hover { background: var(--brand-teal); color: white; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  background: rgba(255, 252, 248, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 252, 248, 0.95);
  border-bottom-color: rgba(107, 108, 160, 0.14);
  box-shadow: 0 2px 24px rgba(31, 31, 46, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-text-soft);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--brand-primary); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text-dark);
  padding: 4px;
}
.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: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255, 252, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(107, 108, 160, 0.12);
  padding: 16px 24px 28px;
  box-shadow: 0 8px 32px rgba(31, 31, 46, 0.12);
  flex-direction: column;
  gap: 0;
}
.nav-mobile-menu.is-open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 13px 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--brand-text-dark);
  border-bottom: 1px solid rgba(107, 108, 160, 0.08);
}
.nav-mobile-menu .btn { margin-top: 18px; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #FCFAFC 0%, #F5F1F9 45%, #EEEAF2 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}
.hero-blob-1 {
  top: 10%; right: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(232, 165, 186, 0.18) 0%, transparent 70%);
}
.hero-blob-2 {
  bottom: 5%; left: 2%;
  width: 350px; height: 350px;
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  background: radial-gradient(ellipse, rgba(79, 80, 125, 0.08) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C97B5A' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: white;
  border-radius: 9999px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(107, 108, 160, 0.14);
  border: 1px solid rgba(107, 108, 160, 0.12);
}
.hero-stars { display: inline-flex; gap: 2px; }
.hero-badge-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text-medium);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--brand-text-dark);
  margin: 0 0 8px;
}
.hero-title-italic {
  color: var(--brand-primary);
  font-style: italic;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--brand-text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text-muted);
}

/* Hero photo */
.hero-photo-col {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-photo-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  border-radius: 42% 58% 52% 48% / 46% 42% 58% 54%;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(107, 108, 160, 0.28);
  border: 5px solid rgba(255, 255, 255, 0.85);
  position: relative;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-card-formacao {
  position: absolute;
  top: 8%; left: -5%;
  z-index: 10;
  background: white;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(31, 31, 46, 0.12);
  border: 1px solid rgba(107, 108, 160, 0.10);
  max-width: 200px;
}
.hero-card-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-card-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--brand-text-medium);
  line-height: 1.5;
}
.hero-card-registro {
  position: absolute;
  bottom: 8%; right: -2%;
  z-index: 10;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-mid));
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(79, 80, 125, 0.30);
  color: white;
}
.hero-card-registro .hero-card-label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}
.hero-card-crm {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}
.hero-card-rqe {
  font-family: var(--font-sans);
  font-size: 12px;
  opacity: 0.75;
}

/* === CREDIBILITY BAR === */
.credibility-bar {
  background: linear-gradient(135deg, var(--brand-dark-1) 0%, var(--brand-dark-2) 100%);
  padding: 26px 0;
  overflow: hidden;
}
.credibility-track {
  display: flex;
  overflow: hidden;
}
.credibility-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
  animation: marquee 30s linear infinite;
}
.credibility-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.credibility-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-peach);
}
.credibility-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  margin-left: 8px;
}

/* === SECTION GENERIC === */
.section { padding: 100px 0; position: relative; }
.section-cream { background: var(--brand-cream-warm); }
.section-sand { background: var(--brand-sand-bg); }
.section-white { background: white; }
.section-dark {
  background: linear-gradient(135deg, var(--brand-dark-1) 0%, var(--brand-dark-2) 100%);
}
.section-narrow .container { max-width: 1100px; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(107, 108, 160, 0.10);
  border-radius: 9999px;
  margin-bottom: 20px;
  border: 1px solid rgba(107, 108, 160, 0.15);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.section-tag-light {
  background: rgba(232, 165, 186, 0.15);
  border-color: rgba(232, 165, 186, 0.25);
  color: var(--brand-peach);
}
.section-tag-onprimary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.20);
  color: white;
}
.section-tag.section-tag-onhdark,
.section-dark .section-tag {
  background: rgba(232, 165, 186, 0.12);
  border-color: rgba(232, 165, 186, 0.28);
  color: var(--brand-peach);
}
.section-title.section-title-ondark,
.section-dark .section-title { color: white; }
.section-title.section-title-ondark em,
.section-dark .section-title em {
  background: linear-gradient(135deg, var(--brand-peach), #F4D0DC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.section-sub.section-sub-ondark,
.section-dark .section-sub { color: rgba(255, 255, 255, 0.78); max-width: 640px; }
.section-dark .section-sub strong { color: white; }
.cta-final .section-title { color: white; }
.cta-final .section-title em {
  background: linear-gradient(135deg, var(--brand-peach), #F4D0DC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.cta-final .section-sub { color: rgba(255, 255, 255, 0.78); }
.cta-final .section-tag {
  background: rgba(232, 165, 186, 0.12);
  border-color: rgba(232, 165, 186, 0.28);
  color: var(--brand-peach);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--brand-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title em { color: var(--brand-primary); font-style: italic; }
.section-title-light { color: white; }
.section-title-light em { color: var(--brand-peach); }
.section-sub {
  font-family: var(--font-sans);
  font-size: 19px;
  color: var(--brand-text-soft);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-sub-light { color: rgba(255, 255, 255, 0.70); max-width: 580px; }

.section-cta { text-align: center; margin-top: 0; }
.cta-note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--brand-text-muted);
  margin-top: 14px;
}

/* === SINTOMAS === */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.symptom-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(107, 108, 160, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(107, 108, 160, 0.16);
  border-color: rgba(107, 108, 160, 0.22);
}
.symptom-icon { margin-bottom: 18px; }
.symptom-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text-dark);
  margin-bottom: 10px;
}
.symptom-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-softer);
  line-height: 1.7;
}

/* === ABORDAGEM === */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-photo { position: relative; }
.approach-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(107, 108, 160, 0.22);
  aspect-ratio: 4/5;
}
.approach-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.approach-photo-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 12px 40px rgba(31, 31, 46, 0.14);
  border: 1px solid rgba(107, 108, 160, 0.12);
  max-width: 230px;
}
.approach-badge-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}
.approach-badge-label {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--brand-text-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.approach-content .section-title { text-align: left; margin-bottom: 24px; }
.approach-content .section-tag { margin-bottom: 16px; }
.approach-text {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--brand-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.approach-text:last-of-type { margin-bottom: 36px; }

.pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.3s ease;
}
.pillar:hover { transform: translateX(4px); }
.pillar-terra {
  background: rgba(107, 108, 160, 0.06);
  border: 1px solid rgba(107, 108, 160, 0.14);
}
.pillar-teal {
  background: rgba(79, 80, 125, 0.06);
  border: 1px solid rgba(79, 80, 125, 0.14);
}
.pillar-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.pillar-title-teal { color: var(--brand-teal); }
.pillar-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-soft);
  line-height: 1.65;
}

/* === ESPECIALIDADES === */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.specialty-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(107, 108, 160, 0.10);
  box-shadow: 0 4px 20px rgba(31, 31, 46, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.specialty-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(107, 108, 160, 0.16); }
.specialty-corner {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 var(--radius-xl) 0 0;
}
.specialty-terra .specialty-corner { background: radial-gradient(ellipse at top right, rgba(107, 108, 160, 0.12), transparent 70%); }
.specialty-teal .specialty-corner { background: radial-gradient(ellipse at top right, rgba(79, 80, 125, 0.12), transparent 70%); }
.specialty-icon { margin-bottom: 18px; display: flex; }
.specialty-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.specialty-terra .specialty-pill {
  background: rgba(107, 108, 160, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(107, 108, 160, 0.22);
}
.specialty-teal .specialty-pill {
  background: rgba(79, 80, 125, 0.12);
  color: var(--brand-teal);
  border: 1px solid rgba(79, 80, 125, 0.22);
}
.specialty-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--brand-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.specialty-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-softer);
  line-height: 1.75;
  margin-bottom: 24px;
}

.specialties-note {
  text-align: center;
  margin-top: 48px;
}
.specialties-note p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--brand-text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(107, 108, 160, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 108, 160, 0.12);
}
.specialties-note strong { color: var(--brand-text-soft); }

/* === SER 360 / DIFERENCIAIS DARK === */
.ser360-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.ser360-step, .ser360-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  position: relative;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.ser360-step::before, .ser360-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-peach));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.ser360-step:hover, .ser360-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 165, 186, 0.35);
  transform: translateY(-6px);
}
.ser360-step:hover::before, .ser360-card:hover::before { transform: scaleX(1); }
.ser360-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach));
  color: white;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(107, 108, 160, 0.35);
}
.ser360-icon {
  margin-bottom: 16px;
  display: flex;
}
.ser360-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  line-height: 1.25;
}
.ser360-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}
.ser360-arrow {
  position: absolute;
  top: 50%; right: -12px;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(107, 108, 160, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 12px;
  color: var(--brand-peach);
}
.ser360-step:last-child .ser360-arrow { display: none; }
.ser360-note {
  font-family: var(--font-sans);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-align: center;
}

/* === DEPOIMENTOS === */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.rating-stars { display: inline-flex; gap: 3px; }
.rating-value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-text-dark);
}
.rating-text {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-muted);
}
.rating-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: white;
  border-radius: 9999px;
  border: 1px solid rgba(107, 108, 160, 0.15);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-medium);
}
.rating-link:hover { border-color: var(--brand-primary); }

/* === REVIEWS CAROUSEL === */
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 22px;
  background: white;
  border: 1px solid rgba(107, 108, 160, 0.12);
  border-radius: 9999px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}
.reviews-rating { display: inline-flex; align-items: center; gap: 8px; }
.reviews-stars { display: inline-flex; gap: 2px; }
.reviews-rating strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text-dark);
}
.reviews-meta-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--brand-text-medium);
  border-left: 1px solid rgba(107, 108, 160, 0.18);
  padding-left: 16px;
}
.reviews-meta-text strong { color: var(--brand-text-dark); font-weight: 600; }

.reviews-carousel {
  position: relative;
  margin: 56px -8px 32px;
}
.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 8px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(107, 108, 160, 0.10);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(107, 108, 160, 0.14);
  border-color: rgba(232, 165, 186, 0.35);
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.review-stars { display: inline-flex; gap: 2px; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-text-muted);
  letter-spacing: 0.04em;
}
.review-text {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--brand-text-soft);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
  position: relative;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 108, 160, 0.10);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(107, 108, 160, 0.30);
}
.review-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-text-dark);
}
.review-date {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--brand-text-muted);
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(107, 108, 160, 0.15);
  box-shadow: 0 8px 24px rgba(107, 108, 160, 0.20);
  color: var(--brand-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s ease;
}
.reviews-arrow:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-50%) scale(1.05);
}
.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.reviews-arrow-prev { left: -8px; }
.reviews-arrow-next { right: -8px; }

.reviews-cta {
  text-align: center;
  margin-top: 8px;
}
.reviews-cta .btn-outline {
  background: white;
  font-weight: 600;
  padding: 13px 26px;
  font-size: 14.5px;
}

@media (max-width: 768px) {
  .review-card { flex: 0 0 88%; }
  .reviews-arrow { display: none; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 52px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(107, 108, 160, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(107, 108, 160, 0.14);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-soft);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-text-dark);
}
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--brand-text-muted);
  margin-top: 2px;
}

/* === SOBRE === */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  min-width: 0;
}
.about-content { min-width: 0; }
.about-photo { min-width: 0; }
.about-photo {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(107, 108, 160, 0.20);
  aspect-ratio: 3/4;
  background: linear-gradient(140deg, var(--brand-peach-warm), var(--brand-primary));
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo-tag {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px solid rgba(107, 108, 160, 0.12);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.about-photo-tag strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--brand-text-dark);
  margin-bottom: 4px;
}
.about-photo-tag span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--brand-text-muted);
  letter-spacing: 0.02em;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.about-highlight {
  background: var(--brand-cream-warm);
  border: 1px solid rgba(107, 108, 160, 0.10);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.about-highlight:hover {
  border-color: rgba(232, 165, 186, 0.45);
  transform: translateX(2px);
}
.about-highlight-num {
  grid-row: 1 / 3;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--brand-peach-warm);
  line-height: 1;
}
.about-highlight strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--brand-text-dark);
}
.about-highlight span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--brand-text-muted);
  line-height: 1.45;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; max-width: 460px; margin: 0 auto; }
}
.about-photo-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-mid));
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(79, 80, 125, 0.30);
  color: white;
  max-width: 200px;
}
.about-badge-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}
.about-badge-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.about-badge-crm {
  font-family: var(--font-sans);
  font-size: 11px;
  opacity: 0.75;
  margin-top: 6px;
}
.about-content .section-tag,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 24px; }
.about-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brand-text-dark);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--brand-peach);
}
.about-lead strong { font-style: normal; color: var(--brand-primary); font-weight: 700; }
.about-text {
  font-family: var(--font-sans);
  font-size: 16.5px;
  color: var(--brand-text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-text strong { color: var(--brand-text-dark); font-weight: 600; }
.about-text:last-of-type { margin-bottom: 32px; }
.about-h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--brand-text-dark);
  margin: 32px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(107, 108, 160, 0.18);
}
.about-formation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.about-formation li {
  background: var(--brand-cream-warm);
  border: 1px solid rgba(107, 108, 160, 0.10);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--brand-text-soft);
  line-height: 1.55;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.about-formation li:hover {
  border-color: rgba(232, 165, 186, 0.4);
  background: white;
}
.about-formation li strong {
  color: var(--brand-text-dark);
  font-weight: 600;
}
.about-form-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-peach-warm);
  align-self: start;
  padding-top: 2px;
}
.about-formation li.about-form-highlight {
  background: linear-gradient(135deg, rgba(232, 165, 186, 0.12), rgba(107, 108, 160, 0.08));
  border-color: rgba(232, 165, 186, 0.4);
}
.about-formation li.about-form-highlight .about-form-tag { color: var(--brand-primary); }
.about-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-credentials span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  background: var(--brand-primary);
  color: white;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .about-formation li { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .about-form-tag { padding-top: 0; }
}

.credentials { margin-bottom: 32px; }
.credentials-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--brand-text-dark);
  margin-bottom: 16px;
}
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-soft);
  line-height: 1.5;
}
.credentials-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* === COMO FUNCIONA === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.how-card {
  background: var(--brand-cream-warm);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(107, 108, 160, 0.10);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(107, 108, 160, 0.14);
  border-color: rgba(107, 108, 160, 0.22);
}
.how-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: white;
}
.how-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.how-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-text-dark);
  margin-bottom: 12px;
}
.how-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--brand-text-softer);
  line-height: 1.7;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(107, 108, 160, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(107, 108, 160, 0.28);
  box-shadow: 0 10px 28px -16px rgba(45, 45, 68, 0.18);
}
.faq-item[open] {
  border-color: rgba(107, 108, 160, 0.40);
  box-shadow: 0 14px 36px -18px rgba(107, 108, 160, 0.30);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #2D2D44;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-item[open] .faq-question { color: var(--brand-primary); padding-bottom: 12px; }
.faq-chevron {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(107, 108, 160, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 0.35s ease;
}
.faq-item[open] .faq-chevron {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach, #E8A5BA));
  color: #FFFFFF;
  transform: rotate(180deg);
}
.faq-answer {
  padding: 4px 26px 24px;
  border-top: 1px solid rgba(107, 108, 160, 0.08);
  margin-top: 0;
  padding-top: 18px;
}
.faq-answer p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(45, 45, 68, 0.78);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 640px) {
  .faq-question { padding: 18px 20px; font-size: 16px; gap: 14px; }
  .faq-chevron { width: 30px; height: 30px; }
  .faq-chevron svg { width: 12px; height: 12px; }
  .faq-answer { padding: 14px 20px 20px; }
  .faq-answer p { font-size: 15px; }
}

/* === CTA FINAL === */
.cta-final {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-blob-1 { top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(255, 255, 255, 0.06); }
.cta-blob-2 { bottom: -80px; left: -80px; width: 400px; height: 400px; background: rgba(255, 255, 255, 0.04); }
.cta-final .container { position: relative; z-index: 1; }
.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-final-sub {
  font-family: var(--font-sans);
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 44px;
  line-height: 1.75;
}
.cta-final-note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
}

/* === FOOTER === */
.footer {
  background: var(--brand-dark-footer);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 20px; }
.footer-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}
.footer-social-link:hover { background: var(--brand-primary); color: white; }

.footer-heading {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; }
.footer-link {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--brand-peach); }

.footer-block { margin-bottom: 16px; }
.footer-block:last-child { margin-bottom: 0; }
.footer-block-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-peach);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-block-label-sm {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-block-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-block-row svg { flex-shrink: 0; margin-top: 3px; color: rgba(255, 255, 255, 0.40); }
.footer-phone {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--brand-peach); }
.footer-crm {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
}

/* Footer maps */
.footer-maps { margin-bottom: 40px; }
.footer-maps-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 20px;
  text-align: center;
}
.footer-maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-map-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-map-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.footer-map-addr {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
}
.map-facade {
  width: 100%;
  height: 200px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 30% 40%, rgba(232, 165, 186, 0.08), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(79, 80, 125, 0.06), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 20px),
    rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-sans);
}
.map-facade:hover { background: rgba(255, 255, 255, 0.08); }
.map-facade-pin { color: var(--brand-peach); }
.map-facade-cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}
.map-iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}
.map-open-link {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s;
}
.map-open-link:hover {
  color: var(--brand-peach);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.5;
}
.footer-disclaimer { color: rgba(255, 255, 255, 0.50); }

.footer-by {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: center;
}
.footer-by-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 9999px;
  opacity: 0.78;
  transition: opacity 0.3s ease, background 0.3s ease;
  text-decoration: none;
}
.footer-by-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}
.footer-by-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.footer-by-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1);
}
.whatsapp-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.60);
}

/* ====================================================
   RESPONSIVO
   ==================================================== */

/* Tablet e desktop pequeno */
@media (max-width: 1024px) {
  .ser360-grid { grid-template-columns: repeat(2, 1fr); }
  .ser360-step:nth-child(2n) .ser360-arrow { display: none; }
}

/* Tablet */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { min-height: auto; padding-top: 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo-col { order: -1; }
  .hero-photo-frame { max-width: 280px; margin: 0 auto; aspect-ratio: 3/4; }
  .hero-card-formacao { left: 0; }
  .hero-card-registro { right: 0; }

  .approach-grid { grid-template-columns: 1fr; gap: 60px; }
  .approach-photo-badge { right: 0; bottom: -20px; max-width: 200px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo { order: 2; }
  .about-photo-badge { right: 0; }

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

  .ser360-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ser360-arrow { display: none !important; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .credibility-inner { animation-duration: 20s; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .cta-final { padding: 80px 0; }
}

/* Mobile */
@media (max-width: 600px) {
  body { font-size: 16px; }

  .container { padding: 0 20px; }

  .hero { padding-top: 90px; padding-bottom: 32px; }
  .hero-photo-frame { max-width: 240px; }
  .hero-card-formacao { padding: 12px 16px; max-width: 160px; }
  .hero-card-formacao .hero-card-text { font-size: 12px; }
  .hero-card-registro { padding: 10px 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-meta { gap: 16px; }

  .credibility-item { padding: 0 24px; gap: 16px; }
  .credibility-value { font-size: 17px; }
  .credibility-label { font-size: 13px; }

  .symptoms-grid { grid-template-columns: 1fr; }
  .symptom-card { padding: 24px; }

  .specialty-card { padding: 28px 24px; }
  .specialty-title { font-size: 19px; }

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

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

  .approach-text { font-size: 17px; }
  .about-text { font-size: 17px; }

  .footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .cta-final { padding: 64px 0; }
}

/* Mobile pequeno */
@media (max-width: 380px) {
  .hero-photo-frame { max-width: 220px; }
  .hero-card-formacao { display: none; }
  .approach-photo-badge { padding: 16px 18px; }
  .approach-badge-num { font-size: 26px; }
}

/* ============================================================
   STAT BANNER (separator entre Sintomas e Cardiologista)
   ============================================================ */
.stat-banner {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #4F507D 60%, #2D2D44 100%);
  color: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
}
.stat-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(232,165,186,0.18), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(232,165,186,0.14), transparent 45%);
  z-index: -1;
}
.stat-banner-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.stat-banner-num {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-banner-percent {
  font-family: var(--font-serif);
  font-size: clamp(96px, 13vw, 168px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--brand-peach) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.stat-banner-pulse {
  color: var(--brand-peach);
  opacity: 0.85;
  display: inline-flex;
}
.stat-banner-line {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.stat-banner-line em {
  font-style: italic;
  color: var(--brand-peach);
}
.stat-banner-source {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .stat-banner { padding: 56px 0; }
  .stat-banner-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .stat-banner-num { justify-content: center; }
  .stat-banner-pulse svg { width: 38px; height: 38px; }
}

/* ============================================================
   PULL QUOTE (citação entre Cardiologista e Especialidades)
   ============================================================ */
.pullquote {
  padding: 96px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.pullquote::before,
.pullquote::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,165,186,0.10) 0%, transparent 70%);
  z-index: 0;
}
.pullquote::before { top: -120px; left: -120px; }
.pullquote::after { bottom: -120px; right: -120px; background: radial-gradient(circle, rgba(107,108,160,0.08) 0%, transparent 70%); }
.pullquote-figure {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}
.pullquote-mark {
  color: var(--brand-peach);
  opacity: 0.65;
  margin-bottom: 16px;
}
.pullquote-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  color: #2D2D44;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.pullquote-text em {
  font-style: italic;
  color: var(--brand-primary);
}
.pullquote-cite {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(107,108,160,0.18);
}
.pullquote-cite strong {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pullquote-cite span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(45,45,68,0.6);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .pullquote { padding: 64px 0; }
  .pullquote-mark { width: 44px; height: 44px; }
}

/* ============================================================
   BANNER HORIZONTAL (com foto da Camila)
   ============================================================ */
.banner-h {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  min-height: 360px;
  max-height: 420px;
  background: #2D2D44;
  overflow: hidden;
  isolation: isolate;
}
.banner-h-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  max-height: 420px;
}
.banner-h-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.95);
}
.banner-h-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(45,45,68,0.85) 100%);
}
.banner-h-content {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #2D2D44 100%);
  position: relative;
  isolation: isolate;
}
.banner-h-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(232,165,186,0.22), transparent 50%);
  z-index: -1;
}
.banner-h-content .container {
  width: 100%;
  padding: 64px 40px;
}
.banner-h-text {
  max-width: 480px;
  color: #FFFFFF;
}
.banner-h-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-peach);
  padding: 7px 14px;
  border: 1px solid rgba(232,165,186,0.45);
  border-radius: 999px;
  margin-bottom: 22px;
}
.banner-h-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.banner-h-title em {
  font-style: italic;
  color: var(--brand-peach);
}
.banner-h-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}
@media (max-width: 900px) {
  .banner-h { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .banner-h-photo { min-height: 240px; max-height: 280px; }
  .banner-h-photo img { aspect-ratio: 16/9; object-position: center 25%; }
  .banner-h-overlay { background: linear-gradient(180deg, transparent 50%, rgba(45,45,68,0.85) 100%); }
  .banner-h-content .container { padding: 40px 24px; }
}

/* ============================================================
   GALERIA CONSULTÓRIO
   ============================================================ */
.gallery-section { padding: 96px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #F4EFE9;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 36px -16px rgba(45,45,68,0.32); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(45,45,68,0.78);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
}
.gallery-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.gallery-item:nth-child(2) { grid-column: 4 / span 3; grid-row: 1 / span 1; }
.gallery-item:nth-child(3) { grid-column: 4 / span 3; grid-row: 2 / span 1; }
.gallery-item:nth-child(4) { grid-column: 1 / span 3; grid-row: 3 / span 1; }
.gallery-item:nth-child(5) { grid-column: 4 / span 3; grid-row: 3 / span 1; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / span 1; grid-row: 3 / span 1; }
  .gallery-item:nth-child(3) { grid-column: 2 / span 1; grid-row: 3 / span 1; }
  .gallery-item:nth-child(4) { grid-column: 1 / span 1; grid-row: 4 / span 1; }
  .gallery-item:nth-child(5) { grid-column: 2 / span 1; grid-row: 4 / span 1; }
}
@media (max-width: 600px) {
  .gallery-section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 12px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: 1; grid-row: auto; }
  .gallery-item:nth-child(1) { height: 280px; }
}

/* ============================================================
   CTA FINAL — REDESIGN v2 (mapa + 1 card consolidado)
   ============================================================ */
.cta-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* MAPA */
.contact-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(135deg, rgba(232,165,186,0.18), rgba(107,108,160,0.42));
  border: 1px solid rgba(232,165,186,0.22);
}
.contact-map .map-iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.contact-map-facade {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(45,45,68,0.10), rgba(45,45,68,0.36)),
              radial-gradient(circle at 30% 30%, rgba(232,165,186,0.30), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(107,108,160,0.40), transparent 55%);
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  transition: filter 0.3s ease;
}
.contact-map-facade:hover { filter: brightness(1.08); }
.contact-map-pin {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.28);
}
.contact-map-label {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.contact-map-action {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.08);
}

/* CARD CONSOLIDADO */
.contact-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 24px 60px -28px rgba(45,45,68,0.45);
}
.contact-card-head {
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(107,108,160,0.10);
}
.contact-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(107,108,160,0.10);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: #2D2D44;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.contact-card-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(45,45,68,0.62);
  margin: 0;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #FAF7F2;
  border: 1px solid rgba(107,108,160,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.contact-row:not(.contact-row-whatsapp) {
  cursor: default;
}
.contact-row-whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.10), rgba(107,108,160,0.04));
  border-color: rgba(37,211,102,0.22);
  cursor: pointer;
}
.contact-row-whatsapp:hover {
  border-color: rgba(37,211,102,0.45);
  transform: translateX(2px);
  box-shadow: 0 10px 24px -14px rgba(37,211,102,0.40);
}
.contact-row-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(107,108,160,0.10);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-row-icon-wa {
  background: #25D366;
  color: #FFFFFF;
}
.contact-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-row-text strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #2D2D44;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.contact-row-text span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(45,45,68,0.62);
  line-height: 1.45;
}
.contact-row-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  margin-top: 6px;
  width: fit-content;
  letter-spacing: 0.02em;
  transition: gap 0.3s ease;
}
.contact-row-link:hover { gap: 8px; }
.contact-row-arrow {
  align-self: center;
  color: rgba(45,45,68,0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-row-whatsapp:hover .contact-row-arrow {
  transform: translateX(3px);
  color: #25D366;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(107,108,160,0.16);
}
.contact-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(107,108,160,0.08);
  padding: 5px 10px;
  border-radius: 999px;
}

.contact-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach, #E8A5BA));
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 14px 32px -12px rgba(107,108,160,0.55);
}
.contact-card-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px -14px rgba(107,108,160,0.65);
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-map { min-height: 320px; }
  .contact-map-facade { min-height: 320px; }
  .contact-map .map-iframe { min-height: 320px; }
}
@media (max-width: 640px) {
  .contact-card { padding: 24px 22px; gap: 20px; }
  .contact-card-title { font-size: 24px; }
  .contact-row { padding: 12px 14px; gap: 12px; }
  .contact-row-icon { width: 34px; height: 34px; }
  .contact-row-text strong { font-size: 14px; }
  .contact-row-text span { font-size: 12.5px; }
  .contact-map-label { font-size: 22px; }
  .contact-map-pin { width: 60px; height: 60px; }
}

/* ============================================================
   FOOTER ENRICHED (Instagram, Doctoralia, social)
   ============================================================ */
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.footer-brand p.footer-credentials {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 16px 0 20px;
}
.footer-brand p.footer-credentials strong {
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  width: fit-content;
}
.footer-social-link:hover {
  background: rgba(232,165,186,0.12);
  border-color: rgba(232,165,186,0.5);
  color: var(--brand-peach);
  transform: translateX(2px);
}
.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,165,186,0.22);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.footer-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--brand-peach); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   ESPECIALIDADES CARROSSEL
   ============================================================ */
.specialties-carousel {
  position: relative;
  margin-top: 40px;
}
.specialties-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.specialties-track::-webkit-scrollbar { display: none; }
.specialties-track .specialty-card {
  scroll-snap-align: start;
  min-width: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.specialties-track .specialty-card .specialty-desc { flex: 1; }
.specialties-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 22px -8px rgba(107, 108, 160, 0.55);
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}
.specialties-arrow:hover { background: var(--brand-primary-hover, #4F507D); transform: translateY(-50%) scale(1.06); }
.specialties-arrow:disabled { opacity: 0; pointer-events: none; }
.specialties-arrow-prev { left: -24px; }
.specialties-arrow-next { right: -24px; }
.specialties-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.specialties-dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(107, 108, 160, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.specialties-dot.is-active {
  background: var(--brand-primary);
  width: 44px;
}

@media (max-width: 1024px) {
  .specialties-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .specialties-arrow-prev { left: -16px; }
  .specialties-arrow-next { right: -16px; }
}
@media (max-width: 640px) {
  .specialties-track { grid-auto-columns: 88%; gap: 16px; }
  .specialties-arrow { width: 42px; height: 42px; }
  .specialties-arrow-prev { left: 4px; }
  .specialties-arrow-next { right: 4px; }
}

/* ============================================================
   GALERIA SIMPLES (3 fotos lado a lado, sem captions)
   ============================================================ */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #F4EFE9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -16px rgba(45, 45, 68, 0.32);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-photo:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .gallery-row { grid-template-columns: 1fr; gap: 12px; }
  .gallery-photo { aspect-ratio: 16/10; }
}

/* ============================================================
   ABOUT BULLETS (formação simplificada)
   ============================================================ */
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(107, 108, 160, 0.10);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #2D2D44;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.about-bullet:hover {
  border-color: rgba(107, 108, 160, 0.25);
  transform: translateX(2px);
}
.about-bullet strong {
  font-weight: 600;
  color: var(--brand-primary);
}
.about-bullet-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(107, 108, 160, 0.10);
  color: var(--brand-primary);
  margin-top: 1px;
}
.about-bullet-star {
  background: linear-gradient(135deg, rgba(232, 165, 186, 0.08) 0%, rgba(107, 108, 160, 0.05) 100%);
  border-color: rgba(232, 165, 186, 0.30);
}
.about-bullet-star .about-bullet-mark {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-peach, #E8A5BA));
  color: #FFFFFF;
}
.about-bullet-star strong {
  color: var(--brand-primary);
}
@media (max-width: 640px) {
  .about-bullet { font-size: 14.5px; padding: 12px 16px; gap: 12px; }
  .about-bullet-mark { width: 24px; height: 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { flex-direction: column; }
  .footer-social-link { width: 100%; justify-content: flex-start; }
}
