/* ═══════════════════════════════════════════════════════════
   IBR HOSPITAL — style.css
   Premium Medical Website — Modern & Professional
═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue-900: #0a1628;
  --blue-800: #0d2044;
  --blue-700: #103060;
  --blue-600: #1346a0;
  --blue-500: #2e7bbf;
  --blue-400: #3f97d3;
  --blue-300: #5a9ef0;
  --blue-100: #deeafd;
  --blue-50:  #f0f6ff;

  --gold:     #d4a843;
  --gold-lt:  #f0c040;

  --green:    #25d366;

  --text-dark:  #0d1f3c;
  --text-mid:   #3d5175;
  --text-light: #7a90b3;
  --text-white: #ffffff;

  --bg-white:   #ffffff;
  --bg-soft:    #f4f7fc;
  --bg-dark:    #071525;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(13,32,68,.08);
  --shadow-md:  0 8px 32px rgba(13,32,68,.12);
  --shadow-lg:  0 20px 60px rgba(13,32,68,.18);
  --shadow-xl:  0 32px 80px rgba(13,32,68,.24);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    monospace;

  --nav-h: 72px;
  --topbar-h: 40px;
  --container: 1200px;
}

/* ── 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-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Helpers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--blue-300); }

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; font-weight: 800; color: var(--blue-500); }
.section-title--light { color: #fff; }
.section-title--light em { font-style: normal; font-weight: 800; color: var(--blue-300); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header--light .section-sub { color: rgba(255,255,255,.7); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-500);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,204,.35);
}
.btn-primary.btn-large { padding: 16px 40px; font-size: 1.05rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-500);
  border: 2px solid var(--blue-500);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--blue-600);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #050d1a 0%, #0a1f42 50%, #071530 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  letter-spacing: .03em;
}
.topbar-item svg { color: var(--blue-300); opacity: .85; }
.topbar-item:hover { color: rgba(255,255,255,.9); }
.topbar-item:hover svg { opacity: 1; }
.topbar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.1);
}
.topbar-right { display: flex; align-items: center; gap: 5px; }
.topbar-social {
  width: 27px; height: 27px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.topbar-social:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(13,32,68,.1);
}
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-logo .logo-text { color: var(--blue-600); }
.navbar.scrolled .nav-logo .logo-sub { color: var(--text-mid); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
  max-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .875rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-500); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,22,40,.85) 0%,
    rgba(10,22,40,.55) 55%,
    rgba(10,22,40,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(24px, calc((100% - var(--container)) / 2 + 24px));
  padding-top: calc(var(--nav-h) + var(--topbar-h));
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-300);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 14px;
}
.hero-title em { font-style: normal; font-weight: 800; color: var(--blue-300); }

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-500);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,92,204,.45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }

.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: var(--transition);
}
.hero-dot.active { width: 28px; border-radius: 4px; background: #fff; }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(10,22,40,.75);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* ════════════════════════════════════════
   QUICK ACCESS
════════════════════════════════════════ */
.quick-access {
  background: var(--bg-soft);
  padding: 40px 0;
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.qa-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(13,32,68,.07);
  box-shadow: 0 2px 12px rgba(13,32,68,.05);
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none;
}
.qa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,92,204,.15);
  border-color: var(--blue-300);
}
.qa-card:hover .qa-arrow { transform: translateX(5px); }

.qa-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
  transition: all .25s ease;
}
.qa-card:hover .qa-icon {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,92,204,.35);
}

.qa-text { flex: 1; min-width: 0; }
.qa-title {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qa-sub {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 400;
}
.qa-arrow {
  color: var(--blue-300);
  transition: transform .25s ease;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   SOBRE
════════════════════════════════════════ */
.sobre {
  padding: 100px 0;
  background: var(--bg-white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-images {
  position: relative;
  height: 520px;
}
.sobre-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sobre-img-main img { width: 100%; height: 100%; object-fit: cover; }

.sobre-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}
.sobre-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.sobre-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.badge-year { font-size: 1.2rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: .65rem; letter-spacing: .1em; opacity: .85; }

.sobre-floating-stat {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--blue-600);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 3px solid #fff;
}
.fstat-inner { text-align: center; }
.fstat-num {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.fstat-pct { font-size: 1.2rem; font-weight: 600; }
.fstat-label { font-size: .72rem; opacity: .8; margin-top: 4px; line-height: 1.4; }

.sobre-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.sobre-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.sobre-feature strong { display: block; font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.sobre-feature p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

.sobre-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  margin-bottom: 32px;
}
.sstat { text-align: center; }
.sstat-num {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.sstat-plus { font-size: 1.5rem; font-weight: 700; color: var(--blue-500); }
.sstat-label { display: block; font-size: .8rem; color: var(--text-light); margin-top: 4px; }
.sstat-div { width: 1px; height: 50px; background: var(--blue-100); }

.sobre-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════ */
.servicos {
  padding: 100px 0;
  background: var(--bg-soft);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.servico-card:hover { border-color: var(--blue-100); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.servico-card:hover::before { transform: scaleX(1); }

.servico-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 24px;
  transition: var(--transition);
}
.servico-card:hover .servico-icon { background: var(--blue-500); color: #fff; }

.servico-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.servico-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }

.servico-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--blue-100);
}
.ss { display: flex; flex-direction: column; }
.ss strong { font-size: 1.1rem; font-weight: 700; color: var(--blue-600); }
.ss span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); }

.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-500);
  transition: var(--transition);
}
.servico-link:hover { gap: 10px; }

