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

:root {
  /* Premium Color Palette - Inspired by Alcohol Ink Art */
  --color-gold-light: #fbeecf;
  --color-gold: #e2b755;
  --color-gold-dark: #c59733;
  
  --color-teal-light: #d1eae6;
  --color-teal: #78b8b0;
  --color-teal-dark: #3a7972;
  
  --color-lilas-light: #eeddf8;
  --color-lilas: #bda2d9;
  --color-lilas-dark: #8c6eb5;
  
  --color-rosa-light: #fbe6e8;
  --color-rosa: #df9fa8;
  --color-rosa-dark: #b8717b;
  
  --color-bg: #f8faf9;
  --color-surface: #ffffff;
  
  --color-text: #1e2d2b;
  --color-text-muted: #4a605d;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 170px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Glassmorphism utility */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(44, 62, 80, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              scale 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-surface);
  box-shadow: 0 4px 15px rgba(226, 183, 85, 0.2);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  box-shadow: 0 12px 25px rgba(226, 183, 85, 0.55);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-surface);
  box-shadow: 0 12px 25px rgba(120, 184, 176, 0.45);
}

/* Button Arrow Animation */
.btn .arrow,
.btn span:last-child {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover .arrow,
.btn:hover span:last-child {
  transform: translateX(5px);
}

/* Section Titles */
.gold-divider {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 2rem;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.text-gold {
  color: var(--color-gold-dark);
  font-style: italic;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 1.1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 34px;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-teal-dark);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.25rem;
  transition: var(--transition);
}

.header.scrolled .brand-subtitle {
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.responsive-grid-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .responsive-grid,
  .responsive-grid-center {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

@media (max-height: 750px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
  }
}

/* Chakra Slideshow */
.chakra-container {
  position: relative;
  min-height: 120px;
  margin-bottom: 2.5rem;
}

.chakra-card {
  display: none;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  background: var(--color-surface);
  box-shadow: 0 15px 35px rgba(240, 198, 103, 0.08);
  border: 1px solid rgba(240, 198, 103, 0.15);
}

.chakra-card.active {
  display: flex;
  animation: fadeSlide 0.6s ease forwards;
}

.chakra-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chakra-card p {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, 
    #d1eae6 0%, 
    #f3faf8 20%,
    #aee3db 40%, 
    #e0f2f1 60%,
    #bfe2dd 80%,
    #d1eae6 100%
  );
  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;
  opacity: 0.85;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.05;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(72, 166, 157, 0.2);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(45deg, var(--color-teal-light), var(--color-gold-light));
  z-index: -1;
  border-radius: inherit;
  filter: blur(20px);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  display: block;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
  text-align: center;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Stacked Cards */
.card-stacked {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--color-surface);
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
  align-items: start;
}

.card-stacked:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(72, 166, 157, 0.15);
  border-color: var(--color-teal);
}

.card-stacked-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--color-text);
  line-height: 1.2;
}

.card-stacked-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .card-stacked {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem;
  }
  .card-stacked-title {
    font-size: 1.75rem;
  }
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(72, 166, 157, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 1.75rem;
  margin: 1.5rem 0 1rem;
}

.card-text {
  color: var(--color-text-muted);
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  padding: 3rem 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8) 10%, rgba(255,255,255,0.8) 90%, rgba(255,255,255,0));
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  align-items: center;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img {
  height: 60px;
  margin: 0 3rem;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: var(--transition);
}

.carousel-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

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

/* Footer */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Portal Specific Styles */
.portal-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('fotos/fundo.jpeg') center/cover no-repeat;
  position: relative;
}

.portal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(209,234,230,0.85) 0%, 
    rgba(243,250,248,0.9) 20%,
    rgba(174,227,219,0.85) 40%, 
    rgba(224,242,241,0.85) 60%,
    rgba(191,226,221,0.85) 80%,
    rgba(209,234,230,0.85) 100%
  );
  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;
  opacity: 0.9;
  backdrop-filter: blur(8px);
}

.portal-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 3rem;
}

.mandala-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.mandala-wrapper .portal-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 0;
  transition: var(--transition);
}

@media (max-width: 576px) {
  .portal-content {
    padding: 2rem 1.25rem;
  }
  .mandala-wrapper .portal-logo {
    width: 140px;
    height: 140px;
  }
}

.mandala-wrapper:hover .portal-logo {
  transform: scale(1.02);
  filter: drop-shadow(0 0 15px rgba(240, 198, 103, 0.3));
}

.consciousness-light {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px 5px #ffffff, 
              0 0 30px 12px var(--color-gold), 
              0 0 60px 25px rgba(240, 198, 103, 0.5);
  animation: pulseLight 3s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
}

.consciousness-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 1.5px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(226,183,85,0.4) 40%, transparent 80%);
  filter: blur(0.5px);
}

.consciousness-light::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 70px;
  height: 1.5px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(226,183,85,0.4) 40%, transparent 80%);
  filter: blur(0.5px);
}

