/* =====================================================
   CLÍNICA HOLOS — Design System v2
   Modern, Elegant, Premium
   ===================================================== */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Custom Properties ---- */
:root {
  --navy:        #07347d;
  --navy-deep:   #041f4f;
  --navy-mid:    #0d4699;
  --teal:        #177476;
  --teal-light:  #1e9496;
  --teal-pale:   #e8f5f5;
  --gold:        #f8a738;
  --gold-light:  #ffc97a;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e7ee;
  --gray-400:    #9baab8;
  --gray-600:    #5a6b7d;
  --gray-800:    #243447;
  --text:        #1c2d3e;
  --text-sub:    #4a5f74;

  /* Gradients */
  --grad-navy:   linear-gradient(150deg, #041f4f 0%, #07347d 50%, #0d4699 100%);
  --grad-teal:   linear-gradient(150deg, #177476 0%, #1e9496 100%);
  --grad-hero:   linear-gradient(160deg, rgba(4,31,79,.88) 0%, rgba(7,52,125,.78) 55%, rgba(23,116,118,.72) 100%);
  --grad-card:   linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --container:   1200px;
  --pad:         clamp(1.25rem, 4vw, 2rem);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 100px;

  /* Shadows */
  --sh-sm:  0 2px 12px rgba(7,52,125,.07);
  --sh-md:  0 6px 28px rgba(7,52,125,.10);
  --sh-lg:  0 16px 56px rgba(7,52,125,.14);
  --sh-xl:  0 24px 80px rgba(7,52,125,.18);

  /* Transitions */
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --t:      .35s var(--ease);
  --t-fast: .2s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
}
.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
}
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; letter-spacing: .01em; }
p  { color: var(--text-sub); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,.65); }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section  { padding: clamp(5rem, 10vw, 8rem) 0; }
.section--sm { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,.75) !important; }
.bg-navy    { background: var(--grad-navy); }
.bg-off     { background: var(--off-white); }
.bg-teal    { background: var(--grad-teal); }

.divider-line {
  width: 48px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 1.5rem;
}
.divider-line--center { margin-left: auto; margin-right: auto; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.2rem;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(248,167,56,.30);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,167,56,.40);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--sh-md);
}
.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(23,116,118,.25);
}
.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(23,116,118,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.1rem 2.8rem; font-size: .95rem; }
.btn--sm { padding: .65rem 1.5rem; font-size: .8rem; }

.btn svg { flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(2px); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.5rem 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.navbar--scrolled {
  background: rgba(4,31,79,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 2px 40px rgba(4,31,79,.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo img { height: 42px; width: auto; }
.navbar__logo-fallback {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

.navbar__nav { display: flex; align-items: center; gap: .15rem; }

.navbar__link {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--t);
}
.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after,
.navbar__link--active::after { width: 60%; }
.navbar__link--active { color: var(--white); }

.navbar__actions { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.navbar__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 2rem;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile .navbar__link { font-size: 1.3rem; padding: .85rem 2rem; }
.navbar__mobile .navbar__link::after { display: none; }
.navbar__mobile-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; }
.navbar__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: .25rem;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image container — replace hero-bg.jpg */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero.is-loaded .hero__bg img { transform: scale(1); }

/* Overlay — layered for depth */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,31,79,.3) 0%, transparent 60%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 9rem;
  max-width: 720px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(248,167,56,.12);
  border: 1px solid rgba(248,167,56,.3);
  border-radius: var(--r-full);
  padding: .45rem 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__tag-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.7);
}

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.8rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Stats strip */
.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  60%      { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   INTRO BAND — numbers
   ===================================================== */
.intro-band {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.intro-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.intro-band__item {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro-band__item:last-child { border-right: none; }
.intro-band__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.intro-band__label {
  font-size: .78rem;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin-top: .4rem;
}
.intro-band__accent {
  width: 24px; height: 2px;
  background: var(--gold);
  margin-top: 1rem;
}

/* =====================================================
   ABOUT / QUEM SOMOS
   ===================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-stack {
  position: relative;
  padding: 0 0 3rem 3rem;
}
.about__image-main {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/5;
}
.about__image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about__image-main:hover img { transform: scale(1.04); }

.about__image-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  z-index: 3;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--white);
}
.about__image-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about__badge-block {
  position: absolute;
  top: 2rem; left: 0;
  z-index: 4;
  background: var(--grad-navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
  color: var(--gold);
}
.about__badge-text {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
}

.about__text { display: flex; flex-direction: column; gap: 1.5rem; }
.about__text h2 { margin-bottom: .5rem; }

.about__checks { display: flex; flex-direction: column; gap: .75rem; margin: .5rem 0; }
.about__check {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .9rem;
  color: var(--text-sub);
}
.about__check-icon {
  width: 20px; height: 20px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about__check-icon svg { color: var(--teal); }

/* =====================================================
   ESPECIALIDADES
   ===================================================== */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 480px;
}
.spec-card__bg {
  position: absolute;
  inset: 0;
}
.spec-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.spec-card:hover .spec-card__bg img { transform: scale(1.06); }
.spec-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,31,79,.98) 0%, rgba(4,31,79,.75) 50%, rgba(4,31,79,.45) 100%);
  transition: opacity var(--t);
}
.spec-card:hover .spec-card__overlay { opacity: 1; }

