/* ========== CUSTOM PROPERTIES ========== */
:root {
  /* Colors */
  --primary-color: #4ade80;
  --primary-dark: #16a34a;
  --primary-light: #86efac;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --gray: #888888;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --benefit-bg: #E6F5EA;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-hero: linear-gradient(135deg, #22c55e 0%, #000000 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --h1-font-size: 3rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --header-height: 4.5rem;
  --section-padding: 5rem 0;
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-green: 0 4px 20px rgba(74, 222, 128, 0.3);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 50%;
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */
@media screen and (max-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --section-padding: 3.5rem 0;
  }
  
  .hero__title {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --h1-font-size: 1.875rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
}

/* ========== BASE RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: var(--font-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  border: none;
  outline: none;
  font-family: var(--font-family);
}

/* ========== REUSABLE CSS CLASSES ========== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: var(--section-padding);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--white);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--gray);
  font-weight: var(--font-light);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}

.btn:hover {
  box-shadow: 0 6px 28px rgba(74, 222, 128, 0.5);
}

.btn:active {
  transform: translateY(-1px);
}

.btn__icon {
  width: 20px;
  height: 20px;
}

.btn-hero {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
  margin: 0 auto 2rem auto;
  display: inline-flex;
  align-items: center;
}

@media screen and (min-width: 968px) {
  .btn-hero {
    transform: translateX(-380px);
  }
}

.btn-cta {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  background: var(--white);
  color: var(--primary-dark);
}

.btn-cta:hover {
  background: var(--light-gray);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header.scroll-header {
  box-shadow: var(--shadow-md);
  background-color: rgba(0, 0, 0, 0.98);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.nav__logo .logo-img {
  width: 90px;
  height: auto;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  color: var(--white);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--primary-color);
}

.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav__overlay.show-overlay {
  display: block;
  opacity: 1;
}

.nav__menu-footer {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero__content {
  display: block;
}

.btn-hero {
  display: inline-flex;
}

/* Hero Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-medium);
  color: var(--primary-color);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-weight: var(--font-bold);
}

.hero__description {
  font-size: 1.125rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  font-weight: var(--font-light);
  line-height: 1.6;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: var(--font-light);
}

.hero__image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hero__img {
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 2;
  animation: float-hero 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-hero {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
  animation: blob-animation 8s infinite ease-in-out;
}

@keyframes blob-animation {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(20px, -20px);
  }
}

/* Hero Image Cards - Below Image */
.hero__image-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 3;
}

/* Hero Cards - Static */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

.info-card svg {
  stroke: var(--primary-color);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.info-card .card-title {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1;
}

.info-card .card-value {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}

.info-card .card-number {
  color: var(--primary-color);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-button {
  color: var(--white);
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ========== HERO PARTICLES ========== */
.hero__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 15s infinite ease-in-out;
  will-change: transform, opacity;
  pointer-events: none;
}

/* Diferentes tamaños de partículas */
.particle-1 {
  width: 6px;
  height: 6px;
  left: 10%;
  bottom: 0;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle-2 {
  width: 4px;
  height: 4px;
  left: 20%;
  bottom: 0;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle-3 {
  width: 8px;
  height: 8px;
  left: 30%;
  bottom: 0;
  animation-delay: 4s;
  animation-duration: 13s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  left: 45%;
  bottom: 0;
  animation-delay: 1s;
  animation-duration: 15s;
}

.particle-5 {
  width: 7px;
  height: 7px;
  left: 55%;
  bottom: 0;
  animation-delay: 3s;
  animation-duration: 11s;
}

.particle-6 {
  width: 4px;
  height: 4px;
  left: 65%;
  bottom: 0;
  animation-delay: 5s;
  animation-duration: 14s;
}

.particle-7 {
  width: 6px;
  height: 6px;
  left: 75%;
  bottom: 0;
  animation-delay: 2.5s;
  animation-duration: 13s;
}

.particle-8 {
  width: 5px;
  height: 5px;
  left: 85%;
  bottom: 0;
  animation-delay: 4.5s;
  animation-duration: 12s;
}

.particle-9 {
  width: 3px;
  height: 3px;
  left: 15%;
  bottom: 0;
  animation-delay: 1.5s;
  animation-duration: 16s;
}

.particle-10 {
  width: 7px;
  height: 7px;
  left: 40%;
  bottom: 0;
  animation-delay: 3.5s;
  animation-duration: 14s;
}

.particle-11 {
  width: 4px;
  height: 4px;
  left: 60%;
  bottom: 0;
  animation-delay: 0.5s;
  animation-duration: 15s;
}

.particle-12 {
  width: 6px;
  height: 6px;
  left: 90%;
  bottom: 0;
  animation-delay: 5.5s;
  animation-duration: 13s;
}

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50vh) translateX(20px) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(-10px) scale(0.5);
    opacity: 0;
  }
}

/* Variación de movimiento lateral */
.particle:nth-child(odd) {
  animation-name: float-up-left;
}

@keyframes float-up-left {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50vh) translateX(-20px) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(10px) scale(0.5);
    opacity: 0;
  }
}

