/* ============================================================
   Clínica Pollyany Policarpo — Design System & Shared Styles
   Árvore de Links, Páginas dos Doutores & Landing Pages (v3.0)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ---------- Brand Design Tokens ---------- */
:root {
  /* Core Palette */
  --purple-black:    #1A1020;
  --purple-deep:     #2A1B35;
  --purple-dark:     #3D2A4D;
  --purple:          #5D4170;
  --purple-light:    #7E5C94;
  --purple-border:   rgba(93, 65, 112, 0.45);

  /* Gold & Accent */
  --gold:            #DCC397;
  --gold-light:      #E8D5B3;
  --gold-glow:       rgba(220, 195, 151, 0.35);
  --gold-border:     rgba(220, 195, 151, 0.32);
  --bronze:          #BD916F;
  --blush:           #FFDBBA;

  /* Neutrals */
  --white:           #FAFAF8;
  --white-pure:      #FFFFFF;
  --gray-light:      #C5BCC9;
  --gray-muted:      #9E93A6;

  /* Typography */
  --font-main:       'Poppins', 'Century Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Geometry */
  --radius-sm:       10px;
  --radius-md:       16px;
  --radius-lg:       22px;
  --radius-xl:       30px;
  --radius-full:     9999px;

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--purple-black);
}

body {
  font-family: var(--font-main);
  background-color: var(--purple-black);
  color: var(--white);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Luxury Grain Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ---------- Ambient Blobs & Enhanced Brand Particles (18 particles) ---------- */
.ambient-blob-wrap {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  will-change: transform;
}

.ambient-blob--1 {
  width: clamp(260px, 50vw, 440px);
  height: clamp(260px, 50vw, 440px);
  background: radial-gradient(circle, var(--gold) 0%, var(--purple) 70%);
  top: -5%;
  right: -10%;
  animation: floatBlob1 22s ease-in-out infinite alternate;
}

.ambient-blob--2 {
  width: clamp(220px, 45vw, 380px);
  height: clamp(220px, 45vw, 380px);
  background: radial-gradient(circle, var(--purple-light) 0%, var(--purple-deep) 75%);
  bottom: 10%;
  left: -10%;
  animation: floatBlob2 26s ease-in-out infinite alternate;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
  100% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.92); }
}

/* Enhanced Floating Gold Dust Particles (18 Particles) */
.brand-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  box-shadow: 0 0 8px var(--gold-glow);
  will-change: transform, opacity;
}

.particle--1  { width: 3px;   height: 3px;   top: 12%; left: 8%;   animation: particleFloatA 15s infinite ease-in-out 0s; }
.particle--2  { width: 4.5px; height: 4.5px; top: 22%; right: 12%; animation: particleFloatB 18s infinite ease-in-out 2s; }
.particle--3  { width: 2px;   height: 2px;   top: 32%; left: 16%;  animation: particleFloatA 13s infinite ease-in-out 4s; }
.particle--4  { width: 3.5px; height: 3.5px; top: 40%; right: 20%; animation: particleFloatC 20s infinite ease-in-out 1s; }
.particle--5  { width: 2px;   height: 2px;   top: 48%; left: 6%;   animation: particleFloatB 16s infinite ease-in-out 5s; }
.particle--6  { width: 4px;   height: 4px;   top: 55%; right: 8%;  animation: particleFloatA 17s infinite ease-in-out 3s; }
.particle--7  { width: 1.5px; height: 1.5px; top: 62%; left: 24%;  animation: particleFloatC 14s infinite ease-in-out 6s; }
.particle--8  { width: 3px;   height: 3px;   top: 70%; right: 28%; animation: particleFloatB 19s infinite ease-in-out 2.5s; }
.particle--9  { width: 2.5px; height: 2.5px; top: 78%; left: 10%;  animation: particleFloatA 15s infinite ease-in-out 7s; }
.particle--10 { width: 4px;   height: 4px;   top: 85%; right: 14%; animation: particleFloatC 22s infinite ease-in-out 0.5s; }
.particle--11 { width: 2px;   height: 2px;   top: 92%; left: 30%;  animation: particleFloatB 16s infinite ease-in-out 8s; }
.particle--12 { width: 3px;   height: 3px;   top: 5%;  left: 45%;  animation: particleFloatA 21s infinite ease-in-out 4.5s; }
.particle--13 { width: 2.5px; height: 2.5px; top: 28%; left: 82%;  animation: particleFloatC 17s infinite ease-in-out 3.5s; }
.particle--14 { width: 4px;   height: 4px;   top: 46%; left: 52%;  animation: particleFloatB 19s infinite ease-in-out 6.5s; }
.particle--15 { width: 1.5px; height: 1.5px; top: 67%; left: 75%;  animation: particleFloatA 14s infinite ease-in-out 1.5s; }
.particle--16 { width: 3.5px; height: 3.5px; top: 82%; left: 42%;  animation: particleFloatC 18s infinite ease-in-out 5.5s; }
.particle--17 { width: 2px;   height: 2px;   top: 95%; right: 35%; animation: particleFloatB 15s infinite ease-in-out 9s; }
.particle--18 { width: 3px;   height: 3px;   top: 15%; right: 40%; animation: particleFloatA 20s infinite ease-in-out 8.5s; }