.spec-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.spec-card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(248,167,56,.15);
  border: 1px solid rgba(248,167,56,.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.spec-card__icon-wrap svg { color: var(--gold); }

.spec-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .75rem;
}
.spec-card p {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.spec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.75rem;
}
.spec-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .75rem;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.spec-card:hover .spec-tag { background: rgba(255,255,255,.15); }

/* =====================================================
   AREAS DE ATUAÇÃO
   ===================================================== */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.area-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  transition: background var(--t), color var(--t);
  cursor: default;
}
.area-item:hover { background: var(--navy); }
.area-item:hover .area-item__title { color: var(--white); }
.area-item:hover .area-item__sub { color: rgba(255,255,255,.6); }
.area-item:hover .area-item__dot { background: var(--gold); }

.area-item__dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-bottom: .9rem;
  transition: background var(--t);
}
.area-item__title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
  margin-bottom: .25rem;
}
.area-item__sub {
  font-size: .75rem;
  color: var(--gray-400);
  line-height: 1.4;
  transition: color var(--t);
}

/* =====================================================
   ABORDAGENS TERAPEUTICAS
   ===================================================== */
.approaches-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.approach-card:hover::before { transform: scaleX(1); }
.approach-card__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: .9rem;
  display: block;
}
.approach-card h4 { font-size: .88rem; margin-bottom: .4rem; }
.approach-card p  { font-size: .8rem; }

/* =====================================================
   CONVENIOS
   ===================================================== */
.convenios__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.convenio-tile {
  background: var(--white);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: background var(--t);
}
.convenio-tile:hover { background: var(--off-white); }
.convenio-tile img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter var(--t);
}
.convenio-tile:hover img { filter: grayscale(0) opacity(1); }

/* =====================================================
   GALERIA / ESTRUTURA
   ===================================================== */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: .75rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.gallery-mosaic__item {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.gallery-mosaic__item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-mosaic__item:nth-child(2) { grid-column: span 4; }
.gallery-mosaic__item:nth-child(3) { grid-column: span 3; }
.gallery-mosaic__item:nth-child(4) { grid-column: span 3; }
.gallery-mosaic__item:nth-child(5) { grid-column: span 4; }

.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-mosaic__item:hover img { transform: scale(1.07); }

.gallery-mosaic__cap { display: none; }

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.testimonials { overflow: hidden; }
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(10px);
  transition: background var(--t);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.star {
  width: 14px; height: 14px;
  fill: var(--gold);
}
.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  font-style: italic;
  margin-bottom: 1.75rem;
  flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.18);
  flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-size: .88rem; font-weight: 600; color: var(--white); }
.testimonial-card__role { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .15rem; }

/* =====================================================
   UNIDADES
   ===================================================== */
.units__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.unit-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-md);
  transition: box-shadow var(--t), transform var(--t);
}
.unit-card:hover { box-shadow: var(--sh-xl); transform: translateY(-4px); }

.unit-card__cover {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.unit-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.unit-card:hover .unit-card__cover img { transform: scale(1.06); }
.unit-card__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,31,79,.65) 0%, transparent 60%);
}
.unit-card__name {
  position: absolute;
  bottom: 1.5rem; left: 2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
}

.unit-card__body { padding: 2rem; }
.unit-info-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.75rem; }
.unit-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: var(--text-sub);
}
.unit-info-icon {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}
.unit-info-item a:hover { color: var(--teal); }
.unit-card__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* =====================================================
   PROFISSIONAIS
   ===================================================== */