/* ========== HEXÁGONOS MOLECULARES ========== */
.hero__hexagons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Base hexágonos */
.hexagon {
  position: absolute;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(74, 222, 128, 0.04) 100%);
  border: 2px solid rgba(74, 222, 128, 0.25);
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  animation: pulse-hexagon 6s infinite ease-in-out;
  backdrop-filter: blur(3px);
}

/* Tamaños de hexágonos */
.hexagon-xlarge {
  width: 120px;
  height: 120px;
}

.hexagon-large {
  width: 80px;
  height: 80px;
}

.hexagon-medium {
  width: 55px;
  height: 55px;
}

.hexagon-small {
  width: 35px;
  height: 35px;
}

/* Posicionamiento estratégico - evitando el contenido central */
.hex-1 {
  top: 10%;
  left: 3%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.hex-2 {
  top: 65%;
  left: 8%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.hex-3 {
  top: 15%;
  right: 5%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.hex-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
  animation-duration: 7.5s;
}

.hex-5 {
  top: 40%;
  left: 2%;
  animation-delay: 1.5s;
  animation-duration: 8.5s;
}

.hex-6 {
  top: 80%;
  right: 15%;
  animation-delay: 2.5s;
  animation-duration: 6.5s;
}

.hex-7 {
  top: 50%;
  right: 3%;
  animation-delay: 0.5s;
  animation-duration: 7s;
}

/* Animación de pulsación y flotación */
@keyframes pulse-hexagon {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    border-color: rgba(74, 222, 128, 0.25);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
    border-color: rgba(74, 222, 128, 0.4);
    opacity: 0.9;
  }
  66% {
    transform: translateY(-8px) rotate(-3deg) scale(0.98);
    border-color: rgba(74, 222, 128, 0.35);
    opacity: 0.8;
  }
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
  background-color: var(--dark-gray);
}

.how-it-works__content {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
}

.step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  box-shadow: var(--shadow-green);
}

.step__icon {
  margin: 2rem auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.1);
  border-radius: var(--radius-full);
}

.step__icon svg {
  stroke: var(--primary-color);
}

.step__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--white);
}

.step__description {
  color: var(--gray);
  font-weight: var(--font-light);
  line-height: 1.8;
}

/* ========== ESTADÍSTICAS SECTION ========== */
.stats {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0;
}

