/**
 * Main CSS - Clínica Phoenix
 * Estrutura de layout, seções institucionais e dinâmicas de scroll
 * Em estrita conformidade com landing-page-design
 */
/* tokens.css e components.css já são carregados diretamente via <link> no index.html */
/* ==========================================
 * RESET E CONFIGURAÇÕES GLOBAIS
 * ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: var(--leading-base);
  font-size: var(--text-base);
  overflow-x: clip;
}

.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;
}

/* Linha superior: responde ao avanço real da leitura sem ocupar espaço. */
.page-motion-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 3000;
  pointer-events: none;
  background-color: rgba(2, 132, 199, 0.08);
}

.page-motion-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--primary-accent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

/* Link de salto de acessibilidade (B10) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--spacing-300);
  background-color: var(--primary-navy);
  color: var(--text-inverse);
  padding: var(--spacing-100) var(--spacing-300);
  border-radius: var(--radius-md);
  z-index: 9999;
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: top var(--duration-fluid) var(--ease-fluid);
}

.skip-to-content:focus {
  top: var(--spacing-200);
  outline: 2px solid var(--border-focus);
}

/* Containers de Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--spacing-300);
}

.container-narrow {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--spacing-300);
}

/* Seções Padrão (B2 - Espaçamentos Oficiais) */
.section {
  padding: var(--spacing-900) 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

/* Títulos e Tipografia das Seções (B1, B5) */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--spacing-700);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-50);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #128C7E;
  background-color: #FFFFFF;
  padding: 4px var(--spacing-100);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-200);
  border: 1px solid rgba(18, 140, 126, 0.25);
  position: relative;
  overflow: hidden;
}

.js-clinic-address {
  white-space: pre-line;
}

.section-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.8) 48%, transparent 70%);
  transform: translateX(-140%);
  animation: tag-sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

.section-title {
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-200);
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ==========================================
 * ABERTURA CINEMATOGRÁFICA EM VÍDEO
 * ========================================== */
.motion-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background-color: #FAF8F5;
}

.motion-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.motion-hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.72);
}

.motion-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 144px 32px 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.motion-hero-copy {
  width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--primary-navy);
  margin-top: clamp(180px, 22vh, 260px);
  padding-top: 60px;
}

.motion-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 39, 68, 0.16);
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-navy);
  box-shadow: 0 10px 32px rgba(15, 39, 68, 0.08);
}

.motion-hero-title {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: var(--font-medium);
  color: #FFFFFF;
  letter-spacing: -0.045em;
  text-align: left;
  text-wrap: balance;
  text-shadow: none;
  -webkit-text-stroke: 0.4px rgba(18, 140, 126, 0.45);
}

.motion-hero-meta {
  padding: 7px 12px;
  margin-top: 24px;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
}

.motion-sync-item {
  opacity: 0;
  transform: translateY(20px);
}

.motion-hero-copy.is-synced .motion-sync-item {
  animation: motion-hero-fade-up 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-hero-copy.is-synced .sync-1 { animation-delay: 0ms; }
.motion-hero-copy.is-synced .sync-2 { animation-delay: 120ms; }
.motion-hero-copy.is-synced .sync-3 { animation-delay: 240ms; }

@keyframes motion-hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
 * RECEPÇÃO EM TELA CHEIA
 * ========================================== */
.reception-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.reception-banner-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.reception-banner-caption {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-main);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  box-shadow: var(--shadow-lg);
}

.reception-banner-caption i {
  color: var(--primary-accent);
}

/* ==========================================
 * MENSAGEM PRINCIPAL
 * ========================================== */
.intro-section {
  padding: clamp(96px, 9vw, 136px) 0 clamp(88px, 8vw, 120px);
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.intro-container {
  max-width: 1440px;
  padding-inline: clamp(24px, 4vw, 48px);
}

.intro-content {
  width: 100%;
  text-align: left;
}

.intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.intro-index {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #128C7E;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
  font-weight: var(--font-semibold);
  letter-spacing: 0.02em;
}

.intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--font-medium);
}

.intro-kicker i {
  color: #128C7E;
  font-size: 15px;
}