.professionals-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  align-items: center;
}
.filter-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: .5rem;
}

.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  background: var(--gray-100);
  color: var(--text-sub);
  border: 1.5px solid transparent;
  transition: all var(--t-fast);
}
.filter-btn:hover { background: var(--gray-200); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.prof-search {
  margin-left: auto;
  position: relative;
}
.prof-search input {
  padding: .5rem 1rem .5rem 2.4rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .82rem;
  width: 240px;
  outline: none;
  transition: border-color var(--t);
  background: var(--white);
}
.prof-search input:focus { border-color: var(--teal); }
.prof-search svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  width: 14px; height: 14px;
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.prof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
}
.prof-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: transparent; }

/* Colored top accent stripe per unit */
.prof-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gray-200);
  flex-shrink: 0;
}
.prof-card[data-unit="pituba"]::before { background: var(--teal); }
.prof-card[data-unit="vilas"]::before  { background: var(--navy); }
.prof-card[data-unit="both"]::before   { background: var(--gold); }

.prof-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-100, #eef2f8);
  flex-shrink: 0;
}
.prof-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity var(--t);
}
.prof-card__photo img.loaded { opacity: 1; }

.prof-card__unit {
  position: absolute;
  top: .7rem; right: .7rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--r-full);
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 4px rgba(10,24,70,.14);
}

.prof-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prof-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .2rem;
}
.prof-card__title {
  font-size: .75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.prof-card__approach {
  font-size: .75rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .5rem;
}
.prof-card__crp {
  font-size: .72rem;
  color: var(--gray-400);
  font-variant-numeric: tabular-nums;
}

/* Hidden state for filter */
.prof-card.is-hidden { display: none; }

/* Prof card extras */
.prof-card__ages {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: .5rem;
}
.prof-card__ages svg { flex-shrink: 0; color: var(--gray-400); }

.prof-card__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: .5rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  transition: background var(--t-fast), transform var(--t-fast);
  align-self: flex-start;
}
.prof-card__cta:hover { background: var(--teal); transform: translateY(-1px); }

/* Unit badge colors (light background version) */
.prof-card__unit.unit-pituba  { color: var(--teal);  background: rgba(255,255,255,.92); }
.prof-card__unit.unit-vilas   { color: var(--navy);  background: rgba(255,255,255,.92); }
.prof-card__unit.unit-both    { color: #7a5d1e;      background: rgba(255,255,255,.92); }

/* Active nav link */
.navbar__link.is-active { color: var(--teal-light); font-weight: 600; }

/* Search wrap (redesigned standalone) */
.prof-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 0 1.5rem;
}
.prof-search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.prof-search-wrap input {
  width: 100%;
  padding: .75rem 1.25rem .75rem 2.8rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .88rem;
  outline: none;
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.prof-search-wrap input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,116,118,.08);
}

/* Filter rows (multi-row layout) */
.professionals-filter {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-wrap: unset;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
}
.filter-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  width: 100%;
}
.filter-group {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

/* Prof count */
.prof-count {
  font-size: .82rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}
.prof-count strong { color: var(--navy); }

/* Empty state */
.prof-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-sub);
}
.prof-empty svg { margin: 0 auto 1.5rem; color: var(--gray-400); }
.prof-empty h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text); margin-bottom: .5rem; }

/* Load more */
.load-more-wrap { text-align: center; margin-top: 3rem; }

/* =====================================================
   FORMULÁRIO
   ===================================================== */
.form-section { background: var(--off-white); }

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--sh-lg);
  max-width: 780px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,116,118,.1);
}
.form-group input.error,
.form-group select.error { border-color: #e74c3c; }
.form-group .error-msg {
  font-size: .75rem;
  color: #e74c3c;
  display: none;
}
.form-group input.error + .error-msg,
.form-group select.error + .error-msg { display: block; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath stroke='%239baab8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { text-align: center; margin-top: 2rem; }
.form-submit .btn { min-width: 300px; justify-content: center; }
.form-note { font-size: .75rem; color: var(--gray-400); margin-top: .75rem; }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: linear-gradient(to right, #a85a08 0%, #c97010 35%, #e8931a 65%, #f8a738 100%);
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,31,79,.08) 0%, transparent 40%, transparent 60%, rgba(4,31,79,.08) 100%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.cta-band__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.cta-band__text { flex: 1; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* CTA band navy override (quando usado com background navy) */
.cta-band--navy { background: var(--grad-navy); }

/* Ghost button */
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
}

/* =====================================================
   COUNTER (alias)
   ===================================================== */
.intro-band__num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

/* =====================================================
   SOBRE PAGE
   ===================================================== */
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sobre__images { position: relative; }
.sobre__img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.sobre__img-main img { width: 100%; height: 480px; object-fit: cover; }
.sobre__img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 240px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--white);
}
.sobre__img-accent img { width: 100%; height: 160px; object-fit: cover; }
.sobre__badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-md);
}
.sobre__badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}
.sobre__badge-txt {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-top: .2rem;
}
.sobre__text { padding-left: 1rem; }
.sobre__text p { margin-bottom: 1.2rem; }