/* ════════════════════════════════════════
   ESPECIALIDADES
════════════════════════════════════════ */
.especialidades {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(42,90,138,0.85) 45%, rgba(201,122,58,0.85) 60%),
    url('../imagens/IBRHospital.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.esp-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(26,92,204,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,92,204,.15) 0%, transparent 60%);
  pointer-events: none;
}

.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.esp-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.esp-card:hover { background: #f8faff; transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.esp-card--cta:hover { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); }

.esp-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.esp-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}
.esp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.esp-card:hover .esp-img img { transform: scale(1.05); }

.esp-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.esp-body { padding: 24px; }
.esp-body h3 { font-size: 1.1rem; font-weight: 700; color: #0a1628; margin-bottom: 10px; }
.esp-body p { font-size: .88rem; color: #385ca7; line-height: 1.7; margin-bottom: 16px; }

.esp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: #385ca7;
  transition: var(--transition);
}
.esp-link:hover { gap: 10px; color: #fff; }

.esp-card--cta {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.esp-cta-inner { text-align: center; padding: 40px 32px; }
.esp-cta-count {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.esp-cta-inner h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.esp-cta-inner p { font-size: .9rem; color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.6; }

/* ════════════════════════════════════════
   MÉDICOS
════════════════════════════════════════ */
.medicos {
  padding: 100px 0;
  background: var(--bg-white);
  text-align: center;
}
.medicos-cta { margin-top: 8px; }

/* ════════════════════════════════════════
   NOTÍCIAS
════════════════════════════════════════ */
.noticias {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.noticias-bg {
  position: absolute;
  inset: 0;
}
.noticias-bg img { width: 100%; height: 100%; object-fit: cover; }
.noticias-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,35,50,.82);
}

.noticias > .container { position: relative; z-index: 2; }

.noticias-header { margin-bottom: 52px; }
.noticias-eyebrow { color: var(--blue-300) !important; }

.noticias-loading {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.loading-skeleton {
  height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.noticia-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.noticia-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.2);
}
.noticia-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .5s ease;
}
.noticia-card:hover .noticia-img { transform: scale(1.04); }
.noticia-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
}
.noticia-body { padding: 24px; }
.noticia-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.noticia-cat {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-300);
  background: rgba(91,158,240,.15);
  padding: 3px 10px;
  border-radius: 50px;
}
.noticia-date {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.noticia-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.noticia-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-error-msg {
  grid-column: 1/-1;
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 40px;
  font-size: 1rem;
}

.noticias-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.noticias-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
  color: rgba(255,255,255,.6);
}

/* ════════════════════════════════════════
   AGENDAR CTA
════════════════════════════════════════ */
.agendar {
  padding: 32px 0;
  background: var(--bg-soft);
}
.agendar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--blue-600);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  flex-wrap: wrap;
}
.agendar-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.agendar-text { flex: 1; }
.agendar-text h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.agendar-text p { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 2px; }

.agendar-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-phone-cta:hover { background: rgba(255,255,255,.25); }

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.btn-directions:hover { color: #fff; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #060f1e;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,204,.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top { padding: 72px 0 56px; position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.5fr;
  gap: 56px;
}

.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-logo-img { height: 90px; width: auto; max-width: 100%; }
.footer-ona { margin-bottom: 14px; }
.footer-selo-img { height: 120px; width: auto; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.35); margin-bottom: 24px; line-height: 1.6; }

.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,92,204,.4);
}

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue-400);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.5);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--blue-400); opacity: .9; }
.footer-contact-item a, .footer-contact-item span { font-size: .875rem; line-height: 1.65; transition: color var(--transition); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.2);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); letter-spacing: .02em; }

