﻿/* ═══════════════════════════════════════════════════════
   NEW CLINIC — Design System Partilhado
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --primary:       #2C4A3E;
  --primary-dark:  #1e3328;
  --primary-deep:  #1C2E26;
  --primary-light: #F0EAE0;
  --primary-glow:  rgba(44,74,62,.25);
  --gold:          #B8885A;
  --gold-lt:       #D4A876;
  --gold-dark:     #9a7248;
  --accent:        #E9E7E4;
  --dark:          #1C2E26;
  --dark-2:        #1e3328;
  --dark-3:        #2C4A3E;
  --text:          #1C2E26;
  --text-2:        #4A5E56;
  --text-muted:    #4A5E56;
  --text-light:    #7A9088;
  --white:         #FDFAF6;
  --bg:            #F8F4EE;
  --bg-2:          #EFE9DF;
  --border:        #E2D8C8;
  --border-2:      #D4C8B4;
  --success:       #10B981;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --sh-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --sh-xl: 0 24px 64px rgba(0,0,0,.14);
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t:     .3s var(--ease);
  --max:   1200px;
  --header-h: 72px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── PROGRESS BAR ────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), #D4A876);
  transition: width .1s linear;
  pointer-events: none;
}

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-alt  { background: var(--white); }
.section-alt2 { background: var(--bg-2); }
.section-dark { background: var(--dark); color: var(--white); }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.tag-dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}

.section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600; line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; line-height: 1.75;
}
.section-header        { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.divider {
  width: 40px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), #D4A876);
  margin-bottom: 18px;
}
.divider.center { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #D4A876);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: var(--t); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12); opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,74,62,.4);
}

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: var(--white); color: var(--primary);
  border-color: var(--white);
}

.btn-outline-primary {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.08); color: var(--white);
  border-color: transparent;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }

.btn-icon {
  width: 42px; height: 42px; padding: 0;
  justify-content: center; border-radius: 50%;
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--dark-2); color: rgba(255,255,255,.65);
  font-size: 12.5px; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: inherit; transition: color .2s; }
.topbar a:hover { color: var(--primary); }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 12px; height: 12px; opacity: .5; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-soc {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border-radius: 6px;
  transition: var(--t); color: rgba(255,255,255,.65);
}
.topbar-soc:hover { background: var(--primary); color: var(--white); }
.topbar-soc svg { width: 12px; height: 12px; }

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between; height: var(--header-h);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img {
  height: 48px; width: auto;
  object-fit: contain; transition: transform .3s;
}
.nav-logo:hover img { transform: scale(1.03); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 8px 13px; border-radius: var(--r-sm);
  transition: var(--t); display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links a.active { color: var(--primary); }
.nav-links a .chevron {
  width: 12px; height: 12px; transition: transform .25s;
}
.dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-xl); min-width: 210px; padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(4px) scale(.97);
  transform-origin: top left;
  transition: opacity .2s, transform .2s, visibility 0s .2s;
  pointer-events: none; z-index: 200;
}
/* Bridge invisível que preenche o gap entre nav e dropdown */
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1); pointer-events: auto;
  transition: opacity .2s, transform .2s, visibility 0s 0s;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text);
  padding: 9px 12px; border-radius: var(--r-sm);
  transition: var(--t);
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-menu a .dm-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-light); border: 1.5px solid var(--primary);
  flex-shrink: 0; transition: background .2s;
}
.dropdown-menu a:hover .dm-dot { background: var(--primary); }

/* Nav CTA */
.nav-cta { margin-left: 10px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; border-radius: var(--r-sm);
  transition: background .2s;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: var(--white); overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  padding: 88px 24px 40px;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 18px; right: 20px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg);
  font-size: 20px; color: var(--text-muted);
  cursor: pointer; transition: var(--t);
}
.mobile-close:hover { background: var(--primary); color: var(--white); }
.mobile-nav-group { border-bottom: 1px solid var(--border); padding: 14px 0; }
.mobile-nav-group-title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-light);
  cursor: pointer; padding: 4px 0; margin-bottom: 0;
  user-select: none;
}
.mobile-nav-group-title:hover { color: var(--primary); }
.mob-chevron { flex-shrink: 0; transition: transform .25s ease; }
.mobile-nav-group.open .mob-chevron { transform: rotate(180deg); }
.mob-sub-wrapper { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mobile-nav-link {
  display: block; padding: 10px 0;
  font-size: 15px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--bg-2);
  transition: color .2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--primary); }