@keyframes particleFloatA {
  0%   { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  25%  { opacity: 0.55; }
  50%  { transform: translateY(-40px) translateX(12px) scale(1.1); opacity: 0.75; }
  75%  { opacity: 0.4; }
  100% { transform: translateY(-80px) translateX(-8px) scale(0.6); opacity: 0; }
}

@keyframes particleFloatB {
  0%   { transform: translateY(0) translateX(0) scale(0.9); opacity: 0; }
  25%  { opacity: 0.6; }
  50%  { transform: translateY(-35px) translateX(-15px) scale(1.15); opacity: 0.8; }
  75%  { opacity: 0.35; }
  100% { transform: translateY(-70px) translateX(10px) scale(0.7); opacity: 0; }
}

@keyframes particleFloatC {
  0%   { transform: translateY(0) translateX(0) scale(0.7); opacity: 0; }
  25%  { opacity: 0.45; }
  50%  { transform: translateY(-45px) translateX(8px) scale(1.05); opacity: 0.65; }
  75%  { opacity: 0.3; }
  100% { transform: translateY(-90px) translateX(-14px) scale(0.5); opacity: 0; }
}

/* ---------- Main Layout Container (Max 480px) ---------- */
.hub-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.15rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---------- Top Brand Header ---------- */
.hub-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.35rem;
  width: 100%;
}

.hub-logo-link {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  margin-bottom: 0.25rem;
}

.hub-logo-link:hover {
  transform: scale(1.03);
}

.hub-logo {
  width: 210px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Top Back Navigation (Doctor Pages) */
.hub-nav-back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.btn-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(42, 27, 53, 0.6);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-back-link:hover {
  background: rgba(93, 65, 112, 0.4);
  color: var(--white);
  border-color: var(--gold);
  transform: translateX(-3px);
}

.btn-back-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ---------- Video Stage (YouTube Shorts 9:16) ---------- */
.video-stage-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.video-ambient-glow {
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgba(220, 195, 151, 0.28) 0%, rgba(93, 65, 112, 0.4) 60%, transparent 80%);
  filter: blur(28px);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
  animation: ambientPulse 7s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 0.85; filter: blur(34px); }
  100% { transform: scale(0.96); opacity: 0.6; }
}

.video-frame-wrap {
  width: 100%;
  max-width: 320px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--purple-deep);
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.video-frame-wrap--shorts {
  aspect-ratio: 9 / 16;
}

.video-lazy-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--purple-deep);
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
  z-index: 5;
}

.video-lazy-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 16, 32, 0.2) 0%, rgba(26, 16, 32, 0.75) 100%);
}

.play-btn-circle {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 195, 151, 0.4), 0 0 0 6px rgba(220, 195, 151, 0.2);
  transition: all 0.3s var(--ease-spring);
}

.video-lazy-placeholder:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(220, 195, 151, 0.6), 0 0 0 10px rgba(220, 195, 151, 0.3);
}

.play-btn-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--purple-black);
  margin-left: 3px;
}

.video-lazy-label {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(26, 16, 32, 0.75);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(220, 195, 151, 0.3);
}

