/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --bg:      #eef3f8;
  --card:    rgba(255,255,255,.90);
  --card2:   rgba(255,255,255,.96);
  --text:    rgba(0,0,0,.85);
  --muted:   rgba(0,0,0,.55);
  --muted2:  rgba(0,0,0,.42);
  --line:    rgba(0,0,0,.12);

  --primary:  #09a7c8;
  --primary2: #0c6c86;
  --navy:     #0b2f5f;
  --glow:     0 0 0.9rem rgba(9,167,200,.25);

  --radius:  18px;
  --radius2: 24px;

  --shadow:  0 18px 60px rgba(0,0,0,.12);
  --shadow2: 0 12px 40px rgba(0,0,0,.09);

  --container: 1150px;

  /* Background gradient reutilizado em hero e sections */
  --bg-gradient:
    radial-gradient(1000px 600px at 20% 0%,  rgba(9,167,200,.10), transparent 55%),
    radial-gradient(900px  650px at 85% 10%, rgba(11,47,95,.07),  transparent 60%),
    radial-gradient(900px  700px at 60% 100%,rgba(9,167,200,.07), transparent 60%);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.hmj-nav-open,
body.hmj-modal-open { overflow: hidden; }

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin: 0 auto;
}

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.muted      { color: var(--muted); }
.tiny       { font-size: .9rem; color: var(--muted2); }
.mini-link  { color: var(--muted); }
.mini-link:hover { color: var(--text); }
.mini-title { margin: 0 0 .65rem; color: rgba(0,0,0,.80); }
.sep        { color: rgba(0,0,0,.25); }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  backdrop-filter: blur(12px);
  background: rgba(238,243,248,.88);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--muted);
}

.topbar__left,
.topbar__right {
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
}

.topbar i { color: rgba(0,0,0,.65); }
.topbar a { transition: color .18s ease; }
.topbar a:hover { color: var(--primary); }

/* =============================================
   HEADER & NAV
   ============================================= */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 36px;
  z-index: 60;
  background: rgba(238,243,248,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
}

.brand { display: flex; align-items: center; gap: .65rem; }

.brand__logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.15));
}

.nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
}

.nav__link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: .5rem .7rem;
  border-radius: 12px;
  transition: .2s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: rgba(0,0,0,.05); }

.nav__cta { margin-left: .2rem; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.04);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(0,0,0,.70);
  margin: 5px auto;
  border-radius: 999px;
}

/* Overlay do menu mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(100,130,160,.40);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 40;
}

body.hmj-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 600;
  border-radius: 14px;
  padding: .95rem 1.05rem;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--text);
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, #076882, #09a7c8);
  border-color: rgba(0,0,0,.08);
  box-shadow: var(--glow);
  color: #fff;
}
.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,104,130,.35);
}

.btn--ghost {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.12);
}
.btn--ghost:hover {
  background: rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: rgba(9,167,200,.30);
  box-shadow: var(--shadow2);
}

.btn--sm   { padding: .6rem .8rem; border-radius: 12px; font-size: .95rem; }
.btn--full  { width: 100%; justify-content: center; }

.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.05);
  color: var(--text);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.circle-btn:hover {
  background: rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: rgba(9,167,200,.30);
  box-shadow: var(--shadow2);
}

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, rgba(37,211,102,.7));
  color: white;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: visible;
}
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37,211,102,.45);
  opacity: 0;
  pointer-events: none;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 22px 55px rgba(37,211,102,.35);
}
.fab-whatsapp:hover::before {
  animation: fab-ring .55s ease-out forwards;
}
.fab-whatsapp:hover i {
  animation: fab-wiggle .4s ease forwards;
}
@keyframes fab-ring {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes fab-wiggle {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-14deg); }
  75%  { transform: rotate(11deg); }
  100% { transform: rotate(0deg); }
}
.fab-whatsapp i { font-size: 1.35rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 2.4rem 0 3rem;
  background: var(--bg-gradient);
  background-attachment: fixed;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}

.hero__text { padding-top: .2rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-weight: 600;
}
.badge i { color: var(--primary); }

.hero__title {
  margin: 1rem 0 .6rem;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

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

.hero__subtitle {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.hero__stats {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}

.stat {
  padding: .85rem .9rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  min-width: 140px;
}
.stat__num   { font-size: 1.2rem; font-weight: 800; display: block; }
.stat__label { color: var(--muted2); font-weight: 600; font-size: .85rem; }

.hero__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__card {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  padding: 1rem;
  box-shadow: var(--shadow2);
  max-width: 500px;
}

.hero__card-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .65rem 0;
}
.hero__card-row + .hero__card-row { border-top: 1px solid rgba(0,0,0,.10); }
.hero__card-row i { font-size: 1.2rem; color: var(--primary); margin-top: .1rem; }
.hero__card-row p { margin: .25rem 0 0; color: var(--muted); }

/* =============================================
   CAROUSEL
   ============================================= */
