/* ===========================================================
   Clínica Vértice — design system
   Petrol-teal + warm cream + charcoal · Fraunces / Inter
   =========================================================== */

:root {
  --teal:      #0E5A5E;
  --teal-700:  #0A4548;
  --teal-300:  #5E9B9B;
  --teal-100:  #DCEBEA;
  --gold:      #C8912A;
  --gold-soft: #E0B33A;
  --ink:       #1C2A2B;
  --muted:     #5C6C6C;
  --cream:     #F6F2EA;
  --cream-2:   #EFE9DD;
  --surface:   #FFFFFF;
  --line:      #E6E0D4;

  --maxw: 1180px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(16,40,40,.06);
  --shadow:    0 14px 40px rgba(16,40,40,.10);
  --shadow-lg: 0 30px 70px rgba(16,40,40,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.32rem; }
p  { color: var(--muted); }
a  { color: var(--teal); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section   { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm{ padding: clamp(48px, 6vw, 80px) 0; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-white  { background: var(--surface); }
.bg-teal   { background: var(--teal); color: #EAF3F2; }
.bg-teal h2,.bg-teal h3 { color: #fff; }
.bg-teal p { color: #C7DEDC; }

/* ---------- tags / eyebrows ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal);
  background: var(--teal-100); padding: 6px 14px; border-radius: 100px;
}
.bg-teal .eyebrow { background: rgba(255,255,255,.12); color: #BFE3E0; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px,5vw,56px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }
.divider { width: 54px; height: 3px; border-radius: 3px; background: var(--gold-soft); margin: 18px auto 0; }
.section-head.left .divider { margin-left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .98rem; padding: 14px 26px;
  border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b07f1f; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }

/* ===========================================================
   NAVIGATION
   =========================================================== */
.nav-overlay { position: fixed; inset: 0; background: rgba(16,34,34,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 90; }
.nav-overlay.show { opacity: 1; visibility: visible; }

.navbar { position: sticky; top: 0; z-index: 100; transition: background .3s, box-shadow .3s, padding .3s; padding: 14px 0; }
.navbar.scrolled { background: rgba(246,242,234,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 8px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.32rem; color: var(--ink); font-weight: 600; }
.nav-logo strong { color: var(--teal); font-weight: 600; }
.nav-mark { flex: none; border-radius: 9px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: 9px 14px; border-radius: 100px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--teal); background: var(--teal-100); }
.nav-link.active, .has-drop.active > .nav-link { color: var(--teal); }
.has-drop.active > .nav-link::after,
.nav-links > li > .nav-link.active::after {
  content: ''; position: absolute;
}
.nav-cta {
  font-weight: 600; font-size: .95rem; color: #fff; background: var(--teal);
  padding: 10px 20px; border-radius: 100px; margin-left: 8px; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }
.caret { transition: transform .25s; }

/* dropdowns */
.has-drop { position: relative; }
.dropdown {
  list-style: none; position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 248px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s var(--ease); z-index: 50;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-drop:hover .caret { transform: rotate(180deg); }
.drop-link { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-size: .94rem; font-weight: 500; transition: background .18s, color .18s; }
.drop-link:hover { background: var(--cream); color: var(--teal); }
.drop-link.active { color: var(--teal); background: var(--teal-100); }
.drop-all { color: var(--teal); font-weight: 600; margin-top: 4px; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
    background: var(--cream); flex-direction: column; align-items: stretch; gap: 2px;
    padding: 92px 22px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .32s var(--ease); overflow-y: auto; z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link, .nav-cta { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 13px 16px; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .has-drop { display: flex; flex-direction: column; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; background: transparent; padding: 0 0 6px 10px; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-drop.open .dropdown { max-height: 460px; }
  .has-drop.open .caret { transform: rotate(180deg); }
}

/* ===========================================================
   HERO (home)
   =========================================================== */
.hero { position: relative; padding: clamp(46px,7vw,88px) 0 clamp(56px,8vw,96px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -18%; right: -8%; width: 52vw; max-width: 720px; aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, var(--teal-100), transparent 62%); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,64px); align-items: center; }
.hero-copy h1 { margin: 16px 0 18px; }
.hero-copy h1 em { font-style: italic; color: var(--teal); }
.hero-copy .lead { font-size: 1.16rem; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--font-head); font-size: 1.7rem; color: var(--teal); font-weight: 600; }
.hero-meta small { display: block; color: var(--muted); font-size: .86rem; }

/* hero visual = 2x2 collage of the four specialists (illustrates "vários especialistas") */
.hero-team { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.ht-tile { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1.15; box-shadow: var(--shadow); }
.ht-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ht-tile:nth-child(2n) { transform: translateY(30px); }
.ht-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; color: #fff;
  background: linear-gradient(to top, rgba(8,34,34,.88), rgba(8,34,34,.45) 55%, transparent); }
.ht-tile figcaption strong { display: block; font-family: var(--font-head); font-size: .92rem; line-height: 1.2; }
.ht-tile figcaption span { font-size: .76rem; color: #BFE3E0; font-weight: 500; }

/* trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.trust-strip .ts-item { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink); font-size: .96rem; }
.trust-strip .ts-item svg { width: 22px; height: 22px; color: var(--teal); flex: none; }

/* ===========================================================
   GRIDS & CARDS
   =========================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* service card */
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-100); color: var(--teal); display: grid; place-items: center; margin-bottom: 18px; }
.svc-ico svg { width: 27px; height: 27px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: .98rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.svc-by { font-size: .84rem; color: var(--muted); }
.svc-by a { font-weight: 600; }
.svc-link { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 5px; }
.svc-link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* professional card */
.pro-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pro-photo { aspect-ratio: 1/1; display: grid; place-items: center; position: relative; }
.pro-photo .monogram { font-family: var(--font-head); font-size: 3.2rem; font-weight: 600; color: #fff; }
.pro-photo::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.16) 1.3px, transparent 1.4px); background-size: 18px 18px; }

/* avatar photos (replace monograms when a real image exists) */
.pro-photo img, .profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.profile-photo img { border-radius: var(--r-lg); }
.pro-photo:has(img)::after, .profile-photo:has(img)::after { display: none; }
img.mini-av { display: block; object-fit: cover; object-position: center top; padding: 0; }
.pro-info { padding: 22px 24px 26px; }
.pro-info h3 { margin-bottom: 3px; }
.pro-role { color: var(--teal); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.pro-info p { font-size: .94rem; }
.pro-card .pro-link { margin-top: 16px; font-weight: 600; font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }
.pro-link svg { width: 15px; height: 15px; transition: transform .2s; }
.pro-card:hover .pro-link svg { transform: translateX(3px); }

/* photo gradients (rotated per card via inline style or nth-child) */
.g-teal  { background: linear-gradient(150deg,#0E5A5E,#0A4548); }
.g-sage  { background: linear-gradient(150deg,#3E7C74,#21564F); }
.g-gold  { background: linear-gradient(150deg,#C8912A,#9A6B16); }
.g-slate { background: linear-gradient(150deg,#3D5A66,#243B44); }

/* feature / value items */
.feat { background: var(--surface); border-radius: var(--r); padding: 28px 26px; border: 1px solid var(--line); height: 100%; }
.feat .feat-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--teal-100); color: var(--teal); margin-bottom: 16px; }
.feat .feat-ico svg { width: 24px; height: 24px; }
.feat h3 { font-size: 1.16rem; margin-bottom: 7px; }
.feat p { font-size: .96rem; }

/* testimonials */
.tst-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; height: 100%; }
.stars { color: var(--gold-soft); letter-spacing: 2px; margin-bottom: 12px; }
.tst-text { color: var(--ink); font-size: 1.02rem; font-style: italic; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tst-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 600; }
.tst-who strong { display: block; font-size: .96rem; }
.tst-who span { font-size: .84rem; color: var(--muted); }

/* ===========================================================
   INNER PAGE HEADER (breadcrumb hero)
   =========================================================== */
.page-hero { background: var(--teal); color: #fff; padding: clamp(48px,7vw,84px) 0 clamp(40px,6vw,64px); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -6%; width: 40vw; max-width: 520px; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,255,255,.10), transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: #BFE3E0; margin-bottom: 16px; }
.crumb a { color: #BFE3E0; }
.crumb a:hover { color: #fff; }
.crumb span { opacity: .6; }
.page-hero h1 { color: #fff; max-width: 16em; }
.page-hero .ph-sub { color: #C7DEDC; font-size: 1.1rem; margin-top: 14px; max-width: 40em; }
.page-hero .eyebrow { background: rgba(255,255,255,.12); color: #BFE3E0; margin-bottom: 16px; }

/* ===========================================================
   SERVICE DETAIL PAGE
   =========================================================== */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.prose h2 { margin: 34px 0 14px; }
.prose h3 { margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; font-size: 1.05rem; }
.prose ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--muted); }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-soft); }
.prose ul li strong { color: var(--ink); }

.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; position: sticky; top: 90px; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 1.18rem; margin-bottom: 14px; }
.side-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.side-row:last-of-type { border-bottom: none; }
.side-row span:first-child { color: var(--muted); }
.side-row span:last-child { font-weight: 600; }
.side-card .btn { width: 100%; justify-content: center; margin-top: 18px; }
.side-pro { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.side-pro .mini-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 600; flex: none; }
.side-pro small { color: var(--muted); display: block; font-size: .82rem; }
.side-pro strong { font-size: .95rem; }

/* ===========================================================
   PROFILE PAGE
   =========================================================== */
.profile-top { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.profile-photo { aspect-ratio: 1/1.1; border-radius: var(--r-lg); display: grid; place-items: center; position: relative; box-shadow: var(--shadow); }
.profile-photo .monogram { font-family: var(--font-head); font-size: 4.2rem; color: #fff; font-weight: 600; }
.profile-photo::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); background-image: radial-gradient(circle, rgba(255,255,255,.15) 1.4px, transparent 1.5px); background-size: 20px 20px; }
.profile-intro .pro-role { font-size: 1rem; }
.profile-intro h1 { margin: 6px 0 14px; }
.profile-intro .lead { font-size: 1.12rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.chip { background: var(--teal-100); color: var(--teal); font-size: .82rem; font-weight: 600; padding: 6px 13px; border-radius: 100px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cred-list { list-style: none; }
.cred-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); }
.cred-list li:last-child { border-bottom: none; }
.cred-list li::before { content: ''; position: absolute; left: 2px; top: 18px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230E5A5E' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.cred-list li strong { display: block; color: var(--ink); }
.cred-list li small { color: var(--muted); }

/* ===========================================================
   BOOKING
   =========================================================== */
.booking-pro { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.booking-pro .mini-av { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 600; flex: none; font-size: 1.3rem; }
.booking-pro .bp-info { flex: 1; min-width: 180px; }
.booking-pro .bp-info strong { font-size: 1.05rem; }
.booking-pro .bp-info span { display: block; color: var(--muted); font-size: .9rem; }
.calendly-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.calendly-inline-widget { min-width: 320px; height: 660px; }
.book-note { font-size: .9rem; color: var(--muted); background: var(--cream-2); border-radius: var(--r-sm); padding: 14px 18px; display: flex; gap: 10px; }
.book-note svg { width: 20px; height: 20px; color: var(--teal); flex: none; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .98rem; background: #fff; color: var(--ink); transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); }
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: var(--teal); color: #fff; border-radius: var(--r); padding: 32px 30px; }
.contact-info-card h3 { color: #fff; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 20px; }
.ci-row svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.ci-row strong { display: block; }
.ci-row span, .ci-row a { color: #C7DEDC; }
.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }
.map-placeholder { position: relative; height: 300px; margin-top: 24px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, var(--teal-100), var(--cream-2)); display: grid; place-items: center; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(0deg, transparent 0 38px, rgba(14,90,94,.12) 38px 40px), repeating-linear-gradient(90deg, transparent 0 38px, rgba(14,90,94,.12) 38px 40px); }
.map-placeholder .mp-pin { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50% 50% 50% 0; background: var(--teal); transform: rotate(-45deg); display: grid; place-items: center; box-shadow: var(--shadow); }
.map-placeholder .mp-pin svg { transform: rotate(45deg); width: 22px; height: 22px; color: #fff; }
.map-placeholder .mp-label { position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 1; background: #fff; border-radius: 10px; padding: 10px 14px; font-size: .9rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ===========================================================
   ACCORDION (FAQ / approach)
   =========================================================== */
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.acc-q .pm { flex: none; width: 22px; height: 22px; position: relative; }
.acc-q .pm::before, .acc-q .pm::after { content: ''; position: absolute; background: var(--teal); border-radius: 2px; transition: .25s; }
.acc-q .pm::before { top: 10px; left: 2px; width: 18px; height: 2.5px; }
.acc-q .pm::after { left: 10px; top: 2px; width: 2.5px; height: 18px; }
.acc-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-item.open .acc-a { max-height: 420px; }
.acc-a p { padding: 0 22px 20px; }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band { background: linear-gradient(135deg, var(--teal), var(--teal-700)); color: #fff; border-radius: var(--r-lg); padding: clamp(36px,5vw,56px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C7DEDC; margin-top: 8px; max-width: 34em; }

/* floating WhatsApp */
.float-wa { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; font-weight: 600; font-size: .92rem; padding: 12px 18px; border-radius: 100px; box-shadow: var(--shadow); transition: transform .2s; }
.float-wa:hover { transform: translateY(-3px); }
.float-wa svg { width: 20px; height: 20px; }

/* ===========================================================
   FADE-IN
   =========================================================== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.in { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: .08s; }
.fade-in.d2 { transition-delay: .16s; }
.fade-in.d3 { transition-delay: .24s; }
.fade-in.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; transition: none; } }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #102A2B; color: #C7D6D5; padding: clamp(52px,7vw,76px) 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.26rem; color: #fff; margin-bottom: 14px; }
.footer-logo strong { color: #fff; font-weight: 600; }
.footer-brand p { color: #9FB6B5; font-size: .94rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social .soc { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #C7D6D5; transition: .2s; }
.footer-social .soc:hover { background: var(--teal); color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #9FB6B5; font-size: .93rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: #9FB6B5; font-size: .92rem; margin-bottom: 12px; display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { color: var(--teal-300); flex: none; margin-top: 3px; }
.footer-contact a { color: #9FB6B5; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #84A09F; }
.vd-credit { color: #BFE3E0; display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.vd-credit:hover { color: #fff; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-team { max-width: 420px; order: -1; margin-bottom: 30px; }
  .detail-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .profile-top { grid-template-columns: 1fr; }
  .profile-photo { max-width: 280px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { text-align: center; justify-content: center; }
  .trust-strip .container { justify-content: flex-start; gap: 14px 24px; }
}
