:root {
  --primary: #ff8000;
  --secondary: #2f6a00;
  --accent: #00ff88;
  --dark: #0a0a0a;
  --light: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.3;
  transition: transform 0.3s ease;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: clamp(60px, 12vw, 80px);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  opacity: 0.1;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite linear;
}

@keyframes float {
  from {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  to {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
  line-height: 1.1;
  word-break: break-word;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px var(--primary));
  }
  to {
    filter: drop-shadow(0 0 40px var(--accent));
  }
}

.hero p {
  font-size: clamp(1.2rem, 3vw, 2rem);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.termometro {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.05) 0%, rgba(47, 106, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.termometro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="80" cy="70" r="1" fill="%232f6a00" opacity="0.2"/><circle cx="50" cy="20" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="10" cy="90" r="1" fill="%232f6a00" opacity="0.2"/></svg>');
  animation: drift 25s linear infinite;
}

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

.termometro h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.termometro-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.encuesta-container {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pregunta-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.pregunta-numero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
}

.barra-progreso {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.pregunta-texto {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--light);
}

.opciones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.opcion {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--light);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 1.2;
}

.opcion:hover {
  background: rgba(255, 128, 0, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.opcion.seleccionado {
  background: rgba(255, 128, 0, 0.2);
  border-color: var(--primary);
}

.resultado-icono {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.8rem;
  font-size: 3rem;
}

.resultado-titulo {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.resultado-mensaje {
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.resultado-tipo {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.resultado-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.reiniciar {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

.reiniciar:hover {
  background: var(--accent);
  color: var(--dark);
}

.btn-accion {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
}

.btn-accion:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 128, 0, 0.3);
}

.btn-siguiente {
  margin-top: 0.8rem;
  animation: slideIn 0.3s ease;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .termometro {
    padding: 1.5rem 1rem;
  }

  .termometro h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .termometro-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .encuesta-container {
    padding: 1rem;
    border-radius: 15px;
  }
  
  .resultado-buttons {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .reiniciar, .btn-accion, .btn-siguiente {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: clamp(90px, 20vw, 120px);
  }

  .termometro {
    padding: 1.2rem 0.8rem;
  }

  .termometro h2 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  
  .termometro-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }
  
  .encuesta-container {
    padding: 0.9rem;
  }
  
  .pregunta-header {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
  .pregunta-texto {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .opcion {
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
  }
  
  .resultado-icono {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.6rem;
    font-size: 2.5rem;
  }
  
  .resultado-titulo {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  
  .resultado-mensaje {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .resultado-tipo {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .resultado-buttons {
    gap: 0.6rem;
  }
  
  .reiniciar, .btn-accion, .btn-siguiente {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .video-intro {
    padding: 4rem 2rem;
  }

  .video-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="80" cy="70" r="1" fill="%232f6a00" opacity="0.2"/><circle cx="50" cy="20" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="10" cy="90" r="1" fill="%232f6a00" opacity="0.2"/></svg>');
    animation: drift 25s linear infinite;
  }

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

  .video-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .video-intro > .video-container > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 128, 0, 0.2);
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
  }

  .video-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
  }

  .video-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .video-feature:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-3px);
  }

  .video-feature .feature-icon {
    font-size: 1.5rem;
    margin: 0;
    background: none;
    border: none;
    width: auto;
    height: auto;
    display: inline-block;
  }
}

.video-intro {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.05) 0%, rgba(47, 106, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.video-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="80" cy="70" r="1" fill="%232f6a00" opacity="0.2"/><circle cx="50" cy="20" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="10" cy="90" r="1" fill="%232f6a00" opacity="0.2"/></svg>');
  animation: drift 25s linear infinite;
}

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

.video-intro h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-intro > .video-container > p {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 128, 0, 0.2);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.video-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-feature:hover {
  border-color: var(--accent);
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-3px);
}

.video-feature .feature-icon {
  font-size: 1.5rem;
  margin: 0;
  background: none;
  border: none;
  width: auto;
  height: auto;
  display: inline-block;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 128, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 2rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  height: clamp(60px, 12vw, 80px);
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.logo {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: clamp(60px, 10vw, 80px);
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 128, 0, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p {
  opacity: 0.8;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .logo-img {
    height: clamp(100px, 22vw, 130px);
  }
}

.ecosystem {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.05) 0%, rgba(47, 106, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.ecosystem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23ff8000" opacity="0.3"/><circle cx="80" cy="70" r="1" fill="%232f6a00" opacity="0.3"/><circle cx="50" cy="20" r="1" fill="%23ff8000" opacity="0.3"/><circle cx="10" cy="90" r="1" fill="%232f6a00" opacity="0.3"/></svg>');
  animation: drift 30s linear infinite;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-100px); }
}

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

.ecosystem h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ecosystem-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ecosystem-card:hover::before {
  opacity: 0.1;
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.ecosystem-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 128, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.ecosystem-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.ecosystem-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ecosystem h2 {
    font-size: 2rem;
  }
  
  .ecosystem-subtitle {
    font-size: 1.1rem;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

.sinparedes {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.08) 0%, rgba(47, 106, 0, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.sinparedes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="40" r="1.5" fill="%23ff8000" opacity="0.2"/><circle cx="70" cy="60" r="1.5" fill="%232f6a00" opacity="0.2"/><circle cx="50" cy="10" r="1.5" fill="%23ff8000" opacity="0.2"/><circle cx="20" cy="80" r="1.5" fill="%232f6a00" opacity="0.2"/></svg>');
  animation: drift 25s linear infinite reverse;
}

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

.sinparedes h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite alternate;
}

.sinparedes-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.sinparedes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sinparedes-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sinparedes-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sinparedes-card:hover::before {
  opacity: 0.1;
}

.sinparedes-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.sinparedes-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.sinparedes-card:hover .sinparedes-icon {
  transform: scale(1.1);
}

.sinparedes-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.sinparedes-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sinparedes h2 {
    font-size: 2.5rem;
  }
  
  .sinparedes-subtitle {
    font-size: 1.2rem;
  }
  
  .sinparedes-grid {
    grid-template-columns: 1fr;
  }
}

.membership {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.05) 0%, rgba(47, 106, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="35" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="75" cy="65" r="1" fill="%232f6a00" opacity="0.2"/><circle cx="50" cy="15" r="1" fill="%23ff8000" opacity="0.2"/><circle cx="15" cy="85" r="1" fill="%232f6a00" opacity="0.2"/></svg>');
  animation: drift 30s linear infinite;
}

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

.membership h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.membership-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.recommended {
  border-color: var(--accent);
  transform: scale(1.05);
  background: rgba(0, 255, 136, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.pricing-card.recommended:hover {
  transform: translateY(-10px) scale(1.05);
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.price {
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
}

.savings {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features-list li {
  padding: 0.7rem 0;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-button.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-button.outline:hover {
  background: var(--primary);
  color: var(--light);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.recommended {
    transform: none;
  }
  
  .pricing-card.recommended:hover {
    transform: translateY(-10px);
  }
}

@media (hover: none) {
  .cursor, .cursor-follower {
    display: none;
  }
  
  body {
    cursor: auto;
  }
}

.transformacion {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.transformacion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="70" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
  animation: drift 20s linear infinite;
}

.transformacion-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.transformacion h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--light);
  font-weight: 900;
}

.transformacion p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transformacion .cta-button {
  background: var(--light);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.transformacion .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--accent);
  color: var(--dark);
}

.footer {
  padding: 3rem 2rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  border-top: 1px solid rgba(255, 128, 0, 0.2);
  text-align: center;
}

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

.footer-logo {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo .logo-img {
  height: clamp(60px, 10vw, 80px);
  width: auto;
  object-fit: contain;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: rgba(255, 128, 0, 0.1);
}

.social-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--light);
}

@media (max-width: 768px) {
  .logo-img {
    height: clamp(75px, 18vw, 105px);
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon img {
    width: 22px;
    height: 22px;
  }
  
  .footer-text {
    font-size: 0.85rem;
  }
}