.carousel {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 620px;
  display: flex;
  flex-direction: column;
}

.carousel__track {
  display: flex;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.slide {
  width: 100%;
  flex: 0 0 100%;
  padding: .6rem;
}

.slide__card {
  border-radius: 18px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,0,0,.10);
  padding: .5rem;
}

/* Modificador: slide com grid interno (ex: slide de cards múltiplos) */
.slide__card--grid {
  display: grid;
  gap: 1rem;
}

.slide__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.slide__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,167,200,.18);
  border: 1px solid rgba(9,167,200,.25);
  box-shadow: var(--glow);
  flex-shrink: 0;
}
.slide__icon i { color: var(--primary2); font-size: 1.2rem; }

.slide__title h3 { margin: 0; font-size: 1.05rem; }
.slide__title p  { margin: .15rem 0 0; font-size: .95rem; color: var(--muted); }

.pill {
  display: inline-flex;
  padding: .45rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  margin-top: .9rem;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  margin-top: .75rem;
}
.video iframe { width: 100%; height: 100%; border: 0; }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 1rem 1rem;
}

.dots {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(0,0,0,.08);
  cursor: pointer;
  transition: .2s ease;
}
.dot.active {
  width: 22px;
  background: rgba(9,167,200,.9);
  border-color: rgba(9,167,200,.9);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--bg-gradient);
  background-attachment: fixed;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(0,0,0,.015), rgba(0,0,0,0)),
    var(--bg-gradient);
  background-attachment: fixed;
  border-top: 1px solid rgba(0,0,0,.08);
}

.section__head { margin-bottom: 1.6rem; }

.section__head h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  letter-spacing: -0.03em;
}

.section__head p { margin: 0; color: var(--muted); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.grid-2        { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-2--single { grid-template-columns: 1fr; }
.grid-2 + .grid-2,
.logos  + .card  { margin-top: 1.5rem; }

.list { list-style: none; padding: 0; margin: .2rem 0 0; }
.list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .45rem 0;
  color: var(--muted);
}
.list i { color: var(--primary); margin-top: .15rem; }

/* =============================================
   CARDS
   ============================================= */
.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  padding: 1.25rem;
  box-shadow: var(--shadow2);
}
.card h3 { margin: 0 0 .6rem; }
.card p  { color: var(--muted); line-height: 1.65; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.gallery__img {
  height: 170px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__cap {
  padding: .9rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.gallery__cap span { color: var(--muted2); font-weight: 600; font-size: .92rem; }

/* =============================================
   STRUCT GRID (Estrutura)
   ============================================= */
.struct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.struct-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.struct-mini {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.struct-mini__track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.struct-mini__slide {
  min-width: 100%;
  height: 100%;
}

.struct-mini__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.struct-mini:hover .struct-mini__slide img { transform: scale(1.04); }

.struct-mini__dots {
  position: absolute;
  bottom: .55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  z-index: 2;
}

.struct-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.30);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .25s;
}
.struct-dot.active { background: var(--primary); width: 18px; }

.struct-mini__zoom {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  opacity: 0;
  transition: opacity .2s;
  z-index: 2;
  pointer-events: none;
}
.struct-mini:hover .struct-mini__zoom { opacity: 1; }

.struct-card__body { padding: .65rem 1rem .75rem; }
.struct-card__title { margin: 0; font-size: 1rem; font-weight: 600; }

/* Lightbox */
#modal-lightbox { z-index: 200; }
#modal-lightbox .modal__dialog { width: min(860px, calc(100% - 1.6rem)); }

.lightbox__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .65rem;
  padding-right: 2.5rem;
}

.lightbox__img-wrap {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ecf0;
}

.lightbox__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .8rem;
}

