/* ============================================================
   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: #C97B5A;
  --brand-primary-hover: #B56A49;
  --brand-primary-light: rgba(201, 123, 90, 0.12);
  --brand-peach: #ECB08C;
  --brand-peach-warm: #D8886C;
  --brand-sand: #F4E5C6;
  --brand-sand-bg: #FAF3E8;
  --brand-cream: #FDF8F2;
  --brand-cream-warm: #FFFCF8;
  --brand-cream-warmer: #FDF5EA;
  --brand-cream-warmest: #FAF0E0;
  --brand-teal: #3A728E;
  --brand-teal-mid: #4694A6;
  --brand-teal-light: #99CCCC;
  --brand-text-dark: #2A2A2A;
  --brand-text-medium: #5A5A5A;
  --brand-text-soft: #6B5A50;
  --brand-text-softer: #7A6A60;
  --brand-text-muted: #8A7A70;
  --brand-dark-1: #2A3A42;
  --brand-dark-2: #1E2A30;
  --brand-dark-footer: #1A2830;

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

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

  --shadow-sm: 0 2px 16px rgba(42, 42, 42, 0.05);
  --shadow-md: 0 8px 32px rgba(201, 123, 90, 0.20);
  --shadow-lg: 0 16px 48px rgba(201, 123, 90, 0.28);
  --shadow-warm: 0 8px 28px rgba(201, 123, 90, 0.36);
  --shadow-warm-lg: 0 12px 36px rgba(201, 123, 90, 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(201, 123, 90, 0.35);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--brand-primary);
  background: rgba(201, 123, 90, 0.06);
}

.btn-outline-teal {
  background: transparent;
  color: var(--brand-teal);
  border: 2px solid rgba(58, 114, 142, 0.30);
  font-weight: 600;
  padding: 14px 24px;
  font-size: 15px;
}
.btn-outline-teal:hover {
  border-color: var(--brand-teal);
  background: rgba(58, 114, 142, 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(236, 176, 140, 0.35);
}
.btn-peach:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(236, 176, 140, 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(201, 123, 90, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(201, 123, 90, 0.25);
}
.btn-pill-terra:hover { background: var(--brand-primary); color: white; }
.btn-pill-teal {
  background: rgba(58, 114, 142, 0.12);
  color: var(--brand-teal);
  border: 1px solid rgba(58, 114, 142, 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(201, 123, 90, 0.14);
  box-shadow: 0 2px 24px rgba(42, 42, 42, 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(201, 123, 90, 0.12);
  padding: 16px 24px 28px;
  box-shadow: 0 8px 32px rgba(42, 42, 42, 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(201, 123, 90, 0.08);
}
.nav-mobile-menu .btn { margin-top: 18px; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #FFFCF8 0%, #FDF5EA 45%, #FAF0E0 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(236, 176, 140, 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(58, 114, 142, 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(201, 123, 90, 0.14);
  border: 1px solid rgba(201, 123, 90, 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(201, 123, 90, 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(42, 42, 42, 0.12);
  border: 1px solid rgba(201, 123, 90, 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(58, 114, 142, 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(201, 123, 90, 0.10);
  border-radius: 9999px;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 123, 90, 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(236, 176, 140, 0.15);
  border-color: rgba(236, 176, 140, 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-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(201, 123, 90, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(201, 123, 90, 0.16);
  border-color: rgba(201, 123, 90, 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(201, 123, 90, 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(42, 42, 42, 0.14);
  border: 1px solid rgba(201, 123, 90, 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(201, 123, 90, 0.06);
  border: 1px solid rgba(201, 123, 90, 0.14);
}
.pillar-teal {
  background: rgba(58, 114, 142, 0.06);
  border: 1px solid rgba(58, 114, 142, 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(201, 123, 90, 0.10);
  box-shadow: 0 4px 20px rgba(42, 42, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.specialty-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(201, 123, 90, 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(201, 123, 90, 0.12), transparent 70%); }
.specialty-teal .specialty-corner { background: radial-gradient(ellipse at top right, rgba(58, 114, 142, 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(201, 123, 90, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(201, 123, 90, 0.22);
}
.specialty-teal .specialty-pill {
  background: rgba(58, 114, 142, 0.12);
  color: var(--brand-teal);
  border: 1px solid rgba(58, 114, 142, 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(201, 123, 90, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 123, 90, 0.12);
}
.specialties-note strong { color: var(--brand-text-soft); }

/* === SER 360 === */
.ser360-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.ser360-step {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.ser360-step:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(236, 176, 140, 0.30);
  transform: translateY(-4px);
}
.ser360-num {
  width: 44px; height: 44px;
  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: 15px;
  color: white;
}
.ser360-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.ser360-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.ser360-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}
.ser360-arrow {
  position: absolute;
  top: 50%; right: -12px;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(201, 123, 90, 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(201, 123, 90, 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); }

.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(201, 123, 90, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(201, 123, 90, 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: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(201, 123, 90, 0.20);
  aspect-ratio: 3/4;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.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(58, 114, 142, 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-title { text-align: left; }
.about-text {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--brand-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text:last-of-type { margin-bottom: 32px; }

.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(201, 123, 90, 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(201, 123, 90, 0.14);
  border-color: rgba(201, 123, 90, 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; }
.faq-item {
  border-bottom: 1px solid rgba(201, 123, 90, 0.12);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-text-dark);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { color: var(--brand-primary); }
.faq-chevron {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 123, 90, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 0.3s ease;
}
.faq-item[open] .faq-chevron {
  background: var(--brand-primary);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 52px 26px 0;
}
.faq-answer p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--brand-text-soft);
  line-height: 1.8;
}

/* === 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(236, 176, 140, 0.08), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(58, 114, 142, 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.30);
}
.footer-disclaimer { color: rgba(255, 255, 255, 0.25); }

.footer-by {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}
.footer-by-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 9999px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.footer-by-link:hover { opacity: 1; }
.footer-by-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-by-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* === 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(3, 1fr); }
  .ser360-step:nth-child(3) .ser360-arrow,
  .ser360-step:nth-child(5) .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; }
}

/* === DISCLAIMER ATENDIMENTO PARTICULAR (FILTRO DE LEAD) === */
p.cta-particular-note {
  font-size: 13.5px;
}
.cta-particular-note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 11px 15px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brand-text-medium);
  line-height: 1.45;
  background: var(--brand-cream-warmer);
  border-left: 3px solid var(--brand-primary);
  border-radius: 10px;
  box-sizing: border-box;
}
.cta-particular-note svg {
  flex-shrink: 0;
  color: var(--brand-primary);
}
.cta-particular-note strong {
  color: var(--brand-primary-hover);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brand-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.cta-particular-note.is-centered {
  margin-left: auto;
  margin-right: auto;
}
.cta-particular-note.is-on-dark {
  background: rgba(255, 255, 255, 0.94);
  border-left-color: var(--brand-peach);
  color: var(--brand-text-dark);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.cta-particular-note.is-on-dark svg {
  color: var(--brand-primary-hover);
}
.cta-particular-note.is-compact {
  font-size: 12px;
  padding: 8px 11px;
  margin-top: 12px;
  gap: 7px;
  border-radius: 8px;
}
p.cta-particular-note.is-compact { font-size: 12px; }
.cta-particular-note.is-compact strong { text-decoration-thickness: 1.5px; }

/* Tablet */
@media (max-width: 900px) {
  .cta-particular-note {
    font-size: 13px;
    padding: 10px 13px;
    gap: 9px;
  }
  p.cta-particular-note { font-size: 13px; }
}

/* Mobile */
@media (max-width: 600px) {
  .cta-particular-note {
    font-size: 12.5px;
    padding: 10px 12px;
    gap: 8px;
    margin-top: 14px;
  }
  p.cta-particular-note { font-size: 12.5px; }
  .cta-particular-note strong { text-decoration-thickness: 1.5px; }
  .cta-particular-note.is-compact {
    font-size: 11.5px;
    padding: 7px 10px;
  }
  p.cta-particular-note.is-compact { font-size: 11.5px; }
}

@media (max-width: 380px) {
  .cta-particular-note { font-size: 12px; padding: 9px 11px; }
  p.cta-particular-note { font-size: 12px; }
}