.mobile-sub-link {
  display: block; padding: 8px 16px;
  font-size: 14px; color: var(--text-muted);
  transition: color .2s;
}
.mobile-sub-link:hover { color: var(--primary); }

/* ── INFO BAR ────────────────────────────────────────── */
.info-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 18px 0;
}
.info-bar .container {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.info-item { display: flex; align-items: center; gap: 12px; }
.info-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.info-label { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
.info-value { font-size: 14px; font-weight: 600; color: var(--white); }

/* ── HERO (generic) ──────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .12; transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(44,74,62,.15) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(44,74,62,.2); animation: float var(--dur) ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); opacity: .4; }
  33%  { transform: translateY(-20px) translateX(10px); opacity: .7; }
  66%  { transform: translateY(10px) translateX(-8px); opacity: .3; }
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 60px 0;
}
.hero .hero-label {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.12);
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(44,74,62,.1);
  border: 1px solid rgba(44,74,62,.2);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600; line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-title em { font-style: normal; color: #D4A876; }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(44,74,62,.1); border: 1px solid rgba(44,74,62,.2);
  border-radius: var(--r-md); padding: 14px 20px; margin-top: 32px;
}
.hero-badge-icon { font-size: 22px; }
.hero-badge-title { font-size: 13px; font-weight: 700; color: var(--white); }
.hero-badge-sub { font-size: 12px; color: rgba(255,255,255,.55); }

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* Hero right cards */
.hero-cards { display: grid; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(10px);
  transition: var(--t);
  animation: slideInRight .6s var(--ease) both;
}
.hero-card:nth-child(1) { animation-delay: .1s; }
.hero-card:nth-child(2) { animation-delay: .2s; }
.hero-card:nth-child(3) { animation-delay: .3s; }
.hero-card:nth-child(4) { animation-delay: .4s; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(44,74,62,.35);
  transform: translateX(-4px);
}
.hero-card-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(44,74,62,.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; transition: background .25s;
}
.hero-card:hover .hero-card-icon { background: rgba(44,74,62,.25); }
.hero-card-title { font-size: 13px; font-weight: 600; color: var(--white); }
.hero-card-text  { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.cards-grid { display: grid; gap: 20px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border-2); border-radius: var(--r-md);
  padding: 28px; transition: var(--t); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), #D4A876);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover {
  transform: translateY(-5px); box-shadow: var(--sh-lg);
  border-color: rgba(44,74,62,.15);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; transition: var(--t);
}
.card:hover .card-icon { background: var(--primary); color: var(--white); transform: scale(1.08); }
.card-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.card-text  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.card-link  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600; color: var(--primary);
  margin-top: 16px; transition: gap .2s;
}
.card-link:hover { gap: 8px; }

/* Highlight cards */
.highlight-card {
  border-radius: var(--r-lg); padding: 48px;
  position: relative; overflow: hidden; color: var(--white);
}
.highlight-card-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-deep) 100%);
}
.highlight-card-dark {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}
.highlight-card .decor {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.highlight-card .decor-1 { width: 220px; height: 220px; top: -80px; right: -80px; }
.highlight-card .decor-2 { width: 120px; height: 120px; bottom: -40px; left: -20px; }
.highlight-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .55; margin-bottom: 12px; }
.highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; margin-bottom: 14px; line-height: 1.22;
}
.highlight-text { font-size: 14px; line-height: 1.75; opacity: .8; margin-bottom: 24px; }
.check-list { display: grid; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.check-item::before {
  content: '';
  flex-shrink: 0; width: 20px; height: 20px;
  background: rgba(255,255,255,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 50%;
}

/* ── PROCESS STEPS ───────────────────────────────────── */
.steps { display: grid; gap: 0; position: relative; }
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--text-muted);
  margin: 0 auto 20px;
  transition: var(--t); position: relative; z-index: 1;
}
.step.active .step-num,
.step:hover .step-num {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--primary-light);
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-text  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── ACCORDION ───────────────────────────────────────── */
.accordion { display: grid; gap: 12px; }
.acc-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow .25s;
}
.acc-item.open { box-shadow: var(--sh-md); border-color: rgba(44,74,62,.2); }
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; gap: 12px;
  transition: background .2s;
}
.acc-header:hover { background: var(--bg); }
.acc-title { font-size: 15px; font-weight: 600; }
.acc-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary);
  transition: transform .3s, background .25s;
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
  padding: 0 24px;
}
.acc-item.open .acc-body { padding: 0 24px 20px; }
.acc-body-inner { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
}
.testimonial-stars { color: #FBBF24; font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-2); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(44,74,62,.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600; color: var(--white); margin-bottom: 16px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── CONTACT CARDS ───────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 24px;
  text-align: left; transition: var(--t);
}
.contact-card:hover { background: rgba(255,255,255,.1); border-color: rgba(44,74,62,.3); }
.contact-card-icon { font-size: 22px; margin-bottom: 10px; }
.contact-card-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.contact-card-value { font-size: 14px; color: var(--white); }
.contact-card-value a { color: var(--primary); transition: opacity .2s; }
.contact-card-value a:hover { opacity: .8; }