.intro-title {
  max-width: 1200px;
  margin: 0 0 clamp(64px, 8vw, 112px);
  color: var(--primary-navy);
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.01;
  font-weight: var(--font-medium);
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.intro-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  align-items: start;
  gap: clamp(48px, 7vw, 104px);
}

.intro-rule {
  padding-top: 11px;
  --reveal-x: -28px;
  --reveal-y: 0px;
}

.intro-rule span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(15, 39, 68, 0.18);
  transform-origin: left center;
}

.intro-copy {
  max-width: 570px;
}

.intro-description {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: var(--font-normal);
  text-wrap: pretty;
}

.intro-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.intro-cta {
  min-height: 52px;
  padding: 7px 8px 7px 20px;
  gap: 11px;
  overflow: hidden;
  background-color: #128C7E;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.18);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.intro-cta:hover,
.intro-cta:focus-visible {
  background-color: #0E756A;
  color: #FFFFFF;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.24);
  transform: translateY(-1px);
  outline: 2px solid rgba(18, 140, 126, 0.28);
  outline-offset: 3px;
}

.intro-cta-whatsapp {
  flex: 0 0 auto;
  font-size: 19px;
}

.intro-cta-roll {
  height: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-semibold);
}

.intro-cta-roll > span {
  height: 22px;
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  transition: transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.intro-cta:hover .intro-cta-roll > span,
.intro-cta:focus-visible .intro-cta-roll > span {
  transform: translateY(-22px);
}

.intro-cta-arrow {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #128C7E;
  font-size: 17px;
  transform: rotate(-45deg);
  transition: transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.intro-cta:hover .intro-cta-arrow,
.intro-cta:focus-visible .intro-cta-arrow {
  transform: rotate(0deg);
}

.intro-support-note {
  padding-left: 4px;
}

.intro-delay-1 { --reveal-delay: 100ms; }
.intro-delay-2 { --reveal-delay: 200ms; }
.intro-delay-3 { --reveal-delay: 300ms; }

/* ==========================================
 * HERO LEGADO (tipografia reaproveitada na introdução)
 * ========================================== */
.hero-section {
  padding-top: calc(88px + var(--spacing-800));
  padding-bottom: var(--spacing-900);
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

.ambient-grid {
  position: absolute;
  inset: 5% -8% 18%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(2, 132, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 8%, transparent 72%);
  transform: perspective(900px) rotateX(64deg) translateY(-12%);
  transform-origin: center top;
}

.ambient-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  will-change: transform;
}

.ambient-orb-one {
  width: clamp(190px, 28vw, 420px);
  aspect-ratio: 1;
  top: 15%;
  left: -10%;
  background: radial-gradient(circle at 35% 32%, rgba(255,255,255,0.9), rgba(56,189,248,0.23) 32%, rgba(2,132,199,0.04) 68%, transparent 72%);
  animation: ambient-float-left 11s var(--ease-fluid) infinite alternate;
}

.ambient-orb-two {
  width: clamp(150px, 22vw, 330px);
  aspect-ratio: 1;
  top: 28%;
  right: -7%;
  background: radial-gradient(circle at 38% 38%, rgba(255,255,255,0.94), rgba(30,58,138,0.18) 34%, rgba(2,132,199,0.03) 68%, transparent 72%);
  animation: ambient-float-right 13s var(--ease-fluid) infinite alternate;
}

.ambient-ring {
  position: absolute;
  width: clamp(210px, 34vw, 520px);
  aspect-ratio: 1;
  top: 10%;
  left: 50%;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(66deg);
  box-shadow: 0 0 0 42px rgba(2, 132, 199, 0.018), 0 0 0 84px rgba(2, 132, 199, 0.012);
  animation: ambient-ring-breathe 8s ease-in-out infinite;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  margin-bottom: var(--spacing-300);
}

/* H1 com gradiente suave do tema light (#000000 -> #666666) conforme regra explícita de B5 */
.hero-title {
  font-size: var(--text-5xl);
  line-height: var(--leading-5xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-300);
  text-wrap: balance;
  background: linear-gradient(135deg, #000000 0%, #666666 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-title-shimmer 7s ease-in-out infinite alternate;
}

.hero-description {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  color: var(--text-muted);
  margin-bottom: var(--spacing-400);
  text-wrap: pretty;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-100);
  margin-bottom: var(--spacing-700);
}

.hero-support-note {
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--spacing-50);
}

/* Foto do Hero com estética acolhedora */
.hero-media-card {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background-color: var(--bg-secondary);
  position: relative;
  transform-style: preserve-3d;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
  transform: scale(1.015);
  transition: transform 1000ms var(--ease-fluid), filter 1000ms var(--ease-fluid);
}

.hero-media-card:hover .hero-img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.hero-img-badge {
  position: absolute;
  bottom: var(--spacing-300);
  left: var(--spacing-300);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--spacing-75) var(--spacing-200);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: var(--spacing-75);
  transform: translateZ(44px);
}