.video-iframe-slot {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---------- Review Badge ---------- */
.badge-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(42, 27, 53, 0.7);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.badge-review-link:hover {
  background: rgba(93, 65, 112, 0.35);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 195, 151, 0.25);
}

.stars-group {
  display: inline-flex;
  gap: 2px;
}

.stars-group svg {
  width: 14px;
  height: 14px;
  fill: #FFC107;
}

.badge-review-text {
  color: var(--white);
  font-weight: 500;
}

.badge-review-score {
  color: var(--gold-light);
  font-weight: 700;
}

/* ---------- Button Groups & Sections ---------- */
.buttons-hub-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.button-group-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.group-section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.85;
  padding-left: 0.4rem;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.group-section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 195, 151, 0.25) 0%, transparent 100%);
}

/* ============================================================
   HIERARQUIA VISUAL DOS BOTÕES
   ============================================================ */

/* ---------- NÍVEL 1: WhatsApp Principal (Destaque Máximo) ---------- */
.hub-btn--level-1 {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  color: var(--white-pure) !important;
  text-decoration: none !important;
  font-size: 1.02rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
  animation: waPulse 3s infinite;
  transition: all 0.25s var(--ease-out);
}

.hub-btn--level-1:hover {
  background: linear-gradient(135deg, #15a090 0%, #086b60 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

.hub-btn--level-1:active {
  transform: scale(0.98);
}

.hub-btn--level-1 .hub-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.hub-btn--level-1 .hub-btn__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hub-btn--level-1 .hub-btn__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hub-btn--level-1 .hub-btn__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.5), 0 8px 25px rgba(18, 140, 126, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(18, 140, 126, 0), 0 8px 25px rgba(18, 140, 126, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(18, 140, 126, 0), 0 8px 25px rgba(18, 140, 126, 0.4);
  }
}

/* ---------- ITEM 1: Cards dos Doutores (Proporção 2.5 : 1, Foto 40%, Gap 18px e Textos Ampliados) ---------- */
.hub-card--doctor {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: linear-gradient(135deg, rgba(61, 42, 77, 0.9) 0%, rgba(42, 27, 53, 0.98) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.hub-card--doctor:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 195, 151, 0.75);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48), 0 0 18px rgba(220, 195, 151, 0.22);
}

.hub-card--doctor:active {
  transform: scale(0.985);
}

/* Container da foto ocupando 40% da largura do card e 100% da altura */
.hub-card__doctor-photo-wrap {
  flex: 0 0 40%;
  width: 40%;
  max-width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.hub-card__doctor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.65));
}

/* Informações de texto: largura fit-content, encostado na foto com respiro fixo de 18px */
.hub-card__doctor-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0 1 auto;
  width: fit-content;
  max-width: calc(60% - 20px);
  text-align: left;
  height: 100%;
  padding: 1.15rem 0;
  z-index: 2;
}

/* Card Padrão (Foto na esquerda): texto encosta na foto com 18px, sobra na direita */
.hub-card--doctor:not(.hub-card--doctor-reverse) .hub-card__doctor-info {
  margin-left: 18px;
  margin-right: auto;
}

/* Card Reverso (Foto na direita): texto com respiro elegante de 1.35rem da borda esquerda */
.hub-card--doctor.hub-card--doctor-reverse .hub-card__doctor-info {
  margin-left: 1.35rem;
  margin-right: auto;
}

.hub-card--doctor.hub-card--doctor-reverse .hub-card__doctor-photo-wrap {
  margin-left: auto;
}

/* Nome do doutor aumentado (+30%) com dominância e text-wrap balance */
.hub-card__doctor-info .hub-card__title {
  font-size: clamp(1.42rem, 4.3vw, 1.72rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  display: block;
}

/* Especialidade aumentada (+25%) e sempre em uma única linha */
.hub-card__doctor-info .hub-card__sub {
  font-size: clamp(0.74rem, 2.2vw, 0.88rem);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.25;
  white-space: nowrap;
  overflow: visible;
  margin-top: 6px;
  margin-bottom: 14px;
  opacity: 0.95;
  display: block;
}

/* Micro-badge / Mensagem "Clique aqui" (Mantido intacto) */
.btn-click-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(26, 16, 32, 0.65);
  border: 1px solid rgba(220, 195, 151, 0.35);
  border-radius: var(--radius-full);
  padding: 0.26rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}