/* =====================================================
   VALORES GRID
   ===================================================== */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.valor-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.valor-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.valor-card__icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal);
}
.valor-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .8rem;
}
.valor-card p { font-size: .88rem; }

/* =====================================================
   UNIDADES GRID (sobre + index)
   ===================================================== */
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.unidade-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.unidade-card:hover { box-shadow: var(--sh-xl); transform: translateY(-4px); }
.unidade-card__img { height: 260px; overflow: hidden; }
.unidade-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.unidade-card:hover .unidade-card__img img { transform: scale(1.04); }
.unidade-card__body { padding: 2rem; }
.unidade-card__tag {
  display: inline-block;
  padding: .3rem .9rem;
  background: var(--navy);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.unidade-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.unidade-info {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text-sub);
  margin-bottom: .9rem;
  line-height: 1.5;
}
.unidade-info svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.unidade-info a { color: var(--navy); font-weight: 600; }
.unidade-info a:hover { color: var(--teal); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4,31,79,.9) 0%, rgba(7,52,125,.82) 60%, rgba(23,116,118,.78) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; font-size: 1rem; margin-top: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.breadcrumb strong { color: var(--gold); }

/* =====================================================
   TRABALHE CONOSCO
   ===================================================== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.perk-card {
  padding: 2.25rem 2rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--t);
}
.perk-card:hover { background: rgba(255,255,255,.12); }
.perk-card__icon {
  width: 48px; height: 48px;
  background: rgba(248,167,56,.12);
  border: 1px solid rgba(248,167,56,.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.perk-card__icon svg { color: var(--gold); }
.perk-card h4 { color: var(--white); margin-bottom: .5rem; }
.perk-card p { color: rgba(255,255,255,.6); font-size: .85rem; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.role-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--t);
}
.role-card:hover { box-shadow: var(--sh-lg); border-color: transparent; transform: translateY(-2px); }
.role-card__icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-card__icon svg { color: var(--teal); }
.role-card h4 { font-size: .92rem; margin-bottom: .4rem; }
.role-card p  { font-size: .83rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #080f1a;
  color: rgba(255,255,255,.6);
  padding: 5.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand { display: flex; flex-direction: column; gap: .9rem; }
.footer__logo img { height: 44px; width: auto; }
.footer__brand p { font-size: .85rem; line-height: 1.7; max-width: 270px; margin: 0; }

.footer__social { display: flex; gap: .6rem; margin-top: .5rem; }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.footer__social-link svg { width: 15px; height: 15px; }
.footer__social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.footer__col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a {
  font-size: .84rem;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .84rem;
  margin-bottom: .75rem;
}
.footer__contact-row svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer__contact-row a:hover { color: var(--white); }

.footer__hours { display: flex; flex-direction: column; gap: .3rem; }
.footer__hours-row { display: flex; justify-content: space-between; font-size: .8rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer__hours-row:last-child { border-bottom: none; }
.footer__hours-row .time { color: rgba(255,255,255,.35); }

.footer__bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .8rem; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: .8rem; transition: color var(--t-fast); }
.footer__bottom-links a:hover { color: var(--white); }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-float__tooltip {
  background: var(--white);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--t);
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; transform: translateX(0); }

.wa-float__btn {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
  transition: all var(--t);
}
.wa-float__btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.52); }
.wa-float__btn svg { width: 28px; height: 28px; }

/* Simplified float for inner pages */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
  transition: all var(--t);
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.52);
  animation: none;
}

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.38); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,.08); }
}
.wa-float__btn { animation: wa-pulse 2.8s ease-in-out infinite; }
.wa-float__btn:hover { animation: none; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .intro-band__grid { grid-template-columns: repeat(2,1fr); }
  .professionals-grid { grid-template-columns: repeat(3,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .approaches-row { grid-template-columns: repeat(2,1fr); }
  .gallery-mosaic { grid-template-rows: 220px 220px; }
  .valores-grid { grid-template-columns: repeat(3,1fr); }
  .sobre-layout { gap: 3rem; }
}

@media (max-width: 900px) {
  .sobre-layout { grid-template-columns: 1fr; }
  .sobre__images { padding: 2rem 2rem 3rem; }
  .sobre__img-accent { right: 1rem; }
  .sobre__badge { left: 1rem; top: 1rem; }
  .sobre__text { padding-left: 0; }
  .valores-grid { grid-template-columns: 1fr; gap: 1rem; }
  .unidades-grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-stack { padding: 0 0 2.5rem 2.5rem; }
  .spec-cards { grid-template-columns: 1fr; }
  .spec-card { min-height: 380px; }
  .areas__grid { grid-template-columns: repeat(3,1fr); }
  .roles-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .gallery-mosaic {
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: 200px 200px;
  }
  .gallery-mosaic__item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .gallery-mosaic__item:nth-child(2) { grid-column: span 3; }
  .gallery-mosaic__item:nth-child(3) { grid-column: span 3; }
  .gallery-mosaic__item:nth-child(4) { grid-column: span 3; }
  .gallery-mosaic__item:nth-child(5) { grid-column: span 3; }
  .units__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 1.25rem; }

  .navbar__nav, .navbar__actions { display: none; }
  .navbar__toggle { display: flex; }

  .intro-band__grid { grid-template-columns: repeat(2,1fr); }
  .intro-band__item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .areas__grid { grid-template-columns: repeat(2,1fr); }
  .approaches-row { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .professionals-grid { grid-template-columns: repeat(2,1fr); }
  .convenios__grid { grid-template-columns: repeat(3,1fr); }
  .testimonials__track { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }
  .prof-search input { width: 100%; }
  .prof-search { margin-left: 0; width: 100%; }
  .professionals-filter { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .professionals-grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .convenios__grid { grid-template-columns: repeat(2,1fr); }
  .about__badge-block { position: static; margin-top: 1.5rem; display: inline-flex; gap: 1rem; align-items: center; text-align: left; }
  .about__badge-num { font-size: 2rem; }
  .intro-band__grid { grid-template-columns: 1fr; }
}

/* Section split layout (Áreas + Convênios) */
.section-split-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .section-split-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* Lazy images */
img[data-src] { opacity: 0; transition: opacity .5s var(--ease); }
img.loaded     { opacity: 1; }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =====================================================
   ESPECIALIDADES PAGE
   ===================================================== */
.spec-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.spec-detail-layout--reverse .spec-detail__img { order: 2; }
.spec-detail-layout--reverse .spec-detail__text { order: 1; }

.spec-detail__img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.spec-detail__img img {
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
}
.spec-detail__badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg);
}
.spec-detail__badge--psico { background: var(--teal); color: var(--white); }
.spec-detail__badge--psiq  { background: var(--navy); color: var(--white); }

.spec-detail__lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}
.spec-detail__text p { margin-bottom: 1rem; }