.lightbox__dots { display: flex; gap: .4rem; }

/* =============================================
   CALLOUT
   ============================================= */
.callout {
  margin-top: 1.2rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius2);
  border: 1px solid rgba(9,167,200,.25);
  background:
    radial-gradient(600px 240px at 10% 10%, rgba(9,167,200,.12), transparent 55%),
    rgba(255,255,255,.80);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.callout h3 { margin: 0 0 .25rem; }
.callout p  { margin: 0; color: var(--muted); }

/* =============================================
   TEAM
   ============================================= */
.toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.input,
.select {
  display: flex;
  align-items: center;
  gap: .6rem;
  height: 2.5rem;
  padding: 0 .85rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.90);
  color: var(--muted);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:hover,
.select:hover {
  border-color: rgba(9,167,200,.40);
  box-shadow: var(--shadow2);
}

.input  { flex: 1; min-width: 200px; }
.select { flex: 0 0 auto; min-width: 220px; }

.input input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
}

.select select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 400;
  appearance: none;
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 1rem;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cards::-webkit-scrollbar        { height: 6px; }
.cards::-webkit-scrollbar-track  { background: rgba(0,0,0,.05); border-radius: 999px; }
.cards::-webkit-scrollbar-thumb  { background: rgba(0,0,0,.15); border-radius: 999px; }
.cards::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.25); }

.person {
  flex: 0 0 248px;
  scroll-snap-align: start;
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .2s ease;
}
.person:hover { transform: translateY(-2px); background: rgba(255,255,255,.97); }
.person img   { width: 100%; height: 180px; object-fit: cover; }

.person__body     { padding: 1rem; }
.person__body h3  { margin: 0 0 .25rem; font-size: 1.05rem; }
.person__body .muted { font-size: .72rem; }
.person__tags     { display: flex; gap: .45rem; flex-wrap: wrap; margin-top: .65rem; }
.tags-row         { flex-basis: 100%; display: flex; gap: .45rem; flex-wrap: wrap; }

.tag {
  padding: .35rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-weight: 700;
  font-size: .82rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service {
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  padding: 1.05rem 1.05rem 1.1rem;
  box-shadow: var(--shadow2);
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.service__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,167,200,.18);
  border: 1px solid rgba(9,167,200,.25);
  box-shadow: var(--glow);
  flex-shrink: 0;
}
.service__icon i { color: var(--primary2); font-size: 1.2rem; }

.service__body h3 { margin: 0 0 .2rem; }
.service__body p  { margin: 0 0 .75rem; color: var(--muted); }

.service__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.service-modal__header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .6rem;
}
.service-modal__header h3 { margin: 0; }
.service-modal__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,167,200,.18);
  border: 1px solid rgba(9,167,200,.25);
  box-shadow: var(--glow);
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary2);
}
/* =============================================
   CARDS DE MÉDICO (Consultas modal)
   ============================================= */
.doc-cards-scroll {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .5rem 0 .75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.doc-cards-scroll::-webkit-scrollbar        { height: 5px; }
.doc-cards-scroll::-webkit-scrollbar-track  { background: rgba(0,0,0,.05); border-radius: 999px; }
.doc-cards-scroll::-webkit-scrollbar-thumb  { background: rgba(0,0,0,.15); border-radius: 999px; }

.doc-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.doc-card__head {
  padding: .85rem 1rem .6rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.doc-card__head-top {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .45rem;
}

.doc-card__head-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40px;
}

.doc-card__photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid rgba(9,167,200,.25);
}

.exam-card__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}

.exam-card__title {
  font-size: 1rem;
}


.doc-card__name {
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.3;
}

.doc-card__cremec {
  font-size: .72rem;
  color: var(--muted);
  margin-top: .1rem;
}