.btn-click-hint svg {
  width: 11px;
  height: 11px;
  fill: var(--gold);
  transition: transform 0.22s var(--ease-out);
}

.hub-card--doctor:hover .btn-click-hint,
.hub-card--proc:hover .btn-click-hint {
  background: rgba(220, 195, 151, 0.25);
  border-color: var(--gold);
  color: var(--white);
  transform: translateX(2px);
}

.hub-card--doctor:hover .btn-click-hint svg,
.hub-card--proc:hover .btn-click-hint svg {
  transform: translateX(2px);
  fill: var(--white);
}

/* ---------- ITEM 4: Cards de Procedimento com Ícones 3D Soltos e Aumentados (Sem Moldura) ---------- */
.hub-card--proc {
  width: 100%;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.85rem 0.9rem 1.15rem;
  background: linear-gradient(135deg, rgba(61, 42, 77, 0.85) 0%, rgba(42, 27, 53, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.hub-card--proc:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 195, 151, 0.65);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(220, 195, 151, 0.22);
}

.hub-card--proc:active {
  transform: scale(0.98);
}

/* Ícone 3D Solto sem caixa/moldura, aumentado ~35% */
.hub-card__proc-3d-free {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.85rem;
}

.hub-card__proc-3d-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s var(--ease-spring);
}

.hub-card--proc:hover .hub-card__proc-3d-img {
  transform: scale(1.15) translateY(-2px);
}

.hub-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  text-align: left;
  padding-right: 0.5rem;
}

.hub-card__info .hub-card__title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  display: block;
}

.hub-card__info .hub-card__sub {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.35;
  margin-top: 4px;
  display: block;
}

/* ---------- Card de Localização (Layout Lateral com Imagem Transparente sem Fundo Roxo Artificial) ---------- */
.hub-card--location {
  width: 100%;
  min-height: 145px;
  display: flex;
  position: relative;
  background: linear-gradient(135deg, #2E1B3B 0%, #1F1228 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hub-card--location:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 195, 151, 0.2);
}

.hub-card--location:active {
  transform: scale(0.985);
}

.location-card__content {
  flex: 1.15;
  padding: 1.15rem 0.75rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.location-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.location-card__headline {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.location-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: var(--purple-black);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.location-card__pill svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.location-card__address {
  font-size: 0.72rem;
  color: var(--gray-light);
  line-height: 1.35;
  opacity: 0.95;
}

.location-card__image-wrap {
  flex: 1.1;
  min-height: 145px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s var(--ease-out);
}

.hub-card--location:hover .location-card__img {
  transform: scale(1.04);
}

/* ---------- ITEM 10.2: NÍVEL 3: Redes Sociais com Apresentação 3D de Marcas Oficiais ---------- */
.hub-btn--level-3 {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: rgba(42, 27, 53, 0.65);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.22s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.hub-btn--level-3:hover {
  transform: translateY(-2px);
  background: rgba(93, 65, 112, 0.35);
  border-color: var(--gold-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.hub-btn--level-3:active {
  transform: scale(0.98);
}

/* Contêiner 3D para Ícone de Marca */
.brand-3d-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: transform 0.25s var(--ease-spring);
}

.hub-btn--level-3:hover .brand-3d-badge,
.hub-btn--google-review:hover .brand-3d-badge {
  transform: scale(1.08);
}

/* Instagram 3D Badge */
.brand-3d-badge--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.brand-3d-badge--instagram svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Facebook 3D Badge */
.brand-3d-badge--facebook {
  background: linear-gradient(180deg, #1877F2 0%, #0d5ec4 100%);
}

.brand-3d-badge--facebook svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Google 4-Color Official 3D Badge */
.brand-3d-badge--google {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 1px #FFFFFF;
}

.brand-3d-badge--google svg {
  width: 20px;
  height: 20px;
}

.hub-btn--level-3 .hub-btn__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.hub-btn--level-3 .hub-btn__sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-light);
}

.hub-btn--level-3 .hub-btn__arrow {
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0.6;
}

/* ---------- ITEM 3: Botão de Avaliação do Google com Destaque e 5 Estrelas Animadas ---------- */
.hub-btn--google-review {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, rgba(74, 48, 96, 0.85) 0%, rgba(42, 27, 53, 0.95) 100%);
  border: 1.5px solid rgba(220, 195, 151, 0.45);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(220, 195, 151, 0.18);
  transition: all 0.28s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.hub-btn--google-review:hover {
  transform: translateY(-2.5px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(93, 65, 112, 0.9) 0%, rgba(55, 36, 68, 0.98) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48), 0 0 24px rgba(220, 195, 151, 0.35);
}

.hub-btn--google-review:active {
  transform: scale(0.98);
}

.hub-btn--google-review .hub-btn__title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
}

.hub-btn--google-review .hub-btn__sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-light);
}

.hub-btn--google-review .hub-btn__arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  opacity: 0.85;
}