/* ==========================================
 * FAIXA CINÉTICA CONTÍNUA
 * ========================================== */
.motion-rail {
  overflow: hidden;
  background-color: #E8F3EE;
  color: #176C60;
  border-block: 1px solid rgba(18, 140, 126, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.motion-rail-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.motion-rail-track.is-ready {
  animation: motion-rail-loop 28s linear infinite;
}

.motion-rail-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--spacing-300);
  padding: var(--spacing-200) 0 var(--spacing-200) var(--spacing-300);
}

.motion-rail-group span {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-rail-group i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #128C7E;
  box-shadow: 0 0 10px rgba(18, 140, 126, 0.2);
  flex: 0 0 auto;
}

/* ==========================================
 * TAGLINE REVEAL SECTION (B11 - Obrigatória)
 * Texto mínimo de duas linhas revelado palavra por palavra
 * ========================================== */
.tagline-section {
  padding: var(--spacing-900) 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.tagline-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.tagline-heading {
  font-size: var(--text-4xl);
  line-height: var(--leading-4xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Cada palavra inicia com opacidade suave (~30%) e ativa com o scroll */
.tagline-word {
  display: inline-block;
  color: var(--primary-navy);
  opacity: 0.28;
  transition: opacity var(--duration-fluid) var(--ease-fluid), transform var(--duration-fluid) var(--ease-fluid);
  transform: translateY(2px);
}

.tagline-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
 * EXPERIÊNCIA DE ATENDIMENTO (Benefícios)
 * ========================================== */
.care-experience {
  isolation: isolate;
  background-color: #FFFFFF;
}

.care-experience > .container {
  position: relative;
  z-index: 1;
}

.care-floating-teeth {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

/* Original tooth artwork supplied by the user's reference site. */
.care-tooth {
  position: absolute;
  width: var(--tooth-size, 80px);
  aspect-ratio: 1;
  background-color: #128C7E;
  -webkit-mask: url('../assets/images/floating-tooth.png') center / contain no-repeat;
  mask: url('../assets/images/floating-tooth.png') center / contain no-repeat;
  opacity: var(--tooth-opacity, 0.13);
  transform: rotate(var(--tooth-angle, -14deg));
  animation: care-tooth-drift var(--tooth-duration, 9s) ease-in-out infinite;
  animation-delay: var(--tooth-delay, 0s);
  animation-play-state: paused;
}

.care-experience.is-in-view .care-tooth {
  animation-play-state: running;
}

.care-tooth-one {
  --tooth-size: clamp(64px, 6vw, 88px);
  top: 44px;
  left: 6%;
}

.care-tooth-two {
  --tooth-size: 64px;
  --tooth-angle: 18deg;
  --tooth-drift-x: -12px;
  --tooth-duration: 11s;
  --tooth-delay: -3s;
  --tooth-opacity: 0.11;
  top: 56px;
  right: 8%;
}

.care-tooth-three {
  --tooth-size: 76px;
  --tooth-angle: 12deg;
  --tooth-drift-x: -8px;
  --tooth-duration: 10s;
  --tooth-delay: -6s;
  --tooth-opacity: 0.12;
  bottom: 28px;
  left: 16%;
}

.care-tooth-four {
  --tooth-size: 92px;
  --tooth-angle: -24deg;
  --tooth-duration: 12s;
  --tooth-delay: -2s;
  --tooth-opacity: 0.11;
  bottom: 30px;
  right: 5%;
}

.care-experience .card {
  border-color: rgba(18, 140, 126, 0.16);
}

.care-experience .card:hover {
  border-color: rgba(18, 140, 126, 0.4);
}

.care-experience .card-icon-box {
  color: #128C7E;
  background-color: #F2F9F6;
  border-color: rgba(18, 140, 126, 0.2);
}

@keyframes care-tooth-drift {
  0%, 100% {
    transform: translate(0, 0) rotate(var(--tooth-angle, -14deg));
  }
  50% {
    transform: translate(var(--tooth-drift-x, 12px), -20px) rotate(calc(var(--tooth-angle, -14deg) + 8deg));
  }
}

@media (max-width: 640px) {
  .care-tooth {
    width: 48px;
    opacity: 0.11;
  }

  .care-tooth-one { top: 28px; left: 7%; }
  .care-tooth-two { top: 36px; right: 7%; }
  .care-tooth-three { bottom: 24px; left: 12%; }
  .care-tooth-four { bottom: 28px; right: 9%; }
}

@media (prefers-reduced-motion: reduce) {
  .care-tooth {
    animation: none;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-300);
}

.benefit-card-title {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  font-weight: var(--font-bold);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-75);
}

.benefit-card-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ==========================================
 * SOBRE A CLÍNICA PHOENIX
 * ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-700);
  align-items: center;
}

.about-text {
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--text-muted);
  margin-bottom: var(--spacing-300);
  text-wrap: pretty;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  margin-top: var(--spacing-400);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-100);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-main);
}