.doc-card__rows {
  list-style: none;
  padding: .5rem .85rem .85rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.doc-card__row {
  font-size: .82rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  gap: .5rem;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.doc-card__row .schedule-item__hours { text-align: right; flex: 1; white-space: nowrap; }
.doc-card__row:last-child { border-bottom: none; }
.doc-card__row .schedule-item__label { font-size: .78rem; white-space: nowrap; }
.doc-card__row .svc-agendar-btn      { font-size: .78rem; padding: .25rem .6rem; }
.doc-card__row .svc-schedule-badge   { font-size: .75rem; }

.svc-search-wrap {
  position: relative;
  margin: .75rem 0 .25rem;
}
.svc-search-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .95rem;
  pointer-events: none;
}
.svc-search-input {
  width: 100%;
  padding: .55rem .9rem .55rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.8);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.svc-search-input:focus {
  border-color: var(--primary);
  box-shadow: var(--glow);
}
.svc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .5rem 0 .2rem;
}
.svc-filter-btn {
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: .18s ease;
  white-space: nowrap;
}
.svc-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary2);
}
.svc-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.svc-exam-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .2rem;
}
.svc-exam-tag {
  padding: .28rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(9,167,200,.35);
  background: rgba(9,167,200,.08);
  color: var(--primary2);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
}
.service-modal__list { margin: .6rem 0 0; }
.service-modal__list li { border-bottom: 1px solid rgba(0,0,0,.07); }
.svc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-wrap: wrap;
}
.svc-row:last-child { border-bottom: none; }
.list li.svc-row { color: inherit; justify-content: space-between; align-items: baseline; }
.svc-row__label { color: var(--muted); font-size: .93rem; flex-shrink: 0; }
.svc-row__value { font-weight: 700; font-size: .93rem; text-align: right; color: var(--text); }
.list li.svc-row .svc-row__value { font-weight: 700; color: var(--text); }
.btn-reveal-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #076882, #09a7c8);
  color: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: .35rem .75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  vertical-align: middle;
  margin-left: .4rem;
  line-height: 1;
  box-shadow: var(--glow);
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.btn-reveal-price:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,104,130,.35);
}
.btn-reveal-price:active { transform: translateY(1px); }
.price-value { margin-left: .4rem; color: var(--primary, #09a7c8); }
.btn-reveal-price i { color: #fff; margin-top: 0; }

/* ---- Service Modal: Sections ---- */
.svc-sections-list { padding: 0; margin: .6rem 0 0; list-style: none; }
.svc-section { padding: .9rem 0; list-style: none; }
.svc-section--bordered { border-top: 2px solid rgba(0,0,0,.14); }
.svc-section__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .4rem;
  margin-bottom: .5rem;
  position: relative;
}

.spec-info-btn {
  font-size: .72rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(0,0,0,.07);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.spec-info-btn:hover { background: rgba(0,0,0,.13); }

.spec-info-balloon {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,.13);
  padding: .75rem .9rem .65rem;
  max-width: 320px;
  width: max-content;
}
.spec-info-balloon__desc {
  font-size: .8rem;
  color: var(--text);
  margin: 0 0 .55rem;
  line-height: 1.5;
}
.spec-info-balloon__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.svc-section__title { font-weight: 700; font-size: .97rem; color: var(--text); }
.svc-section__img  { height: 70px; width: auto; border-radius: 6px; object-fit: contain; }
.svc-section__logo { height: 54px; width: auto; object-fit: contain; }
.svc-section__list { margin: 0; }
.svc-section__list li:last-child { border-bottom: none; }

.svc-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-top: .75rem;
}
.svc-photo-grid__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.svc-photo-grid__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.svc-photo-grid__wrap:hover .svc-photo-grid__img { transform: scale(1.04); }
.svc-photo-grid__zoom {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.svc-photo-grid__wrap:hover .svc-photo-grid__zoom { opacity: 1; }
.svc-convenio-logos { display: grid; grid-template-columns: repeat(9, 1fr); gap: .4rem; width: 100%; margin-top: .2rem; }
.svc-convenio-logos img { width: 100%; height: 40px; object-fit: contain; object-position: center; }
.svc-row--wa { display: flex; gap: .6rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.svc-row--wa:last-child { border-bottom: none; }
.svc-wa-icon { vertical-align: middle; }
.svc-wa-link { color: var(--primary); font-weight: 600; white-space: nowrap; transition: opacity .15s; }
.svc-wa-link:hover { opacity: .75; }
.svc-schedule-badge { display: inline-flex; align-items: center; gap: .3rem; color: var(--muted); font-size: .93rem; }
.svc-agendar-btn { margin-left: .4rem; }

/* =============================================
   CONVENIOS
   ============================================= */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
}

.logo-box {
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  padding: 1.1rem .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.75);
  font-weight: 800;
}

.logo-box--clickable {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.logo-box--clickable:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
  border-color: rgba(9,167,200,.40);
}
.logo-box--clickable:active { transform: translateY(0); }

.logo-box--empty { opacity: .45; cursor: default; }

.logo-box img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
}