.stats__image-only {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.stats__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.stats__img--desktop {
  display: block;
}

.stats__img--mobile {
  display: none;
}

.stats__overlay {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 4rem 4rem 6rem;
  pointer-events: none;
}

/* Stats Header */
.stats__header {
  margin-bottom: 3rem;
  transform: translateY(-500px);
}

.stats__title {
  font-size: 5rem;
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.stats__title-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.stats__description {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: var(--font-medium);
  opacity: 0.95;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Progress Bars */
.stats__bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: rgba(203, 213, 225, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 350px;
}

.stat-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-bar__label {
  font-size: 1rem;
  font-weight: var(--font-semibold);
  color: white;
  min-width: 25px;
}

.stat-bar__track {
  width: 250px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.stat-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #e63946 0%, #ffffff 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 2s ease-out;
}

.stat-bar__fill.animated {
  width: var(--percent);
}

/* Circle Stats */
.stats__circles {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.circle-stat {
  position: relative;
  width: 100px;
  height: 100px;
}

.circle-stat__svg {
  transform: rotate(-90deg);
}

.circle-stat__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 6;
}

.circle-stat__progress {
  fill: none;
  stroke: #e63946;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 2s ease-out;
}

.circle-stat__progress--green {
  stroke: #4ade80;
}

.circle-stat__progress--pink {
  stroke: #ec4899;
}

.circle-stat__progress.animated {
  stroke-dashoffset: var(--offset);
}

.circle-stat__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  color: white;
}

/* Heartbeat Line */
.stats__heartbeat {
  width: 380px;
  height: 85px;
  background: rgba(203, 213, 225, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.heartbeat-svg {
  width: 100%;
  height: 100%;
}

.heartbeat-line {
  fill: none;
  stroke: #4ade80;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Stats KPI Card */
.stats__kpi {
  margin-top: 2rem;
}

.kpi-card {
  width: 380px;
  background: rgba(203, 213, 225, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.kpi-card__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.kpi-card__bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.kpi-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease-out;
}

.kpi-card__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.kpi-card__emoji {
  font-size: 2.5rem;
}

.kpi-card__number {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.kpi-card__circles {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.kpi-mini-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(#e2e8f0 0deg, #e2e8f0 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-out;
}

.kpi-mini-circle::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.kpi-mini-circle--pink {
  background: conic-gradient(#ec4899 0deg, #e2e8f0 0deg);
}

.kpi-mini-circle--blue {
  background: conic-gradient(#3b82f6 0deg, #e2e8f0 0deg);
}

.kpi-mini-circle--orange {
  background: conic-gradient(#f97316 0deg, #e2e8f0 0deg);
}

/* ========== BENEFITS SECTION ========== */
.benefits {
  background-color: var(--benefit-bg);
}

.benefits .section__title {
  color: var(--black);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits .section__subtitle {
  color: #555;
}

.benefits__content {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-card__icon svg {
  stroke: var(--white);
}

.benefit-card__title {
  font-size: var(--h3-font-size);
  color: var(--black);
  margin-bottom: 1rem;
}

.benefit-card__description {
  color: #555;
  line-height: 1.8;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background-color: var(--black);
}

.testimonials__content {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semibold);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: var(--small-font-size);
  color: var(--gray);
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter {
  background: linear-gradient(135deg, #3CB356 0%, #061A0D 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(60, 179, 86, 0.2) 0%, transparent 60%);
}

.newsletter__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter__text {
  margin-bottom: 3rem;
}

.newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: floatNewsletter 4s ease-in-out infinite;
}

.newsletter__icon svg {
  stroke: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

@keyframes floatNewsletter {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.newsletter__title {
  font-size: 2.25rem;
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletter__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter__form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.newsletter__input-group:focus-within {
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 1);
}

.newsletter__input-icon {
  position: absolute;
  left: 1.25rem;
  stroke: var(--primary-dark);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.newsletter__input-group:focus-within .newsletter__input-icon {
  opacity: 1;
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 1rem 1rem 3.5rem;
  font-size: 1rem;
  color: var(--black);
  font-family: var(--font-family);
}

.newsletter__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  font-weight: var(--font-semibold);
  font-size: 1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: calc(var(--radius-md) - 4px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  white-space: nowrap;
}

.newsletter__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--dark-gray);
}

.newsletter__button:active {
  transform: translateY(0);
}

.newsletter__button svg {
  transition: transform 0.3s ease;
}

.newsletter__button:hover svg {
  transform: translateX(4px);
}

.newsletter__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.newsletter__privacy svg {
  stroke: var(--white);
  flex-shrink: 0;
}

/* Partículas decorativas del newsletter */
.newsletter__particles {
  display: none;
}

/* ========== FAQs SECTION ========== */
.faqs {
  background-color: var(--black);
  padding: 6rem 0;
  position: relative;
}

.faqs__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: var(--font-semibold);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1rem;
}

.faqs__cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.faqs__cta-text {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.faqs__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== REGISTRATION FORM SECTION ========== */
.registration {
  background-color: var(--black);
  padding: 6rem 0;
}

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

.registration__content {
  padding-right: 2rem;
}

.registration__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 222, 128, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.registration__badge svg {
  stroke: var(--primary-color);
}

.registration__title {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.registration__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.registration__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1rem;
}

.benefit-item svg {
  flex-shrink: 0;
  stroke: var(--primary-color);
  width: 24px;
  height: 24px;
}

/* Form Styles */
.registration__form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.registration__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: var(--font-medium);
}

.form-label svg {
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.form-input,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-select option {
  background: var(--dark-gray);
  color: var(--white);
}

.password-wrapper {
  position: relative;
}

.password-wrapper .form-input {
  padding-right: 3.5rem;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.password-toggle:hover {
  opacity: 0.7;
}

.password-toggle svg {
  stroke: var(--primary-color);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  accent-color: var(--primary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  cursor: pointer;
}

.link {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link--bold {
  font-weight: var(--font-semibold);
}

.btn-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--black);
  font-weight: var(--font-semibold);
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

.btn-form:active {
  transform: translateY(0);
}

.btn-form svg {
  transition: transform 0.3s ease;
}

.btn-form:hover svg {
  transform: translateX(4px);
}

.form-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ========== CTA SECTION ========== */
.cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(74, 222, 128, 0.15) 0%, transparent 60%);
}

.cta__content {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
}

.cta__description {
  font-size: 1.25rem;
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}

.footer__container {
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer__content {
  display: block;
}

.footer__logo {
  margin-left: 120px;
}

.footer__logo img {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}

.footer__text {
  display: block;
}

.footer__description {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer__links-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: var(--font-semibold);
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links-list a {
  color: var(--gray);
  transition: var(--transition);
  font-weight: var(--font-light);
}

.footer__links-list a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer__bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copy {
  text-align: center;
  color: var(--gray);
  font-size: var(--small-font-size);
}

/* ========== SCROLL UP BUTTON ========== */
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -50%;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  z-index: 10;
}

.scrollup:hover {
  transform: translateY(-5px);
}

.scrollup.show-scroll {
  bottom: 3rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    width: 75%;
    height: 100vh;
    padding: 5rem 2.5rem 3rem;
    backdrop-filter: blur(24px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
    z-index: 100;
    overflow-y: auto;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  
  .nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav__item:last-child {
    border-bottom: none;
  }
  
  .nav__link {
    font-size: 1.125rem;
    padding: 1.25rem 0;
    display: block;
    width: 100%;
    font-weight: var(--font-medium);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav__link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
  }
  
  .nav__link.active-link {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
  }
  
  .nav__link::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
    border-radius: 4px;
  }
  
  .nav__link:hover::before,
  .nav__link.active-link::before {
    height: 70%;
  }
  
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav__close:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
  }
  
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav__toggle:hover {
    background: rgba(74, 222, 128, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
  }
  
  .nav__buttons .btn {
    display: none;
  }
  
  .nav__buttons .language-switcher {
    display: none;
  }
  
  .nav__menu-footer {
    display: block;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn-menu-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: var(--font-semibold);
  }
  
  .btn-menu-mobile svg {
    transition: transform 0.3s ease;
  }
  
  .btn-menu-mobile:hover svg {
    transform: translateX(5px);
  }
  
  /* Hero Mobile Adjustments */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero__badge {
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero__description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .hero__img {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero__image-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
  }
  
  .info-card {
    padding: 1.25rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(74, 222, 128, 0.25);
  }
  
  .info-card svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
  }
  
  .info-card div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .card-value {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  
  .card-title {
    font-size: 0.875rem;
    line-height: 1;
  }
  
  .btn-hero {
    align-self: center;
    margin-top: 1rem;
  }
  
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hero__scroll {
    bottom: 2rem;
  }
  
  /* Stats Overlay responsive */
  .stats__image-only {
    min-height: 100vh;
  }
  
  .stats__img--desktop {
    display: none;
  }
  
  .stats__img--mobile {
    display: block;
    height: 100vh;
    object-fit: cover;
  }
  
  .stats__overlay {
    top: 0;
    padding: 3rem 1.5rem;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
  }
  
  .stats__header {
    text-align: center;
    margin-bottom: 0;
    transform: none;
  }
  
  .stats__title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .stats__description {
    font-size: 0.95rem;
  }
  
  .stats__bars {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .stat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .stat-bar__label {
    font-size: 1rem;
  }
  
  .stat-bar__track {
    width: 100%;
  }
  
  .stats__circles {
    width: 100%;
    max-width: 350px;
    gap: 1rem;
    justify-content: center;
  }
  
  .circle-stat {
    width: 90px;
    height: 90px;
  }
  
  .circle-stat__svg {
    width: 90px;
    height: 90px;
  }
  
  .circle-stat__text {
    font-size: 1.125rem;
  }
  
  .stats__heartbeat {
    width: 100%;
    max-width: 350px;
    height: 80px;
  }
  
  .stats__kpi {
    width: 100%;
    max-width: 350px;
    margin-top: 0;
  }
  
  .kpi-card {
    width: 100%;
    padding: 1.5rem;
  }
  
  .kpi-card__value {
    font-size: 2.5rem;
  }
  
  .kpi-card__info {
    gap: 1rem;
  }
  
  .kpi-card__number {
    font-size: 1.75rem;
  }
  
  .kpi-card__circles {
    gap: 0.75rem;
  }
  
  .kpi-mini-circle {
    width: 50px;
    height: 50px;
  }
  
  .kpi-mini-circle::before {
    width: 40px;
    height: 40px;
  }
  
  /* Newsletter responsive */
  .newsletter {
    padding: 4rem 0;
  }
  
  .newsletter__title {
    font-size: 1.75rem;
  }
  
  .newsletter__description {
    font-size: 1rem;
  }
  
  .newsletter__input-group {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .newsletter__input {
    padding: 1rem;
    padding-left: 3rem;
  }
  
  .newsletter__button {
    width: 100%;
    justify-content: center;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section__title {
    font-size: 1.875rem;
  }
  
  .section__subtitle {
    font-size: 0.875rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--small-font-size);
  }
  
  .btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
  
  .btn-cta {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  
  /* Hero Small Mobile */
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    min-height: auto;
  }
  
  .hero__container {
    gap: 2.5rem;
  }
  
  .hero__badge {
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
  
  .hero__title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  .hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }
  
  .hero__img {
    max-width: 100%;
  }
  
  .hero__image {
    gap: 1.5rem;
  }
  
  .hero__image-cards {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .info-card {
    padding: 1rem 1.25rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(74, 222, 128, 0.3);
  }
  
  .info-card svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  
  .info-card div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .card-value {
    font-size: 1.375rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  
  .card-title {
    font-size: 0.8rem;
    line-height: 1;
  }
  
  .btn-hero {
    align-self: center;
    margin-top: 1.5rem;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1rem;
  }
  /* Stats Overlay small mobile */
  .stats__image-only {
    min-height: 100vh;
  }
  
  .stats__img--desktop {
    display: none;
  }
  
  .stats__img--mobile {
    display: block;
    height: 100vh;
    object-fit: cover;
  }
  
  .stats__overlay {
    top: 0;
    padding: 1.5rem 1rem;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .stats__header {
    text-align: center;
    margin-bottom: 0;
    transform: none;
  }
  
  .stats__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .stats__description {
    font-size: 0.8rem;
  }
  
  .stats__bars {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem;
    gap: 0.5rem;
  }
  
  .stat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  
  .stat-bar__label {
    font-size: 0.75rem;
    min-width: auto;
  }
  
  .stat-bar__track {
    width: 100%;
    height: 5px;
  }
  
  .stats__circles {
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .circle-stat {
    width: 85px;
    height: 85px;
  }
  
  .circle-stat__svg {
    width: 85px;
    height: 85px;
  }
  
  .circle-stat__bg,
  .circle-stat__progress {
    stroke-width: 4;
  }
  
  .circle-stat__text {
    font-size: 1.125rem;
    font-weight: 700;
  }
  
  .stats__heartbeat {
    width: 100%;
    max-width: 100%;
    height: 60px;
  }
  
  .stats__kpi {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  
  .kpi-card {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
  }
  
  .kpi-card__value {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .kpi-card__bar {
    height: 8px;
    margin-bottom: 0.75rem;
  }
  
  .kpi-card__info {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  
  .kpi-card__emoji {
    font-size: 1.5rem;
  }
  
  .kpi-card__number {
    font-size: 1.25rem;
  }
  
  .kpi-card__circles {
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }
  
  .kpi-mini-circle {
    width: 38px;
    height: 38px;
  }
  
  .kpi-mini-circle::before {
    width: 30px;
    height: 30px;
  }
  
  .scrollup {
    width: 45px;
    height: 45px;
    right: 1.5rem;
  }
  
  .scrollup.show-scroll {
    bottom: 2rem;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer__logo {
    margin-left: 0;
  }
  
  /* Newsletter mobile */
  .newsletter {
    padding: 3rem 0;
  }
  
  .newsletter__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .newsletter__icon svg {
    width: 32px;
    height: 32px;
  }
  
  .newsletter__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .newsletter__description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .newsletter__input-group {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .newsletter__input-icon {
    left: 1rem;
  }
  
  .newsletter__input {
    padding: 0.875rem;
    padding-left: 3rem;
    font-size: 0.95rem;
  }
  
  .newsletter__button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .newsletter__privacy {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  
  /* Registration Form Mobile */
  .registration {
    padding: 3rem 0;
  }
  
  .registration__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .registration__content {
    padding-right: 0;
    text-align: center;
  }
  
  .registration__badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .registration__title {
    font-size: 1.75rem;
  }
  
  .registration__description {
    font-size: 1rem;
  }
  
  .registration__benefits {
    align-items: center;
  }
  
  .registration__form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-input,
  .form-select {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .btn-form {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* ========== BODY AWARENESS SECTION ========== */
.body-awareness {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
  padding: 6rem 0;
}

.body-awareness__content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.body-awareness__center {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-awareness__stomach {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4));
  animation: floatStomach 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatStomach {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.body-awareness__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.3) 0%, rgba(74, 222, 128, 0) 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.2;
  }
}

/* Partículas flotantes para la sección de consciencia */
.awareness__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

/* SVG de líneas de conexión */
.awareness__connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

/* Líneas neón */
.neon-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 8px #4ade80) drop-shadow(0 0 12px #4ade80);
  opacity: 0;
}

/* Animación de dibujo progresivo */
.neon-line-1 {
  animation: drawLine 2s ease-out 0.5s forwards, pulseNeon 3s ease-in-out 2.5s infinite;
}

.neon-line-2 {
  animation: drawLine 2s ease-out 1s forwards, pulseNeon 3s ease-in-out 3s infinite;
}

.neon-line-3 {
  animation: drawLine 2s ease-out 1.5s forwards, pulseNeon 3s ease-in-out 3.5s infinite;
}

.neon-line-4 {
  animation: drawLine 2s ease-out 2s forwards, pulseNeon 3s ease-in-out 4s infinite;
}

.neon-line-5 {
  animation: drawLine 2s ease-out 2.5s forwards, pulseNeon 3s ease-in-out 4.5s infinite;
}

.neon-line-6 {
  animation: drawLine 2s ease-out 3s forwards, pulseNeon 3s ease-in-out 5s infinite;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes pulseNeon {
  0%, 100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 8px #4ade80) drop-shadow(0 0 12px #4ade80);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 15px #4ade80) drop-shadow(0 0 25px #4ade80) drop-shadow(0 0 35px #4ade80);
  }
}

/* Círculos vagantes transparentes */
.awareness__orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(74, 222, 128, 0.3), rgba(74, 222, 128, 0.05));
  filter: blur(20px);
  opacity: 0;
  animation: wanderOrb 20s infinite ease-in-out;
  will-change: transform, opacity;
  pointer-events: none;
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -10%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
  animation-duration: 28s;
}

.orb-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 50%;
  animation-delay: 15s;
  animation-duration: 22s;
}

.orb-5 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 15%;
  animation-delay: 8s;
  animation-duration: 26s;
}

@keyframes wanderOrb {
  0% {
    transform: translate(0, 0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  25% {
    transform: translate(100px, -80px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50px, 100px) scale(1.2);
    opacity: 0.5;
  }
  75% {
    transform: translate(80px, -60px) scale(0.9);
    opacity: 0.7;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-100px, 50px) scale(0.8);
    opacity: 0;
  }
}

/* Variación de movimiento para diferentes órbitas */
.orb-2,
.orb-4 {
  animation-name: wanderOrbReverse;
}

@keyframes wanderOrbReverse {
  0% {
    transform: translate(0, 0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  25% {
    transform: translate(-120px, 70px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(60px, -90px) scale(1.3);
    opacity: 0.6;
  }
  75% {
    transform: translate(-70px, 80px) scale(1);
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translate(100px, -40px) scale(0.9);
    opacity: 0;
  }
}

/* ========== AWARENESS CARDS ========== */
.awareness-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.awareness-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 220px;
  transition: all 0.4s ease;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Esconder elementos móviles en desktop */
.awareness-card::before,
.body-awareness__center::after {
  display: none;
}

.awareness-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(74, 222, 128, 0.4);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Posicionamiento de las cards */
.awareness-card--1 {
  top: 5%;
  left: 8%;
  animation-delay: 0.5s;
}

.awareness-card--2 {
  top: 5%;
  right: 8%;
  animation-delay: 1s;
}

.awareness-card--3 {
  top: 35%;
  left: 0%;
  animation-delay: 1.5s;
}

.awareness-card--4 {
  top: 35%;
  right: 0%;
  animation-delay: 2s;
}

.awareness-card--5 {
  bottom: 5%;
  left: 8%;
  animation-delay: 2.5s;
}

.awareness-card--6 {
  bottom: 5%;
  right: 8%;
  animation-delay: 3s;
}

.awareness-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.awareness-card__title {
  font-size: 1rem;
  font-weight: var(--font-semibold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.awareness-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ========== RESPONSIVE - BODY AWARENESS ========== */
@media screen and (max-width: 1200px) {
  .awareness-card {
    max-width: 200px;
    padding: 1.25rem;
  }
  
  .awareness-card--1 {
    left: 5%;
  }
  
  .awareness-card--2 {
    right: 5%;
  }
  
  .awareness-card--3 {
    left: -2%;
  }
  
  .awareness-card--4 {
    right: -2%;
  }
  
  .awareness-card--5 {
    left: 5%;
  }
  
  .awareness-card--6 {
    right: 5%;
  }
  
  .orb-1 {
    width: 150px;
    height: 150px;
  }
  
  .orb-2 {
    width: 120px;
    height: 120px;
  }
  
  .orb-3 {
    width: 140px;
    height: 140px;
  }
  
  .orb-4 {
    width: 100px;
    height: 100px;
  }
  
  .orb-5 {
    width: 130px;
    height: 130px;
  }
  
  /* Ajuste de líneas para tablets grandes */
  .awareness__connections {
    opacity: 0.8;
  }
}

@media screen and (max-width: 968px) {
  .body-awareness {
    padding: 4rem 0;
  }
  
  .body-awareness__content {
    min-height: 900px;
  }
  
  .body-awareness__stomach {
    width: 220px;
  }
  
  .body-awareness__pulse {
    width: 250px;
    height: 250px;
  }
  
  .awareness-card {
    max-width: 180px;
    padding: 1rem;
  }
  
  .awareness-card__icon {
    font-size: 2rem;
  }
  
  .awareness-card__title {
    font-size: 0.9rem;
  }
  
  .awareness-card__text {
    font-size: 0.8rem;
  }
  
  /* Reposicionar cards para tablet */
  .awareness-card--1 {
    top: 2%;
    left: 3%;
  }
  
  .awareness-card--2 {
    top: 2%;
    right: 3%;
  }
  
  .awareness-card--3 {
    top: 32%;
    left: -5%;
  }
  
  .awareness-card--4 {
    top: 32%;
    right: -5%;
  }
  
  .awareness-card--5 {
    bottom: 2%;
    left: 3%;
  }
  
  .awareness-card--6 {
    bottom: 2%;
    right: 3%;
  }
  
  .orb-1 {
    width: 120px;
    height: 120px;
  }
  
  .orb-2 {
    width: 100px;
    height: 100px;
  }
  
  .orb-3 {
    width: 110px;
    height: 110px;
  }
  
  .orb-4 {
    width: 80px;
    height: 80px;
  }
  
  .orb-5 {
    width: 100px;
    height: 100px;
  }
  
  /* Ajuste de líneas para tablets */
  .neon-line {
    stroke-width: 1.5;
  }
}

@media screen and (max-width: 576px) {
  .body-awareness {
    padding: 3rem 0;
  }
  
  .body-awareness__content {
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .body-awareness__stomach {
    width: 140px;
  }
  
  .body-awareness__pulse {
    width: 160px;
    height: 160px;
  }
  
  .body-awareness__center {
    order: 2;
    margin: 2rem 0;
  }
  
  /* Layout vertical para mobile */
  .awareness-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .awareness-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Orden de las cards */
  .awareness-card--1 {
    order: 1;
  }
  
  .awareness-card--2 {
    order: 2;
  }
  
  .awareness-card--3 {
    order: 3;
  }
  
  .awareness-card--4 {
    order: 4;
  }
  
  .awareness-card--5 {
    order: 5;
  }
  
  .awareness-card--6 {
    order: 6;
  }
  
  .awareness-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .awareness-card__title {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    text-align: center;
  }
  
  .awareness-card__text {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .awareness-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
  }
  
  /* Ocultar línea vertical en mobile */
  .awareness__connections {
    display: none !important;
  }
  
  /* Puntos de conexión en las cards */
  .awareness-card::before {
    display: block;
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 
      0 0 10px rgba(74, 222, 128, 0.8),
      0 0 20px rgba(74, 222, 128, 0.5);
    animation: pulsePoint 2s ease-in-out infinite;
    z-index: 3;
  }
  
  @keyframes pulsePoint {
    0%, 100% {
      transform: translateY(-50%) scale(1);
      box-shadow: 
        0 0 10px rgba(74, 222, 128, 0.8),
        0 0 20px rgba(74, 222, 128, 0.5);
    }
    50% {
      transform: translateY(-50%) scale(1.3);
      box-shadow: 
        0 0 15px rgba(74, 222, 128, 1),
        0 0 30px rgba(74, 222, 128, 0.8),
        0 0 45px rgba(74, 222, 128, 0.6);
    }
  }
  
  /* Punto especial para el estómago - OCULTO */
  .body-awareness__center::after {
    display: none !important;
  }
  
  .orb-1 {
    width: 90px;
    height: 90px;
  }
  
  .orb-2 {
    width: 70px;
    height: 70px;
  }
  
  .orb-3 {
    width: 80px;
    height: 80px;
  }
  
  .orb-4 {
    width: 60px;
    height: 60px;
  }
  
  .orb-5 {
    width: 75px;
    height: 75px;
  }
  
  @keyframes wanderOrb {
    0% {
      transform: translate(0, 0) scale(0.8);
      opacity: 0;
    }
    10% {
      opacity: 0.5;
    }
    25% {
      transform: translate(50px, -40px) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translate(-30px, 60px) scale(1.1);
      opacity: 0.4;
    }
    75% {
      transform: translate(40px, -30px) scale(0.9);
      opacity: 0.5;
    }
    90% {
      opacity: 0.2;
    }
    100% {
      transform: translate(-50px, 30px) scale(0.8);
      opacity: 0;
    }
  }
  
  @keyframes wanderOrbReverse {
    0% {
      transform: translate(0, 0) scale(0.9);
      opacity: 0;
    }
    10% {
      opacity: 0.4;
    }
    25% {
      transform: translate(-60px, 40px) scale(1);
      opacity: 0.5;
    }
    50% {
      transform: translate(30px, -50px) scale(1.2);
      opacity: 0.5;
    }
    75% {
      transform: translate(-40px, 50px) scale(1);
      opacity: 0.6;
    }
    90% {
      opacity: 0.3;
    }
    100% {
      transform: translate(50px, -20px) scale(0.9);
      opacity: 0;
    }
  }
  
  /* FAQs responsive */
  .faqs {
    padding: 3rem 0;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    gap: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
  
  .faqs__cta {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
  }
  
  .faqs__cta-text {
    font-size: 1.1rem;
  }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