.about-feature-icon {
  color: var(--status-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-card-info {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-400);
  box-shadow: var(--shadow-md);
}

.about-card-badge {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--primary-accent);
  background-color: var(--accent-light);
  padding: 4px var(--spacing-75);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--spacing-100);
}

/* ==========================================
 * COMO FUNCIONA O CONTATO (3 Passos)
 * ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-300);
  position: relative;
}

.step-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-400);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-number {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: var(--primary-accent);
  background-color: var(--accent-light);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-200);
}

.step-title {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  font-weight: var(--font-bold);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-75);
}

.step-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ==========================================
 * APRESENTAÇÃO DA SOFIA E SIMULAÇÃO
 * ========================================== */
.sofia-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--spacing-700);
  align-items: center;
}

.sofia-points {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  margin: var(--spacing-400) 0;
}

.sofia-point-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-100);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
}

/* ==========================================
 * PROCEDIMENTOS E CORPO CLÍNICO (FALLBACK SEGURO)
 * ========================================== */
.neutral-placeholder-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-600) var(--spacing-400);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.neutral-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-200);
  border: 1px solid var(--border-subtle);
}

.neutral-placeholder-text {
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--text-muted);
  margin-bottom: var(--spacing-300);
  text-wrap: balance;
}

/* ==========================================
 * AMBIENTE DA CLÍNICA (GALERIA REALISTA)
 * ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-300);
}

.gallery-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fluid) var(--ease-fluid), box-shadow var(--duration-fluid) var(--ease-fluid);
}

.gallery-card:hover {
  translate: 0 -4px;
  box-shadow: var(--shadow-md);
}

.gallery-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 1000ms var(--ease-fluid), filter 1000ms var(--ease-fluid);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.gallery-card-caption {
  padding: var(--spacing-200);
  font-size: var(--text-xs);
  color: var(--text-muted);
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================
 * LOCALIZAÇÃO E MAPA
 * ========================== */
#localizacao {
  background-color: #E8F3EE;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-400);
  align-items: stretch;
}

.location-info-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(18, 140, 126, 0.16);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-400);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(18, 75, 62, 0.05);
}

.location-info-card .btn-secondary,
.location-info-card .btn-maps {
  background-color: #FFFFFF;
  color: #128C7E;
  border: 1px solid rgba(18, 140, 126, 0.45);
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.1);
}