/* ════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-500); transform: translateY(-3px); }

/* ════════════════════════════════════════
   RESPONSIVE — 1024px
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-images { height: 400px; }
  .sobre-floating-stat { right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links .nav-link { padding: 8px 10px; font-size: .82rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 768px MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --topbar-h: 0px; --nav-h: 64px; }
  .topbar { display: none; }
  .navbar { top: 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text-dark) !important; width: 100%; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    box-shadow: none;
    padding: 0 0 0 16px;
    background: transparent;
    overscroll-behavior: auto;
  }
  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 4px 0 4px 16px;
  }
  .nav-hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }

  /* ── HERO MOBILE — foto completa e botões corrigidos ── */
  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  /* ✅ Desabilita parallax e garante foto completa */
  .hero-bg {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center top !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-slide.active .hero-bg {
    transform: none !important;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 24px 20px 130px;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: .65rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-desc {
    font-size: .875rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* ✅ Botões lado a lado, tamanho correto */
  .hero-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .btn-hero-primary {
    flex: 1;
    padding: 12px 14px;
    font-size: .82rem;
    justify-content: center;
    white-space: nowrap;
    min-width: 0;
  }

  .btn-hero-ghost {
    flex: 1;
    padding: 11px 14px;
    font-size: .82rem;
    justify-content: center;
    white-space: nowrap;
    min-width: 0;
  }

  .hero-controls { bottom: 24px; }
  .hero-arrow { width: 34px; height: 34px; }
  .hero-dots { gap: 6px; }
  .hero-stats { flex-wrap: wrap; padding: 12px; }
  .hero-stat { padding: 12px 20px; }
  .hero-stat-divider { display: none; }

  /* ── Restante mobile ── */
  .qa-grid { grid-template-columns: 1fr; }
  .sobre-images { height: 320px; }
  .sobre-img-secondary { display: none; }
  .sobre-img-main { width: 100%; height: 100%; }
  .sobre-floating-stat { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .esp-grid { grid-template-columns: 1fr; }
  .noticias-grid { grid-template-columns: 1fr; }
  .noticias-loading { grid-template-columns: 1fr; }

  /* ✅ RODAPÉ MOBILE corrigido */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top { padding: 40px 0 32px; }
  .footer-logo-img { height: 70px; }
  .footer-selo-img { height: 80px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col ul { gap: 8px; }
  .footer-social { flex-wrap: wrap; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom p { font-size: .72rem; }

  .agendar-inner { flex-direction: column; text-align: center; padding: 28px 20px; }
  .agendar-icon-wrap { display: none; }
  .agendar-actions { justify-content: center; }
  .noticias-footer { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 20px; left: 20px; }
  .back-to-top { width: 38px; height: 38px; bottom: 20px; right: 20px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.45rem; }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .btn-hero-primary,
  .btn-hero-ghost {
    flex: 1;
    min-width: 0;
    padding: 11px 10px;
    font-size: .78rem;
    justify-content: center;
  }

  .footer-grid { gap: 20px; }
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }

.hero-slide:not(.active) .hero-eyebrow,
.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-desc,
.hero-slide:not(.active) .hero-ctas,
.hero-slide:not(.active) .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }

.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-ctas,
.hero-slide.active .reveal { animation: heroReveal .75s ease forwards; }
.hero-slide.active .hero-eyebrow,
.hero-slide.active .reveal:nth-child(1) { animation-delay: .05s; }
.hero-slide.active .hero-title,
.hero-slide.active .reveal:nth-child(2) { animation-delay: .18s; }
.hero-slide.active .hero-desc,
.hero-slide.active .reveal:nth-child(3) { animation-delay: .30s; }
.hero-slide.active .hero-ctas,
.hero-slide.active .reveal:nth-child(4) { animation-delay: .42s; }

.reveal { opacity: 0; transform: translateY(24px); }

@keyframes heroReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.section-header .section-eyebrow,
.section-header .section-title,
.section-header .section-sub { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.section-header.in-view .section-eyebrow { opacity: 1; transform: none; transition-delay: 0s; }
.section-header.in-view .section-title { opacity: 1; transform: none; transition-delay: .1s; }
.section-header.in-view .section-sub { opacity: 1; transform: none; transition-delay: .2s; }

.servico-card, .esp-card, .qa-card, .noticia-card { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease, border-color .3s, box-shadow .3s; }
.servico-card.in-view, .esp-card.in-view, .qa-card.in-view, .noticia-card.in-view { opacity: 1; transform: translateY(0); }

.sobre-img-main { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.sobre-img-secondary { opacity: 0; transform: translateX(20px) translateY(20px); transition: opacity .7s ease .2s, transform .7s ease .2s; }
.sobre-floating-stat { opacity: 0; transform: scale(.85); transition: opacity .5s ease .4s, transform .5s ease .4s; }
.sobre-images.in-view .sobre-img-main, .sobre-images.in-view .sobre-img-secondary, .sobre-images.in-view .sobre-floating-stat { opacity: 1; transform: none; }

.counter { display: inline-block; }

body { animation: pageFadeIn .4s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
.nav-logo { animation: fadeInUp .6s ease .1s both; }
.nav-links { animation: fadeInUp .6s ease .2s both; }
.nav-actions { animation: fadeInUp .6s ease .3s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.whatsapp-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: pulsering 2s ease-out infinite; }
@keyframes pulsering { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ════════════════════════════════════════
   ICON SIZES
════════════════════════════════════════ */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-chevron { width: 14px; height: 14px; }
.qa-icon i[data-lucide] { width: 26px; height: 26px; }
.qa-arrow { width: 18px; height: 18px; }
.servico-icon i[data-lucide] { width: 32px; height: 32px; }
.esp-badge i[data-lucide] { width: 20px; height: 20px; }
.feature-icon i[data-lucide] { width: 20px; height: 20px; }
.servico-link i[data-lucide] { width: 14px; height: 14px; }
.esp-link i[data-lucide] { width: 14px; height: 14px; }
.agendar-icon-wrap i[data-lucide] { width: 28px; height: 28px; }
.footer-contact-item i[data-lucide] { width: 16px; height: 16px; margin-top: 3px; }
.footer-col ul li a i[data-lucide] { width: 14px; height: 14px; margin-right: 6px; opacity: .6; }
.dropdown-menu a i[data-lucide] { width: 15px; height: 15px; margin-right: 8px; opacity: .7; }
.social-link i[data-lucide] { width: 17px; height: 17px; }
.back-to-top i[data-lucide] { width: 20px; height: 20px; }
.btn-primary i[data-lucide], .btn-outline i[data-lucide], .btn-hero-primary i[data-lucide],
.btn-hero-ghost i[data-lucide], .btn-phone i[data-lucide], .btn-phone-cta i[data-lucide],
.btn-directions i[data-lucide] { width: 16px; height: 16px; }
.btn-primary.btn-large i[data-lucide] { width: 18px; height: 18px; }
.servico-icon i { font-size: 28px; }
.esp-badge i { font-size: 18px; }
.qa-icon i { font-size: 24px; }
.feature-icon i { font-size: 18px; }
.servico-icon i { color: var(--blue-500); line-height: 1; }
.servico-card:hover .servico-icon i { color: #fff; }

/* ════════════════════════════════════════
   MÉDICOS BUSCA WIDGET
════════════════════════════════════════ */
.medicos { padding: 80px 0; background: var(--bg-soft); }

.medico-busca-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(13,32,68,.12);
  border: 1px solid #edf0f7;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.medico-busca-inner { display: flex; align-items: stretch; }
.medico-busca-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
}
.medico-busca-field svg { color: #7a90b3; flex-shrink: 0; }
.medico-busca-field input, .medico-busca-field select { flex: 1; border: none; outline: none; font-size: 1rem; font-family: inherit; color: #0d1f3c; background: transparent; font-weight: 500; }
.medico-busca-field input::placeholder { color: #7a90b3; font-weight: 400; }
.medico-busca-field select { cursor: pointer; color: #7a90b3; }
.medico-busca-field select:focus, .medico-busca-field select:valid { color: #0d1f3c; }
.medico-busca-divider { width: 1px; background: #edf0f7; margin: 16px 0; flex-shrink: 0; }
.medico-busca-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a5ccc;
  color: #fff;
  border: none;
  padding: 0 36px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border-radius: 0 20px 20px 0;
}
.medico-busca-btn:hover { background: #2e7ae0; }

@media (max-width: 768px) {
  .medico-busca-inner { flex-direction: column; }
  .medico-busca-divider { width: auto; height: 1px; margin: 0 20px; }
  .medico-busca-btn { border-radius: 0 0 20px 20px; padding: 18px; justify-content: center; }
}

.hero-slide:not(.active) .hero-eyebrow,
.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-desc,
.hero-slide:not(.active) .hero-ctas {
  opacity: 1;
  transform: none;
}