@keyframes pulseLight {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px 4px #ffffff, 
                0 0 24px 8px var(--color-gold), 
                0 0 40px 16px rgba(240, 198, 103, 0.6);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 18px 6px #ffffff, 
                0 0 35px 15px var(--color-gold), 
                0 0 60px 25px rgba(240, 198, 103, 0.8);
    opacity: 1;
  }
}

.portal-options {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.portal-card {
  flex: 1;
  padding: 2.2rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(29, 43, 41, 0.05);
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.portal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-lilas));
  opacity: 0;
  transition: var(--transition);
}

.portal-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(72, 166, 157, 0.3);
  box-shadow: 0 25px 50px rgba(72, 166, 157, 0.15);
}

.portal-card:hover::before {
  opacity: 1;
}

.portal-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.portal-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Brand Subtitle and Select Area Text */
.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-teal-dark);
  line-height: 1.4;
  text-align: center;
  margin-top: 0.75rem;
  transition: var(--transition);
}

.select-area-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 1.5rem auto 2.5rem;
  color: var(--color-teal-dark);
  position: relative;
  max-width: 90%;
  display: block;
  padding-bottom: 0.6rem;
  line-height: 1.6;
}

.select-area-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Card Icon Circle */
.card-icon-circle {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(120, 184, 176, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 1rem;
  transition: var(--transition);
}


.card-icon-circle .card-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: var(--transition);
}

.portal-card:hover .card-icon-circle {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.portal-card:hover .card-icon-img {
  transform: scale(1.08);
}

/* Custom Divider */
.card-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 1.5rem auto;
  gap: 1rem;
}

.card-divider .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.card-divider .lotus-icon {
  width: 22px;
  height: 22px;
  background-image: none;
  display: block;
  transition: var(--transition);
}

.portal-card:hover .card-divider .lotus-icon {
  transform: scale(1.1);
  stroke: var(--color-gold-dark);
}

/* Default / Teal outline button style for Psicologia Card */
.btn:not(.btn-gold):not(.btn-outline) {
  background-color: transparent;
  border: 1px solid var(--color-teal);
  color: var(--color-teal-dark);
  box-shadow: 0 10px 25px rgba(120, 184, 176, 0.1);
}

.btn:not(.btn-gold):not(.btn-outline):hover {
  background-color: var(--color-teal);
  color: var(--color-surface);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(120, 184, 176, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    margin: 0 auto 2.5rem;
  }
  .portal-options {
    flex-direction: column;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 120px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-surface);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .logo img {
    height: 40px;
  }
  .header.scrolled .logo img {
    height: 30px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4rem 0;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Comparison Grid for Diagnostic and Report */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comp-grid-item {
  padding: 0.5rem 0;
}

.comp-grid-item-right {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 2rem;
}

@media (max-width: 576px) {
  .comp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .comp-grid-item-right {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem !important;
  }
}

/* Separation Border for Practices */
.practice-row {
  min-height: calc(100vh - 100px);
  display: grid;
  align-content: center;
  border-bottom: 1.5px solid rgba(72, 166, 157, 0.15);
  padding-top: 4rem;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.practice-row:last-child {
  border-bottom: none;
}

.practice-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 2rem;
  width: 100%;
  text-align: left;
}

/* Body Scanner Animation Overlay */
.body-scanner-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.scan-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold, #e2b755), #00e5ff, var(--color-gold, #e2b755), transparent);
  box-shadow: 0 0 15px rgba(226, 183, 85, 0.8), 0 0 25px rgba(0, 229, 255, 0.8), 0 0 2px #ffffff;
  z-index: 10;
  pointer-events: none;
  animation: bodyScanLine 4s ease-in-out infinite;
}

@keyframes bodyScanLine {
  0% {
    top: 0%;
    opacity: 0.8;
  }
  50% {
    top: 95%;
    opacity: 1;
  }
  100% {
    top: 0%;
    opacity: 0.8;
  }
}

.scan-overlay-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 25, 30, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  color: #e0f7fa;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 229, 255, 0.2);
  z-index: 12;
  pointer-events: none;
}

.scan-overlay-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ffb7;
  box-shadow: 0 0 8px #00ffb7, 0 0 12px var(--color-gold, #e2b755);
  animation: pulseBadgeDot 2s ease-in-out infinite;
}

@keyframes pulseBadgeDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 6px #00ffb7, 0 0 10px var(--color-gold, #e2b755);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 12px #00ffb7, 0 0 20px var(--color-gold, #e2b755);
  }
}

.energy-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff 20%, var(--node-color, var(--color-gold, #e2b755)) 70%);
  box-shadow: 0 0 12px var(--node-color, var(--color-gold, #e2b755)), 0 0 24px var(--node-color, var(--color-teal, #78b8b0));
  z-index: 11;
  pointer-events: none;
  animation: energyNodeGlow 2.5s ease-in-out infinite alternate;
}

.energy-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--node-color, var(--color-gold, #e2b755));
  animation: energyNodePulse 2s ease-out infinite;
}

@keyframes energyNodeGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 1;
  }
}

@keyframes energyNodePulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