.convenio-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}
.convenio-modal__logo {
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =============================================
   CONTACTS
   ============================================= */
.contact-list { display: flex; flex-direction: column; gap: .7rem; margin-top: .7rem; }

.contact-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem .9rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .18s ease;
}
.contact-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.97);
  border-color: rgba(9,167,200,.30);
  box-shadow: var(--shadow2);
}
.contact-item i    { color: var(--primary); font-size: 1.2rem; margin-top: .1rem; }
.contact-item span { color: var(--muted); font-weight: 700; }

.social { display: flex; gap: .65rem; margin-top: .9rem; }

.social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.social a:hover { background: rgba(0,0,0,.08); }

.map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  margin-top: .7rem;
  aspect-ratio: 16 / 9;
}
.map iframe { width: 100%; height: 100%; border: 0; }
.map + .btn,
.contact-item + .btn,
textarea + .btn { margin-top: .9rem; }

/* Schedule (Horários) */
.schedule-grid { display: flex; flex-direction: column; margin-top: .6rem; }
.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-wrap: wrap;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item__label { color: var(--muted); font-size: .93rem; }
.schedule-item__hours { font-weight: 600; font-size: .93rem; }

.hr {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 1.1rem 0;
}

.chips { display: flex; gap: .55rem; flex-wrap: wrap; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}
.chip:hover { background: rgba(0,0,0,.07); color: var(--text); }

/* =============================================
   FORMS
   ============================================= */
textarea,
input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: .8rem .85rem;
  outline: none;
  font-weight: 600;
}

textarea::placeholder,
input::placeholder { color: rgba(0,0,0,.35); font-weight: 600; }

.form             { display: flex; flex-direction: column; gap: .8rem; margin-top: .7rem; }
.form__row label  { display: block; margin-bottom: .35rem; color: var(--muted); font-weight: 800; font-size: .92rem; }
.form__actions    { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .3rem; }

/* =============================================
   TABS & STARS (Ouvidoria)
   ============================================= */
.tabs { display: flex; gap: .6rem; margin-top: .9rem; flex-wrap: wrap; }

.tab {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  color: var(--muted);
  padding: .55rem .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .15s ease;
}
.tab:hover {
  color: var(--text);
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}
.tab.active {
  color: var(--text);
  border-color: rgba(9,167,200,.35);
  background: rgba(9,167,200,.14);
}

.tabpanels   { margin-top: .9rem; }
.tabpanel    { display: none; }
.tabpanel.active { display: block; }

.stars { display: flex; gap: .35rem; margin-bottom: .7rem; }

.star {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  cursor: pointer;
  transition: transform .15s ease, background .18s ease, border-color .18s ease;
}
.star:hover {
  transform: scale(1.15);
  border-color: rgba(255,215,0,.50);
  background: rgba(255,215,0,.08);
}
.star:hover i   { color: rgba(200,160,0,.80); }
.star i         { font-size: 1.05rem; color: rgba(0,0,0,.45); transition: color .18s ease; }
.star.active    { border-color: rgba(255,215,0,.55); background: rgba(255,215,0,.10); }
.star.active i  { color: rgba(200,160,0,.95); }

/* =============================================
   SOBRE / NOSSA HISTÓRIA
   ============================================= */

/* Clearfix para a foto flutuante */
.about-story::after { content: ""; display: block; clear: both; }

