@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #050508;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --accent1: #A78BFF;
  --accent2: #FA6ECA;
  --accent3: #6EF4FA;
  --text: #F0EEF8;
  --muted: rgba(240, 238, 248, 0.85);
  --glow1: rgba(60, 60, 197, 0.35);
  --glow2: rgb(5, 3, 100);
  --glow3: rgba(110, 244, 250, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  top: -50%;
  left: 0;
  right: 0;
  height: 200vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.bg-mesh::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, var(--glow1) 0%, transparent 65%);
  animation: drift1 18s ease-in-out infinite alternate;
}

.bg-mesh::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse, var(--glow2) 0%, transparent 65%);
  animation: drift2 22s ease-in-out infinite alternate;
}

.bg-mesh-extra {
  position: fixed;
  top: -50%;
  left: 0;
  right: 0;
  height: 200vh;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.bg-mesh-extra::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 40%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, var(--glow3) 0%, transparent 65%);
  animation: drift3 25s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(8%, 6%) scale(1.1)
  }
}

@keyframes drift2 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(-6%, -8%) scale(1.15)
  }
}

@keyframes drift3 {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(-10%, 10%)
  }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}

.menu-container {
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  top: 40px;
  width: min(860px, calc(100% - 48px));
  min-width: 300px;
  padding: 12px 48px;
  background: rgba(15, 15, 24, 0.508);
  backdrop-filter: blur(28px);
  border-radius: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7));
}

.nav-logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-logo-text span {
  color: var(--accent1);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.lang-toggle {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  font-size: 0.82rem;
}

.lang-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 255, 0.25);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent1);
}

.mobile-lang-toggle {
  margin-top: 16px;
  font-size: 1rem;
  padding: 10px 20px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

.btn-primary {
  padding: 8px 22px;
  border-radius: 100px;
  background: var(--accent1);
  border: none;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(167, 139, 255, 0.4);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: #B89DFF;
  box-shadow: 0 0 35px rgba(167, 139, 255, 0.6);
  transform: translateY(-1px);
}

section {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  box-sizing: border-box;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(167, 139, 255, 0.4);
  background: linear-gradient(135deg, 
    rgba(167, 139, 255, 0.12) 0%, 
    rgba(167, 139, 255, 0.06) 100%);
  backdrop-filter: blur(20px) saturate(1.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  box-shadow: 
    0 0 0 1px rgba(167, 139, 255, 0.1) inset,
    0 4px 20px rgba(167, 139, 255, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 255, 0.6);
  box-shadow: 
    0 0 0 1px rgba(167, 139, 255, 0.2) inset,
    0 8px 30px rgba(167, 139, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent1) 0%, #8B7EFF 100%);
  box-shadow: 
    0 0 0 2px rgba(167, 139, 255, 0.2),
    0 0 12px var(--accent1),
    0 0 20px rgba(167, 139, 255, 0.4);
  animation: pulseDot 2.5s ease-in-out infinite;
  position: relative;
}

.hero-badge-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 255, 0.3) 0%, transparent 70%);
  animation: pulseDot 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1)
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradShift 4s ease infinite alternate;
}

@keyframes gradShift {
  from {
    background-position: 0%
  }

  to {
    background-position: 100%
  }
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-hero {
  padding: 16px 32px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent1), #B89DFF);
  color: #fff;
  border: none;
  box-shadow: 0 8px 40px rgba(167, 139, 255, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(167, 139, 255, 0.65);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface);
  transform: translateY(-2px);
}

.arrow-icon {
  transition: transform 0.2s;
}