.location-info-card .btn-secondary:hover,
.location-info-card .btn-maps:hover {
  background-color: #FFFFFF;
  color: #0E756A;
  border-color: #128C7E;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.16);
}

.location-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  margin: var(--spacing-300) 0;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-100);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
}

.location-map-frame {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(18, 140, 126, 0.16);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  background-color: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(18, 75, 62, 0.05);
}

.location-map-frame > iframe {
  min-height: 340px;
}

/* ==========================================
 * TRATAMENTO DE OBJEÇÕES
 * ========================================== */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-300);
}

.objection-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--spacing-300);
}

.objection-title {
  font-size: var(--text-base);
  line-height: var(--leading-base);
  font-weight: var(--font-bold);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-75);
}

.objection-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ==========================================
 * SEÇÃO CTA FINAL (Acolhedora)
 * ========================================== */
.final-cta-section {
  padding: var(--spacing-900) 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.final-cta-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-3xl);
  padding: var(--spacing-800) var(--spacing-400);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.final-cta-title {
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-200);
  text-wrap: balance;
}

.final-cta-desc {
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto var(--spacing-400);
  text-wrap: pretty;
}

/* ==========================================
 * RODAPÉ INSTITUCIONAL (B10)
 * ========================================== */
.site-footer {
  background-color: #E8F3EE;
  color: #3F655B;
  padding: var(--spacing-800) 0 var(--spacing-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  border-top: 1px solid rgba(18, 140, 126, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--spacing-600);
  margin-bottom: var(--spacing-600);
}

.footer-brand-title {
  color: #165E51;
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-100);
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: var(--spacing-100);
  margin-bottom: var(--spacing-100);
}

.brand-icon-image.footer-brand-icon {
  width: 32px;
  height: 40px;
  flex-basis: 32px;
}

.footer-col-title {
  color: #165E51;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-200);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-100);
}

.footer-link {
  color: #35685A;
  text-decoration: none;
  transition: color var(--duration-fluid) var(--ease-fluid);
  cursor: pointer;
}

.footer-link:hover {
  color: #128C7E;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(18, 140, 126, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--spacing-200);
  margin-bottom: var(--spacing-400);
  font-size: 12px;
  line-height: 1.6;
  color: #44695F;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-200);
  border-top: 1px solid rgba(18, 140, 126, 0.18);
  padding-top: var(--spacing-300);
}

.footer-description {
  margin-bottom: var(--spacing-200);
  color: #3F655B;
}

.footer-address,
.footer-location {
  color: #356356;
}

.footer-developer-link {
  color: #165E51;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration-fluid) var(--ease-fluid);
}

.footer-developer-link:hover {
  color: #128C7E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-professional-info {
  margin-top: var(--spacing-300);
  color: #44695F;
  font-size: 12px;
  line-height: 1.6;
}

/* ==========================================
 * ANIMAÇÕES DE SCROLL VIA INTERSECTION OBSERVER (B7)
 * Proibido scroll listener descontrolado
 * ========================================== */