.about-story__photo {
  float: left;
  width: 220px;
  aspect-ratio: 1 / 1;
  margin: .15rem 1.25rem .75rem 0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

/* Moldura em degradê */
.about-story__photo::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: linear-gradient(135deg,
    rgba(0,196,255,.55),
    rgba(0,255,198,.20),
    rgba(255,255,255,.10)
  );
  z-index: 0;
}

.about-story__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
  filter: saturate(1.05) contrast(1.02);
}

.about-story p              { margin: 0 0 .85rem; }
.about-story__more          { margin-top: .5rem; }
.about-story__more p:last-child { margin-bottom: 0; }

.about-story__toggle {
  display: block;
  width: fit-content;
  margin: .35rem auto 0;
  color: var(--text);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid rgba(0,0,0,.10);
  background: rgba(238,243,248,.92);
  backdrop-filter: blur(12px);
  padding: 2.2rem 0 1.1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer__brand img { height: 48px; width: auto; margin-bottom: .6rem; }
.footer__col h4    { margin: 0 0 .55rem; }
.footer__col ul    { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer__col li    { color: var(--muted); }
.footer__col li a  { transition: color .18s ease; }
.footer__col li a:hover { color: var(--primary); }
.footer__col .mini-link:hover { color: var(--primary); }
.footer__col i     { color: var(--primary); margin-right: .4rem; }

.footer__bottom {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.10);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted2);
  flex-wrap: wrap;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   MODAL
   ============================================= */
.modal { position: fixed; inset: 0; display: none; z-index: 120; }
.modal.show { display: block; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(620px, calc(100% - 1.6rem));
  margin: 4vh auto;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(250,253,255,.97);
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1.2rem;
}
.modal__dialog h3 { margin: 0 0 .3rem; }

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.05);
  cursor: pointer;
  color: var(--text);
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.modal__close:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,.08);
  border-color: rgba(9,167,200,.30);
  box-shadow: var(--shadow2);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1020px) {
  .hero__grid   { grid-template-columns: 1fr; }
  .cards        { flex-wrap: nowrap; }
  .services     { grid-template-columns: repeat(2, 1fr); }
  .gallery      { grid-template-columns: repeat(2, 1fr); }
  .struct-grid  { grid-template-columns: repeat(2, 1fr); }
  .logos        { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .carousel     { max-width: 100%; width: 100%; }
  .hero__media  { max-width: 100%; min-width: 0; }
}

@media (max-width: 820px) {
  .about-story__photo {
    float: none;
    width: 180px;
    margin: 0 auto 1rem;
    display: block;
  }
}

@media (max-width: 720px) {
  /* --- Topbar: 2 linhas, cada uma com itens nas extremidades --- */
  .topbar__inner {
    flex-direction: column;
    gap: .3rem;
    font-size: .82rem;
  }
  .topbar__left,
  .topbar__right {
    width: 100%;
    justify-content: space-between;
  }
  .topbar .sep { display: none; }

  /* --- Badge hero: cabe em uma linha --- */
  .badge { font-size: .78rem; padding: .4rem .6rem; gap: .35rem; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: rgba(238,243,248,.97);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(0,0,0,.10);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 52px 16px 18px;
    transform: translateX(110%);
    transition: transform .28s ease;
    z-index: 80;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { width: 100%; }
  .nav__cta  { width: 100%; justify-content: center; }
  .burger    { display: block; }

  .grid-2      { grid-template-columns: 1fr; }
  .cards       { flex-wrap: nowrap; }
  .services    { grid-template-columns: 1fr; }
  .gallery     { grid-template-columns: 1fr; }
  .struct-grid { grid-template-columns: repeat(2, 1fr); }
  .logos       { grid-template-columns: repeat(2, 1fr); }
  .callout     { flex-direction: column; align-items: flex-start; }
  .carousel    { max-width: 92vw; margin: 0 auto; }

  /* --- Contatos: número não quebra no meio --- */
  .contact-item span { white-space: nowrap; }

  /* --- Footer: coluna única + itens sem quebra --- */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col li { white-space: nowrap; font-size: .88rem; }

  /* --- Footer bottom: CNPJ em linha própria --- */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .4rem; font-size: .8rem; }
  .footer__cnpj   { display: block; }

  /* --- Carrossel slide 3: preenche a altura do carrossel com 3 linhas iguais --- */
  .slide__card--grid {
    height: 100%;
    grid-template-rows: 1fr 1fr 1fr;
    gap: .45rem;
  }
  .slide__card--grid .card      { padding: .6rem .75rem; min-height: 0; }
  .slide__card--grid .slide__header { margin-bottom: .2rem; gap: .5rem; }
  .slide__card--grid .slide__icon   { width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0; }
  .slide__card--grid .slide__icon i { font-size: 1rem; }
  .slide__card--grid .pill      { display: none; }
  .slide__card--grid .card p    { font-size: .85rem; margin: 0; }
}

/* =============================================
   MODAL: CANAL DE AGENDAMENTO
   ============================================= */
.modal__dialog--sm { max-width: 420px; }

.canal-header {
  text-align: center;
  margin-bottom: 1.4rem;
}
.canal-header__icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: .5rem;
}
.canal-header h3 { margin: 0 0 .3rem; }
.canal-header p   { margin: 0; }