.btn-hero-primary:hover .arrow-icon {
  transform: translateX(4px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-item::after {
  content: "◆";
  color: var(--accent1);
  font-size: 0.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 72px;
}

.services {
  padding: 120px 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--card-glow, rgba(167, 139, 255, 0.08)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.service-card.web {
  --card-glow: rgba(167, 139, 255, 0.15);
}

.service-card.mobile {
  --card-glow: rgba(250, 110, 202, 0.15);
}

.service-card.crm {
  --card-glow: rgba(110, 244, 250, 0.15);
}

.service-card.pos {
  --card-glow: rgba(250, 200, 100, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  margin-top: 24px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid;
  position: relative;
  z-index: 1;
}

.tag-purple {
  color: var(--accent1);
  border-color: rgba(167, 139, 255, 0.3);
  background: rgba(167, 139, 255, 0.08);
}

.tag-pink {
  color: var(--accent2);
  border-color: rgba(250, 110, 202, 0.3);
  background: rgba(250, 110, 202, 0.08);
}

.tag-cyan {
  color: var(--accent3);
  border-color: rgba(110, 244, 250, 0.3);
  background: rgba(110, 244, 250, 0.08);
}

.tag-gold {
  color: #f5c842;
  border-color: rgba(245, 200, 66, 0.3);
  background: rgba(245, 200, 66, 0.08);
}

.feature-highlight {
  padding: 80px 48px 120px;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

#three-container {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
}

#three-container canvas {
  display: block;
  border-radius: 50%;
}

.feature-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
  pointer-events: none;
}

.ring1 {
  width: 360px;
  height: 360px;
  border-color: rgba(167, 139, 255, 0.2);
  animation-duration: 20s;
}

.ring2 {
  width: 260px;
  height: 260px;
  border-color: rgba(250, 110, 202, 0.15);
  animation-duration: 15s;
  animation-direction: reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.ring1::after,
.ring2::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.ring1::after {
  background-color: white;
}

.ring2::after {
  background-color: white;
}

.feature-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-orb {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  animation: orbitFloat ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--accent1);
}

.feature-orb i {
  font-size: 1.8rem;
  color: white;
}

.feature-orb:nth-child(1) {
  top: 8%;
  left: 2%;
  animation-duration: 5s;
}

.feature-orb:nth-child(2) {
  top: 6%;
  right: 2%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.feature-orb:nth-child(3) {
  bottom: 10%;
  left: 4%;
  animation-duration: 4.5s;
  animation-delay: 0.5s;
}

.feature-orb:nth-child(4) {
  bottom: 8%;
  right: 3%;
  animation-duration: 5.5s;
  animation-delay: 1.5s;
}

.feature-orb:nth-child(5) {
  bottom: -22%;
  right: 45%;
  animation-duration: 5.5s;
  animation-delay: 1.5s;
}

.feature-orb:nth-child(6) {
  bottom: 102%;
  right: 45%;
  animation-duration: 5.5s;
  animation-delay: 1.5s;
}

@keyframes orbitFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.feature-content .section-title {
  max-width: 500px;
}

.feature-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(167, 139, 255, 0.15);
  border: 1px solid rgba(167, 139, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent1);
  margin-top: 2px;
}

.feature-list p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-list strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.process {
  padding: 80px 48px 120px;
  max-width: 1140px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.process-step {
  background: var(--bg);
  padding: 40px 28px;
  position: relative;
  transition: background 0.3s;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.process-step h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.step-line {
  position: absolute;
  top: 40px;
  right: 0;
  width: 1px;
  height: 60%;
  background: var(--border);
}

.process-step:last-child .step-line {
  display: none;
}

.pricing {
  padding: 80px 48px 120px;
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--accent1);
  background: rgba(167, 139, 255, 0.06);
  box-shadow: 0 0 60px rgba(167, 139, 255, 0.12), inset 0 0 60px rgba(167, 139, 255, 0.04);
}

.pricing-card.featured::before {
  content: "MÁS POPULAR";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent1);
  color: #fff;
  font-weight: 600;
}

.pricing-tier {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

.pricing-price {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 8px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-desc {
  color: var(--muted);
  font-size: 0.87rem;
  margin: 16px 0 32px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-features li::before {
  content: "✓";
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(167, 139, 255, 0.15);
  color: var(--accent1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn-plan:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-plan-featured {
  background: var(--accent1);
  border-color: var(--accent1);
  color: #fff;
  box-shadow: 0 8px 30px rgba(167, 139, 255, 0.4);
}

.btn-plan-featured:hover {
  background: #B89DFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(167, 139, 255, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS + FAQ COMBINED SECTION
   ═══════════════════════════════════════════════════════════ */


.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 64px;
  background: rgba(167, 139, 255, 0.04);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(167, 139, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 40px;
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--muted);
}

.social-btn:hover {
  border-color: var(--accent1);
  color: var(--accent1);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) .step-line {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  nav.scrolled {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 90px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .services {
    padding: 80px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 36px 24px;
  }

  .feature-highlight {
    padding: 60px 20px 80px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-visual {
    min-height: 280px;
  }

  #three-container {
    width: 220px;
    height: 220px;
  }

  .ring1 {
    width: 280px;
    height: 280px;
  }

  .ring2 {
    width: 210px;
    height: 210px;
  }

  .process {
    padding: 60px 20px 80px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-line {
    display: none !important;
  }

  .process-step {
    padding: 32px 24px;
  }

  .pricing {
    padding: 60px 20px 80px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 40px 20px 80px;
  }

  .cta-inner {
    padding: 48px 28px;
    border-radius: 24px;
  }

  .cta-inner::before {
    width: 100%;
    max-width: 350px;
  }

  footer {
    padding: 48px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-sub {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-hero {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .pricing-price {
    font-size: 2.4rem;
  }
}

/* ========== SECCIÓN DE CONTACTO ========== */
.contact-section {
  padding: 80px 48px 120px;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(167, 139, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header .section-title {
  margin: 0 auto 16px;
}

.contact-header .section-sub {
  margin: 0 auto;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.6);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent1);
  background: rgba(167, 139, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(167, 139, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F0EEF8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #0a0a0d;
  color: var(--text);
  padding: 10px;
}

.form-group select option:checked {
  background: rgb(33, 27, 90);
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active {
  background: rgba(167, 139, 255, 0.25);
  color: #ffffff;
  font-weight: 500;
}

.form-group select option:disabled {
  color: var(--muted);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent1);
}

.form-checkbox label {
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--accent1);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.btn-submit {
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent1), #B89DFF);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(167, 139, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(167, 139, 255, 0.6);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit .btn-loading {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: inline;
}

.form-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  display: block;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.form-message.error {
  display: block;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: #ff4757;
}

/* ========== BOTÓN FLOTANTE WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(5, 5, 8, 0.95);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ========== RESPONSIVE CONTACTO & WHATSAPP ========== */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px 80px;
  }

  .contact-section::before {
    width: 100%;
    max-width: 400px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .contact-header .section-title {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {

  #getStartedBtn{
    display: none;
  }

  .contact-section {
    padding: 40px 20px 60px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-header .section-title {
    font-size: 1.5rem;
  }

  .contact-header .section-sub {
    font-size: 0.88rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS + FAQ COMBINED SECTION
   ═══════════════════════════════════════════════════════════ */

.testimonials-faq-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px 100px;
  background: linear-gradient(180deg, rgba(10,10,13,0) 0%, rgba(10,10,13,0.5) 50%, rgba(10,10,13,0) 100%);
  position: relative;
}

.testimonials-faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Testimonials Column */
.testimonials-column, .faq-column {
  padding-top: 100px;
}

.testimonials-column .section-label,
.faq-column .section-label {
  display: block;
  margin-bottom: 16px;
}

.testimonials-column .section-title,
.faq-column .section-title {
  margin-bottom: 40px;
  font-size: 2rem;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(20,20,26,0.6) 0%, rgba(20,20,26,0.3) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(167,139,255,0.15);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,255,0.4);
  box-shadow: 0 12px 40px rgba(167,139,255,0.15);
}

.testimonial-stars {
  color: var(--accent1);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-name {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.author-role {
  color: var(--muted);
  font-size: 0.85rem;
}

/* FAQ Column */
.faq-column {
  /* No sticky, permite scroll independiente */
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(20,20,26,0.4);
  border: 1px solid rgba(167,139,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(167,139,255,0.3);
  background: rgba(20,20,26,0.6);
}

.faq-item.active {
  border-color: var(--accent1);
  background: rgba(20,20,26,0.8);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent1);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
  margin: 0;
}

/* Responsive Testimonials + FAQ */
@media (max-width: 1024px) {
  .testimonials-faq-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .testimonials-column {
    position: relative;
    top: 0;
  }

  .testimonials-column .section-title,
  .faq-column .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .testimonials-faq-section {
    padding: 0px 20px 60px;
  }

  .testimonials-faq-container {
    gap: 60px;
  }

  .testimonials-column, .faq-column {
    padding-top: 60px;
  }

  .testimonials-column .section-title,
  .faq-column .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .testimonials-list {
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 0.92rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }

  .faq-icon {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