.reveal-on-scroll {
  --reveal-x: 0px;
  --reveal-y: 36px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  opacity: 0;
  transform: perspective(1200px) translate3d(var(--reveal-x), var(--reveal-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(0.985);
  filter: blur(6px);
  transition: opacity var(--duration-reveal) var(--ease-fluid),
              transform var(--duration-reveal) var(--ease-fluid),
              filter var(--duration-reveal) var(--ease-fluid),
              box-shadow var(--duration-fluid) var(--ease-fluid);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: perspective(1200px) translate3d(0, 0, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
  filter: blur(0);
  will-change: auto;
}

.motion-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 260ms ease-out, box-shadow var(--duration-fluid) var(--ease-fluid);
}

.motion-tilt > * {
  transform-style: preserve-3d;
}

.benefits-grid .reveal-on-scroll:nth-child(odd),
.steps-grid .reveal-on-scroll:nth-child(odd),
.gallery-grid .reveal-on-scroll:nth-child(odd),
.objections-grid .reveal-on-scroll:nth-child(odd) {
  --reveal-x: -28px;
  --reveal-y: 22px;
}

.benefits-grid .reveal-on-scroll:nth-child(even),
.steps-grid .reveal-on-scroll:nth-child(even),
.gallery-grid .reveal-on-scroll:nth-child(even),
.objections-grid .reveal-on-scroll:nth-child(even) {
  --reveal-x: 28px;
  --reveal-y: 22px;
}

.benefits-grid .reveal-on-scroll:nth-child(2),
.steps-grid .reveal-on-scroll:nth-child(2),
.gallery-grid .reveal-on-scroll:nth-child(2),
.pipeline-track .pipeline-step-card:nth-child(2) { --reveal-delay: 100ms; }

.benefits-grid .reveal-on-scroll:nth-child(3),
.steps-grid .reveal-on-scroll:nth-child(3),
.gallery-grid .reveal-on-scroll:nth-child(3),
.pipeline-track .pipeline-step-card:nth-child(3) { --reveal-delay: 200ms; }

.benefits-grid .reveal-on-scroll:nth-child(4),
.objections-grid .reveal-on-scroll:nth-child(4) { --reveal-delay: 300ms; }

.objections-grid .reveal-on-scroll:nth-child(5) { --reveal-delay: 400ms; }
.objections-grid .reveal-on-scroll:nth-child(6) { --reveal-delay: 500ms; }

@keyframes motion-rail-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--motion-rail-shift), 0, 0); }
}

@keyframes hero-title-shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes ambient-float-left {
  from { transform: translate3d(0, 0, 0) scale(0.96); }
  to { transform: translate3d(42px, 28px, 0) scale(1.06); }
}

@keyframes ambient-float-right {
  from { transform: translate3d(0, 8px, 0) scale(1); }
  to { transform: translate3d(-34px, -24px, 0) scale(1.08); }
}

@keyframes ambient-ring-breathe {
  0%, 100% { opacity: 0.45; scale: 0.94; }
  50% { opacity: 0.9; scale: 1.04; }
}

@keyframes tag-sheen {
  0%, 62% { transform: translateX(-140%); }
  82%, 100% { transform: translateX(140%); }
}

/* ==========================================
 * RESPONSIVIDADE GLOBAL
 * ========================================== */