.canal-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.canal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  transition: border-color .18s, box-shadow .18s, background .18s;
  cursor: pointer;
}
.canal-option:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
  background: rgba(255,255,255,.95);
}
.canal-option__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.canal-option__icon--wa     { background: rgba(37,211,102,.12); color: #25d366; }
.canal-option__icon--portal { background: rgba(9,167,200,.12);  color: var(--primary); }
.canal-option div { flex: 1; }
.canal-option strong { display: block; font-size: .97rem; color: var(--text); }
.canal-option span   { font-size: .83rem; color: var(--muted); }
.canal-option__arrow { color: var(--muted2); font-size: .85rem; }

.canal-option--disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}
.canal-option__badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(0,0,0,.07);
  border-radius: 999px;
  padding: .2rem .55rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.depo-col__title {
  margin: 0 0 .85rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary2);
  display: flex;
  align-items: center;
  gap: .45rem;
}

/* — Vídeos — */
.depo-video-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.depo-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.depo-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.depo-video-meta {
  padding: .7rem 1.25rem .2rem;
}

.depo-video-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
}

.depo-video-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .5rem 1.25rem .9rem;
}

.depo-dots {
  display: flex;
  gap: .45rem;
  align-items: center;
}

.depo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(0,0,0,.08);
  cursor: pointer;
  padding: 0;
  transition: .2s ease;
}

.depo-dot.active {
  width: 22px;
  background: rgba(9,167,200,.9);
  border-color: rgba(9,167,200,.9);
}

/* — Escritos — */
.depo-written-mask {
  height: 440px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius2);
}

.depo-written-mask::before,
.depo-written-mask::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;
}

.depo-written-mask::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.depo-written-mask::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

@keyframes depo-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.depo-written-track {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  animation: depo-scroll 32s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

/* Pausa ao hover apenas em dispositivos com mouse real (não touch) */
@media (hover: hover) {
  .depo-written-mask:hover .depo-written-track {
    animation-play-state: paused;
  }
}

.depo-written-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow2);
}

.depo-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .4rem;
}

.depo-stars i { color: #f5a623; font-size: .92rem; }

.depo-written-name {
  font-weight: 700;
  font-size: .9rem;
  margin: 0 0 .3rem;
  color: var(--navy);
}

.depo-written-text {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .depo-grid { grid-template-columns: 1fr; }
  .depo-written-mask { height: 360px; }
}

/* =============================================
   HERO CAROUSEL: height aligned to left column
   ============================================= */
@media (min-width: 1021px) {
  .carousel__track { flex: 1; min-height: 0; }
  .slide           { height: 100%; }
  .slide__card     { display: flex; flex-direction: column; height: 100%; }
  .slide__card > .pill            { width: 100%; justify-content: center; }
  .slide__card--grid              { align-content: space-between; }
  .slide__card--grid .card        { padding: .8rem 1rem; }
  .slide__card--grid .slide__header { margin-bottom: .4rem; }
  .slide__card--grid .pill        { margin-top: .5rem; }
  .video           { aspect-ratio: unset; flex: 1; min-height: 0; }
}