.spec-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.spec-tag-pill {
  padding: .35rem .9rem;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: var(--r-full);
}
.spec-tag-pill--navy { background: var(--gray-100); color: var(--navy); }

.spec-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-left: 0;
}
.spec-list li {
  font-size: .88rem;
  color: var(--text-sub);
  padding-left: 1.25rem;
  position: relative;
}
.spec-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* Areas detail grid */
.areas-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.area-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t);
}
.area-detail-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.area-detail-card__icon {
  width: 50px; height: 50px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.area-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .6rem;
}
.area-detail-card p { font-size: .85rem; }

/* Abordagens dark grid */
.abord-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.abord-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t);
}
.abord-card:hover { background: rgba(255,255,255,.1); }
.abord-card__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: 1rem;
}
.abord-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.abord-card p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* =====================================================
   CONTATO PAGE
   ===================================================== */
.wa-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #e8f8ef;
  border: 1.5px solid #b2e8c5;
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}
.wa-highlight__icon {
  width: 64px; height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.wa-highlight__text { flex: 1; min-width: 200px; }
.wa-highlight__text h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .3rem;
}
.wa-highlight__text p { font-size: .88rem; margin: 0; }

.btn--wa {
  background: #25d366;
  color: var(--white);
  border: none;
  font-weight: 700;
}
.btn--wa:hover { background: #1fb859; }

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.contact-unit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: box-shadow var(--t);
}
.contact-unit-card:hover { box-shadow: var(--sh-md); }
.contact-unit-card__header { margin-bottom: 1.25rem; }
.contact-unit-card__tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--navy);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: .6rem;
}
.contact-unit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
}
.contact-unit-details { display: flex; flex-direction: column; gap: .1rem; }