/* 5 Estrelas Douradas com Animação Sequencial */
.google-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}

.google-review-stars .star {
  width: 14px;
  height: 14px;
  fill: #FFC107;
  opacity: 0.3;
  transform: scale(0.85);
  animation: starLightUp 0.5s ease-out forwards, starPeriodicShimmer 5s ease-in-out infinite;
}

.google-review-stars .star--1 { animation-delay: 0.1s, 2s; }
.google-review-stars .star--2 { animation-delay: 0.25s, 2.15s; }
.google-review-stars .star--3 { animation-delay: 0.4s, 2.3s; }
.google-review-stars .star--4 { animation-delay: 0.55s, 2.45s; }
.google-review-stars .star--5 { animation-delay: 0.7s, 2.6s; }

@keyframes starLightUp {
  0% {
    opacity: 0.2;
    transform: scale(0.8);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    filter: drop-shadow(0 0 6px #FFD700);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.6));
  }
}

@keyframes starPeriodicShimmer {
  0%, 80%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.6));
  }
  90% {
    transform: scale(1.22);
    filter: drop-shadow(0 0 8px #FFF070);
  }
}

.hub-btn--google-review:hover .google-review-stars .star {
  filter: drop-shadow(0 0 6px #FFD700);
}

/* ============================================================
   ITEM 7: Avaliações do Google — Carrossel Automático Contínuo (Marquee)
   ============================================================ */
.reviews-section-hub {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-section-title {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}

.reviews-marquee-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1.25rem;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 8%, rgba(0,0,0,1) 92%, transparent 100%);
  cursor: grab;
}

.reviews-marquee-track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  animation: reviewsMarqueeAnim 45s linear infinite;
  will-change: transform;
}

.reviews-marquee-wrap:hover .reviews-marquee-track,
.reviews-marquee-wrap:focus-within .reviews-marquee-track,
.reviews-marquee-wrap.is-paused .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsMarqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.575rem));
  }
}

.review-hub-card {
  width: 300px;
  flex: 0 0 300px;
  background: rgba(42, 27, 53, 0.82);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.review-hub-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.review-hub-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-hub-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: var(--purple-black);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-hub-card__author-info {
  display: flex;
  flex-direction: column;
}

.review-hub-card__author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.review-hub-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.review-hub-card__stars svg {
  width: 13px;
  height: 13px;
  fill: #FFC107;
}

.review-hub-card__text {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
  font-style: italic;
}

.reviews-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.2s var(--ease-out);
}

.reviews-all-link:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.reviews-all-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   ITEM 9: Nova Seção — Vídeos de Depoimento de Pacientes (Reels 9:16)
   ============================================================ */
.testimonials-video-section {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-video-title {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.15rem;
  text-align: center;
}

.testimonials-video-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 440px) {
  .testimonials-video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.testimonial-video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--purple-deep);
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botão de Som Proeminente e Visível */
.testimonial-audio-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(26, 16, 32, 0.85);
  border: 1.5px solid var(--gold);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: all 0.25s var(--ease-spring);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.testimonial-audio-btn:hover {
  background: var(--gold);
  color: var(--purple-black);
  transform: scale(1.06);
}