@media (max-width: 960px) {
  .motion-hero-content {
    padding-inline: 24px;
  }

  .intro-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-rule {
    padding-top: 0;
  }

  .intro-copy {
    max-width: 760px;
  }

  .hero-title {
    font-size: var(--text-4xl);
    line-height: var(--leading-4xl);
  }

  .about-grid,
  .sofia-showcase-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-400);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .container,
  .container-narrow,
  .intro-container {
    padding-inline: 20px;
  }

  main section[id] {
    scroll-margin-top: 88px;
  }

  /* O enquadramento mais baixo mostra o encontro; o texto fica abaixo dos rostos. */
  .motion-hero {
    height: auto;
    min-height: 0;
    background-color: #123F36;
  }

  .motion-hero-video {
    position: relative;
    height: clamp(320px, 54svh, 520px);
  }

  .motion-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 26, 22, 0.32) 0%, transparent 30%, rgba(18, 63, 54, 0.08) 55%, #123F36 100%);
  }

  .motion-hero-video video {
    object-position: 46% center;
    filter: none;
  }

  .motion-hero-content {
    height: auto;
    margin-top: -72px;
    padding: 0 20px 36px;
  }

  .motion-hero-title {
    max-width: 560px;
    font-size: clamp(2.125rem, 8.5vw, 2.625rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .motion-hero-copy {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .motion-title-break {
    display: none;
  }

  .motion-hero-meta {
    max-width: 100%;
    margin-top: 20px;
    padding: 10px 12px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
    font-size: 0.875rem;
    line-height: 1.45;
    box-shadow: none;
  }

  .motion-hero-meta .badge-pulse-dot {
    flex-shrink: 0;
  }

  .reception-banner {
    height: clamp(280px, 95vw, 420px);
    min-height: 0;
  }

  .reception-banner-caption {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    font-size: 0.875rem;
  }

  .reception-banner-image {
    object-position: 48% center;
  }

  .intro-section {
    padding: 56px 0;
  }

  .intro-eyebrow {
    gap: 10px;
    margin-bottom: 28px;
  }

  .intro-index {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .intro-kicker {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .intro-title {
    margin-bottom: 28px;
    font-size: clamp(2.125rem, 8.5vw, 2.875rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .intro-title-break {
    display: none;
  }

  .intro-detail-grid {
    gap: 24px;
  }

  .intro-description {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
  }

  .intro-cta {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 10px 12px;
    gap: 9px;
    white-space: normal;
    text-align: left;
  }

  .intro-cta-roll {
    display: block;
    height: auto;
    min-width: 0;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .intro-cta-roll > span,
  .intro-cta:hover .intro-cta-roll > span,
  .intro-cta:focus-visible .intro-cta-roll > span {
    display: block;
    height: auto;
    transform: none;
  }

  .intro-cta-roll > span[aria-hidden="true"] {
    display: none;
  }

  .intro-cta-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .tagline-heading {
    font-size: var(--text-2xl);
    line-height: var(--leading-2xl);
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(1.625rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .section-subtitle,
  .benefit-card-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-tag {
    font-size: 0.8125rem;
    line-height: 1.4;
    padding: 6px 12px;
    letter-spacing: 0.055em;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .care-experience .card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 20px;
    align-items: start;
  }

  .care-experience .card-icon-box {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .benefit-card-title {
    margin-bottom: 0;
    font-size: 1.0625rem;
    line-height: 1.35;
  }

  .benefit-card-desc {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .gallery-card-img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .gallery-card-caption {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 0.875rem;
  }

  .location-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .location-info-card {
    padding: 24px 20px;
    min-width: 0;
  }

  .location-detail-item {
    font-size: 1rem;
    line-height: 1.6;
  }

  .location-map-frame {
    height: 280px;
    min-height: 0;
  }

  .location-map-frame > iframe {
    min-height: 0;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-input,
  .form-select {
    min-height: 48px;
    min-width: 0;
  }

  .form-checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .form-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #128C7E;
  }

  #formSubmitBtn,
  .location-info-card .btn,
  .clinic-whatsapp-cta {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 12px;
    white-space: normal;
    font-size: 0.875rem;
    line-height: 1.45;
    text-align: center;
  }

  #formSubmitBtn > i,
  .location-info-card .btn > i {
    flex-shrink: 0;
  }

  .site-footer {
    padding: 48px 0 80px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    margin-bottom: 32px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-links {
    gap: 0;
  }

  .footer-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ambient-grid {
    background-size: 42px 42px;
  }

  .motion-rail-group {
    gap: var(--spacing-200);
    padding-inline: var(--spacing-200) 0;
  }

  .motion-rail-group span {
    font-size: var(--text-xs);
  }
}

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

  .ambient-orb,
  .ambient-ring,
  .hero-title,
  .motion-rail-track,
  .section-tag::after {
    animation: none !important;
  }

  .motion-rail-track {
    transform: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .motion-tilt {
    opacity: 1;
    filter: none;
    transform: none !important;
    transition: none !important;
  }

  .hero-img,
  .gallery-card-img {
    transform: none !important;
    transition: none !important;
  }

  .motion-sync-item,
  .motion-hero-copy.is-synced .motion-sync-item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .intro-cta-roll > span,
  .intro-cta-arrow {
    transition: none !important;
  }
}

/* ==========================================================================
 * PROTEÇÃO DE CONTEÚDO, IMAGENS E IMPRESSÃO
 * ========================================================================== */

/* Desativa seleção de texto geral */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Permite digitação e seleção normal dentro do formulário */
input,
textarea,
select {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Impede arrastar ou salvar imagens e vídeos diretamente */
img,
video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}

/* Garante interatividade total para links, botões e campos */
a,
button,
[role="button"],
summary,
input,
textarea,
select,
.btn {
  pointer-events: auto !important;
}

/* Bloqueio total de Impressão e Salvar em PDF (Ctrl + P) */
@media print {
  html,
  body {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}