/* ── FORM ────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%; font: inherit; font-size: 14px;
  color: var(--text); background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 16px; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,74,62,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 1px;
  accent-color: var(--primary); flex-shrink: 0;
}
.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.form-check a { color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg {
  padding: 14px 18px; border-radius: var(--r-sm);
  font-size: 14px; margin-top: 16px; display: none;
}
.form-msg.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; display: block; }
.form-msg.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* ── ACORDOS BADGES ──────────────────────────────────── */
.acordos-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.acordo-badge {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 9px 20px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  transition: var(--t);
}
.acordo-badge:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark); color: rgba(255,255,255,.6);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo a {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.92);
  padding: 9px 16px; border-radius: var(--r-sm);
  transition: opacity .25s;
}
.footer-logo a:hover { opacity: .82; }
.footer-logo img { height: 40px; width: auto; filter: none; opacity: 1; }
.footer-about { font-size: 14px; line-height: 1.75; opacity: .55; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-soc {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px; transition: var(--t);
}
.footer-soc:hover { background: var(--primary); color: var(--white); }
.footer-soc svg { width: 15px; height: 15px; }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-items { display: grid; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.footer-contact-icon { font-size: 14px; opacity: .4; margin-top: 1px; flex-shrink: 0; }
.footer-contact-text { color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-text a:hover { color: var(--primary); }

/* Footer dental SVG decoration */
.footer-dental-deco {
  padding: 32px 0 0;
  display: flex; justify-content: center;
  opacity: .06; overflow: hidden;
}
.footer-dental-deco svg { width: 100%; height: auto; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-phone-note {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 14px 0;
  font-size: 11px; color: rgba(255,255,255,.22);
  line-height: 1.7;
}

/* Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--primary-glow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: var(--t); transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--primary-glow); }

/* WhatsApp */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  animation: waFloat 3s ease-in-out infinite;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  animation: none; transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ── ANIMATIONS ──────────────────────────────────────── */
[data-anim] {
  opacity: 0; will-change: opacity, transform;
}
[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-36px); }
[data-anim="right"] { transform: translateX(36px); }
[data-anim="scale"] { transform: scale(.92); }
[data-anim="fade"]  { }

[data-anim].animated {
  animation: var(--anim-name, animUp) var(--anim-dur, .7s) var(--ease) both;
}
[data-anim="up"].animated    { --anim-name: animUp; }
[data-anim="left"].animated  { --anim-name: animLeft; }
[data-anim="right"].animated { --anim-name: animRight; }
[data-anim="scale"].animated { --anim-name: animScale; }
[data-anim="fade"].animated  { --anim-name: animFade; }

@keyframes animUp    { to { opacity:1; transform:translateY(0); } }
@keyframes animLeft  { to { opacity:1; transform:translateX(0); } }
@keyframes animRight { to { opacity:1; transform:translateX(0); } }
@keyframes animScale { to { opacity:1; transform:scale(1); } }
@keyframes animFade  { to { opacity:1; } }

[data-delay="1"] { animation-delay:.1s; }
[data-delay="2"] { animation-delay:.2s; }
[data-delay="3"] { animation-delay:.3s; }
[data-delay="4"] { animation-delay:.4s; }
[data-delay="5"] { animation-delay:.5s; }
[data-delay="6"] { animation-delay:.6s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid-4 { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .hero-inner { padding: 40px 0; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .highlight-card { padding: 32px 24px; }
  div:has(> .highlight-card) { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .info-bar .container { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 64px 0; }
  .social-strip { flex-wrap: wrap; gap: 10px; }
  .footer-phone-note { text-align: center; }
  .specialty-strip { padding: 32px 24px !important; }
  .hero-stats { gap: 16px; padding-top: 20px; }
  .about-badge-float { right: 0; bottom: 0; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