.testimonial-audio-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   ITEM 5 & ITEM 6: Doctor Individual Profile Card (Foto Grande e Botão WhatsApp)
   ============================================================ */
.doctor-profile-card {
  width: 100%;
  background: rgba(42, 27, 53, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden; /* foto encosta nas laterais */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* Foto do Doutor ocupando toda a largura do card com espaçamento superior */
.doctor-profile-photo-wrap {
  width: 100%;
  margin: 0;
  padding: 1.5rem 1rem 0 1rem;
  background: linear-gradient(180deg, rgba(61, 42, 77, 0.5) 0%, rgba(26, 16, 32, 0.95) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-bottom: 1px solid rgba(220, 195, 151, 0.2);
  overflow: hidden;
}

.doctor-full-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.doctor-profile-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.doctor-profile-header {
  text-align: center;
  margin-bottom: 1.15rem;
  width: 100%;
}

.doctor-profile-name {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.doctor-profile-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.doctor-profile-specialty {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.doctor-profile-cro {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.doctor-profile-bio {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  text-align: left;
  border-top: 1px solid rgba(220, 195, 151, 0.15);
  padding-top: 1.15rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

/* Botão WhatsApp Específico para Perfil do Doutor */
.hub-btn--whatsapp-doctor {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  color: var(--white-pure) !important;
  text-decoration: none !important;
  font-size: 0.98rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
  animation: waPulse 3s infinite;
  transition: all 0.25s var(--ease-out);
}

.hub-btn--whatsapp-doctor:hover {
  background: linear-gradient(135deg, #15a090 0%, #086b60 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

.hub-btn--whatsapp-doctor:active {
  transform: scale(0.98);
}

.hub-btn--whatsapp-doctor .hub-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.hub-btn--whatsapp-doctor .hub-btn__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hub-btn--whatsapp-doctor .hub-btn__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.hub-btn--whatsapp-doctor .hub-btn__sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

.hub-btn--whatsapp-doctor .hub-btn__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #FFFFFF;
  opacity: 0.85;
}

.hub-btn--whatsapp-doctor .hub-btn__arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ---------- Compliance Footer ---------- */
.hub-footer {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(220, 195, 151, 0.12);
}

.hub-footer__clinic-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hub-footer__address {
  font-size: 0.78rem;
  color: var(--gray-light);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.hub-footer__cros {
  font-size: 0.74rem;
  color: var(--gray-muted);
  line-height: 1.5;
}

/* ---------- LGPD Cookie Consent Toast ---------- */
.lgpd-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 2rem);
  max-width: 480px;
  background: rgba(30, 18, 40, 0.94);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  transition: transform 0.45s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lgpd-banner.is-active {
  transform: translateX(-50%) translateY(0);
}

.lgpd-banner__text {
  font-size: 0.78rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.lgpd-banner__buttons {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
}

.btn-lgpd {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  font-family: inherit;
  border: none;
}

.btn-lgpd--reject {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(220, 195, 151, 0.25);
}

.btn-lgpd--reject:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-lgpd--accept {
  background: var(--gold);
  color: var(--purple-black);
}

.btn-lgpd--accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ---------- Cascading Entrance Animation ---------- */
.cascade-item {
  opacity: 0;
  transform: translateY(18px);
  animation: cascadeEntrance 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cascadeEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.04s; }
.delay-2 { animation-delay: 0.08s; }
.delay-3 { animation-delay: 0.12s; }
.delay-4 { animation-delay: 0.16s; }
.delay-5 { animation-delay: 0.20s; }
.delay-6 { animation-delay: 0.24s; }
.delay-7 { animation-delay: 0.28s; }
.delay-8 { animation-delay: 0.32s; }
.delay-9 { animation-delay: 0.36s; }
.delay-10 { animation-delay: 0.40s; }
.delay-11 { animation-delay: 0.44s; }
.delay-12 { animation-delay: 0.48s; }

/* ---------- Accessibility & Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cascade-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .ambient-blob, .particle, .video-ambient-glow, .hub-btn--level-1, .hub-btn--whatsapp-doctor {
    animation: none !important;
  }
  .reviews-marquee-track {
    animation: none !important;
    overflow-x: auto !important;
  }
}