/* Convenios */
.convenios-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.conv-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-sub);
  transition: all var(--t-fast);
}
.conv-item:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }

/* =====================================================
   TRABALHE CONOSCO PAGE
   ===================================================== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.perk-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t);
}
.perk-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.perk-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal-pale) 0%, rgba(7,52,125,.06) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.perk-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .6rem;
}
.perk-card p { font-size: .85rem; }

/* Vagas */
.vagas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vaga-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t);
}
.vaga-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.vaga-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.vaga-card__tipo {
  display: inline-block;
  padding: .3rem .85rem;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}
.vaga-card__tipo--psiq { background: rgba(7,52,125,.08); color: var(--navy); }
.vaga-card__local {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 500;
}
.vaga-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.vaga-list { display: flex; flex-direction: column; gap: .45rem; }
.vaga-list li {
  font-size: .84rem;
  color: var(--text-sub);
  padding-left: 1.2rem;
  position: relative;
}
.vaga-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* =====================================================
   RESPONSIVE — new components
   ===================================================== */
@media (max-width: 1100px) {
  .spec-detail-layout { gap: 3rem; }
  .areas-detail-grid { grid-template-columns: repeat(2,1fr); }
  .abord-grid { grid-template-columns: repeat(2,1fr); }
  .perks-grid { grid-template-columns: repeat(2,1fr); }
  .convenios-list { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .spec-detail-layout { grid-template-columns: 1fr; }
  .spec-detail-layout--reverse .spec-detail__img { order: unset; }
  .spec-detail-layout--reverse .spec-detail__text { order: unset; }
  .spec-detail__img img { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
  .vagas-grid { grid-template-columns: 1fr; }
  .areas-detail-grid { grid-template-columns: repeat(2,1fr); }
  .abord-grid { grid-template-columns: 1fr; }
  .convenios-list { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .perks-grid { grid-template-columns: 1fr; }
  .areas-detail-grid { grid-template-columns: 1fr; }
  .convenios-list { grid-template-columns: repeat(2,1fr); }
  .wa-highlight { flex-direction: column; text-align: center; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { text-align: center; justify-content: center; }

  /* About — esconder imagem accent no mobile */
  .about__image-accent { display: none; }
  .about__image-stack { padding: 0; }

  /* Gallery mosaic — coluna única, altura igual */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-mosaic__item { grid-column: span 1 !important; grid-row: span 1 !important; height: 220px; }

  /* Convênios — máx 3 por linha */
  .convenios__grid { grid-template-columns: repeat(3, 1fr); }

  /* Filtros profissionais */
  .filter-row { flex-wrap: wrap; gap: .5rem; }
  .filter-group { flex-wrap: wrap; }
  .filter-row__label { width: 100%; font-size: .7rem; margin-bottom: -.25rem; }
  .prof-search-wrap { max-width: 100%; }

  /* Spec cards */
  .spec-card { min-height: 300px; }
}

@media (max-width: 520px) {
  /* Gallery mosaic — já herdado do 768px, garantir altura igual */
  .gallery-mosaic__item { height: 200px; }
  .gallery-mosaic__item:nth-child(1) { grid-column: span 1 !important; }

  /* Areas 1 coluna */
  .areas__grid { grid-template-columns: 1fr !important; }

  /* Convênios — manter 3 por linha */
  .convenios__grid { grid-template-columns: repeat(3, 1fr); }

  /* Spec cards altura reduzida */
  .spec-card { min-height: 240px; }
  .spec-detail__img img { height: 220px; }

  /* About image stack — padding já zerado no 768px */
  .about__image-stack { padding: 0; }

  /* CTA band padding reduzido */
  .cta-band { padding: 2.5rem 0; }

  /* Footer logo menor */
  .footer__logo img { max-height: 36px; }

  /* Botões CTA esticados */
  .cta-band__actions { width: 100%; }

}
