/* ========== styles.css ========== */
/* SHYRO Hosting - Versión refinada profesional */
/* Colores: #04D2FB (cian), #027BC8 (azul medio), #47EEFC (cian brillante) */

/* ========== VARIABLES GLOBALES ========== */
:root {
  /* Opacidad del overlay oscuro para fondos con webp */
  --overlay-opacity-hero: 0.75;      /* Hero (carrusel) */
  --overlay-opacity-pricing: 0.75;   /* Sección de planes */
  --overlay-opacity-cta: 0.75;       /* Sección CTA */
  --overlay-opacity-service: 0.75;   /* Páginas de servicios */
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: #05070a;
  color: #eef2ff;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(4, 210, 251, 0.25);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(4, 210, 251, 0.25);
  color: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #04D2FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.section-header p {
  color: #7e8fa8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

/* ========== ANIMACIONES GLOBALES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== NAVBAR RENOVADO ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 210, 251, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(2, 4, 10, 0.98);
  border-bottom-color: rgba(4, 210, 251, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo span {
  background: linear-gradient(120deg, #ffffff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: #04D2FB;
  background: rgba(4, 210, 251, 0.1);
}

/* ========== DROPDOWN (SERVICIOS) ========== */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(8, 10, 18, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(4, 210, 251, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
  list-style: none;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-link i {
  width: 20px;
  font-size: 0.95rem;
  color: #04D2FB;
}

.dropdown-link:hover {
  background: rgba(4, 210, 251, 0.08);
  color: #ffffff;
}

.dropdown-link:hover i {
  color: #47EEFC;
}

/* ========== BOTONES DE ACCIÓN ========== */
.nav-link.btn-cliente,
.nav-link.btn-area {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: none;
}

.nav-link.btn-cliente {
  background: transparent;
  border: 1px solid rgba(4, 210, 251, 0.4);
  color: #04D2FB;
  box-shadow: none;
}

.nav-link.btn-cliente:hover {
  background: rgba(4, 210, 251, 0.12);
  border-color: #04D2FB;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-link.btn-area {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  box-shadow: 0 2px 8px rgba(4, 210, 251, 0.25);
}

.nav-link.btn-area:hover {
  background: linear-gradient(105deg, #27d9f9, #0492db);
  box-shadow: 0 4px 14px rgba(4, 210, 251, 0.4);
  transform: translateY(-1px);
}

.nav-link.btn-cliente::after,
.nav-link.btn-area::after {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #cbd5e1;
  background: none;
  border: none;
  z-index: 1001;
  transition: color 0.2s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.hamburger:hover {
  color: #04D2FB;
  background: rgba(4, 210, 251, 0.08);
}

/* ========== BOTONES GENERALES ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  box-shadow: 0 4px 16px rgba(4, 210, 251, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(4, 210, 251, 0.35);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(4, 210, 251, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.btn-secondary:hover {
  border-color: rgba(4, 210, 251, 0.4);
  background: rgba(4, 210, 251, 0.06);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.slide-1 {
  background: url('headerbackground.webp') center/cover no-repeat;
}

.hero-slide.slide-2 {
  background: url('hardwarebg.webp') center/cover no-repeat;
}

.hero-slide.slide-3 {
  background: url('miamiflorida.webp') center/cover no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, var(--overlay-opacity-hero));
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #96FAFD;
  animation: fadeInUp 0.5s ease forwards;
}

.trust-badge i {
  color: #04D2FB;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1.2;
  min-width: 280px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.55s ease 0.08s forwards;
  opacity: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #04D2FB, #47EEFC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
  animation: fadeInUp 0.55s ease 0.16s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.55s ease 0.24s forwards;
  opacity: 0;
}

.hero-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  animation: fadeInRight 0.7s ease forwards;
}

.floating-icon {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 20px rgba(4, 210, 251, 0.2));
  animation: float 5s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(4, 210, 251, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #96FAFD;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 7, 12, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(4, 210, 251, 0.7);
  border-color: transparent;
  color: white;
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active {
  width: 22px;
  background: #04D2FB;
  border-radius: 3px;
}

.dot:hover {
  background: rgba(4, 210, 251, 0.6);
}

/* ========== HARDWARE SPECS ========== */
.hardware-specs {
  padding: 5rem 0;
  background: #070b10;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: rgba(12, 14, 22, 0.85);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.spec-card:nth-child(1) { animation-delay: 0.05s; }
.spec-card:nth-child(2) { animation-delay: 0.1s; }
.spec-card:nth-child(3) { animation-delay: 0.15s; }
.spec-card:nth-child(4) { animation-delay: 0.2s; }
.spec-card:nth-child(5) { animation-delay: 0.25s; }
.spec-card:nth-child(6) { animation-delay: 0.3s; }

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 210, 251, 0.3);
  box-shadow: 0 12px 32px -10px rgba(4, 210, 251, 0.15);
}

.spec-icon {
  font-size: 2.2rem;
  color: #04D2FB;
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}

.spec-card:hover .spec-icon {
  transform: scale(1.05);
}

.spec-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.spec-details {
  text-align: center;
}

.spec-highlight {
  display: inline-block;
  background: rgba(4, 210, 251, 0.1);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #96FAFD;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.spec-details p {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.spec-card.highlight-spec {
  background: linear-gradient(135deg, rgba(4, 210, 251, 0.08), rgba(4, 210, 251, 0.03));
  border: 1px solid rgba(4, 210, 251, 0.25);
  position: relative;
  overflow: hidden;
}

.spec-card.highlight-spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 210, 251, 0.06), transparent);
  animation: cloudflareShine 4s infinite;
}

@keyframes cloudflareShine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

/* ========== PRICING ========== */
.pricing {
  position: relative;
  padding: 5.5rem 0;
  background: url('planes.webp') center/contain no-repeat;
  background-color: #05070a7a;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, var(--overlay-opacity-pricing));
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.category-header {
  text-align: center;
  margin: 2rem 0 2.5rem;
  padding: 0.75rem 0 1.25rem;
  border-bottom: 1px solid rgba(4, 210, 251, 0.12);
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.05s forwards;
}

.category-icon {
  font-size: 1.8rem;
  color: #04D2FB;
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.category-description {
  color: #7e8fa8;
  font-size: 0.875rem;
}

body.founder-mode .category-icon { color: #FFD700; }

body.founder-mode .category-title {
  background: linear-gradient(135deg, #ffffff, #FFD700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.1s forwards;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(12, 14, 22, 0.95);
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7e8fa8;
  transition: color 0.2s ease;
  cursor: pointer;
}

.toggle-label.normal.active { color: #04D2FB; }
.toggle-label.founder.active { color: #FFD700; }

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262b44;
  transition: 0.25s ease;
  border-radius: 28px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.25s ease;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: linear-gradient(105deg, #D4AF37, #FFD700);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 215, 0, 0.08);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.founder-info i { color: #FFD700; }
.founder-info strong { color: #FFD700; font-size: 1rem; }

.founder-badge {
  background: linear-gradient(105deg, #FFD700, #D4AF37);
  padding: 0.15rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a1a2e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: rgba(11, 13, 21, 0.98);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.08s; }
.pricing-card:nth-child(2) { animation-delay: 0.16s; }
.pricing-card:nth-child(3) { animation-delay: 0.24s; }
.pricing-card:nth-child(4) { animation-delay: 0.32s; }
.pricing-card:nth-child(5) { animation-delay: 0.4s; }

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 210, 251, 0.35);
  box-shadow: 0 16px 40px -14px rgba(4, 210, 251, 0.2);
}

.pricing-card.featured {
  border: 1px solid rgba(4, 210, 251, 0.4);
  box-shadow: 0 0 0 1px rgba(4, 210, 251, 0.08), 0 8px 24px -10px rgba(4, 210, 251, 0.2);
  background: rgba(12, 16, 26, 0.99);
}

.pricing-card.featured:hover {
  border-color: rgba(4, 210, 251, 0.6);
  box-shadow: 0 20px 48px -14px rgba(4, 210, 251, 0.28);
}

body.founder-mode .pricing-card {
  border-color: rgba(212, 175, 55, 0.2);
}

body.founder-mode .pricing-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px -14px rgba(212, 175, 55, 0.18);
}

body.founder-mode .pricing-card.featured {
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.06);
}

body.founder-mode .pricing-badge {
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  color: #1a1a2e;
}

body.founder-mode .pricing-icon i,
body.founder-mode .pricing-features li i { color: #FFD700; }

body.founder-mode .currency,
body.founder-mode .price-value { color: #FFD700; }

body.founder-mode .price-old { color: #D4AF37; opacity: 0.6; }
body.founder-mode .price-note { color: #FFD700; }

body.founder-mode .btn-pricing {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

body.founder-mode .btn-pricing:hover {
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

body.founder-mode .btn-pricing-featured {
  background: linear-gradient(105deg, #FFD700, #D4AF37);
  color: #1a1a2e;
}

body.founder-mode .btn-pricing-featured:hover {
  background: linear-gradient(105deg, #FFE44D, #FFD700);
  box-shadow: 0 6px 18px -6px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #027BC8, #04D2FB);
  padding: 0.25rem 0.9rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-icon {
  text-align: center;
  font-size: 2.2rem;
  color: #04D2FB;
  margin: 1rem 0 0.5rem;
  transition: transform 0.25s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.04);
}

.pricing-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0.4rem 0;
  color: #e2e8f0;
  letter-spacing: -0.025em;
}

body.founder-mode .pricing-card h3 { color: #e2e8f0; }

.price-container {
  text-align: center;
  margin: 0.75rem 0;
}

.price-normal .price,
.price-founder .price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-normal .currency,
.price-founder .currency {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 600;
  color: #04D2FB;
}

.price-normal .period,
.price-founder .period {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7e8fa8;
}

.price-old {
  font-size: 0.85rem;
  color: #7e8fa8;
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.price-note {
  font-size: 0.65rem;
  color: #04D2FB;
  margin-top: 0.2rem;
}

.hidden { display: none; }

.pricing-features {
  list-style: none;
  margin: 1.25rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
  color: #04D2FB;
  font-size: 0.8rem;
  width: 18px;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: rgba(4, 210, 251, 0.06);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: #96FAFD;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.btn-pricing:hover {
  background: rgba(4, 210, 251, 0.14);
  border-color: rgba(4, 210, 251, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-pricing:active { transform: translateY(0); }

.btn-pricing-featured {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(4, 210, 251, 0.25);
}

.btn-pricing-featured:hover {
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
  box-shadow: 0 6px 20px rgba(4, 210, 251, 0.35);
  color: white;
  transform: translateY(-1px);
}

/* ========== SERVER SPLITTER ========== */
.splitter-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(4, 210, 251, 0.1);
  position: relative;
}

.splitter-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #04D2FB;
}

.splitter-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(4, 210, 251, 0.04);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(4, 210, 251, 0.1);
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.1s forwards;
}

.splitter-header-icon {
  font-size: 2rem;
  color: #04D2FB;
  background: rgba(4, 210, 251, 0.08);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.splitter-header-content { flex: 1; }

.splitter-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
  letter-spacing: -0.025em;
}

.splitter-description {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.splitter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.splitter-card { border-left: 2px solid rgba(4, 210, 251, 0.4); }
.splitter-card .pricing-icon i { color: #04D2FB; }
.splitter-badge { background: linear-gradient(90deg, #04D2FB, #027BC8); }
.splitter-card.featured { border-left: 2px solid #04D2FB; }

body.founder-mode .splitter-card { border-left-color: rgba(255, 215, 0, 0.4); }
body.founder-mode .splitter-header-icon { color: #FFD700; background: rgba(255, 215, 0, 0.08); }
body.founder-mode .splitter-title { color: #e2e8f0; }
body.founder-mode .splitter-card .pricing-icon i { color: #FFD700; }
body.founder-mode .splitter-badge { background: linear-gradient(90deg, #FFD700, #D4AF37); color: #1a1a2e; }

.splitter-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(4, 210, 251, 0.07);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #96FAFD;
}

.splitter-benefit-tag i { color: #04D2FB; }

.splitter-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #5e6a8f;
}

.splitter-examples span:not(:first-child) {
  background: rgba(4, 210, 251, 0.06);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  color: #7e8fa8;
}

.splitter-note {
  margin: 0.75rem 0 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.7rem;
  color: #5e6a8f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.splitter-note i { color: #04D2FB; }

.trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-signal i { font-size: 1.1rem; color: #04D2FB; }

.trust-signal div { display: flex; flex-direction: column; }

.trust-signal strong { font-size: 0.8rem; color: #e2e8f0; font-weight: 600; }
.trust-signal span { font-size: 0.7rem; color: #5e6a8f; }

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: #5e6a8f;
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(4, 210, 251, 0.04);
  border-radius: 10px;
  display: inline-block;
  width: 100%;
}

.pricing-note i { color: #04D2FB; margin-right: 0.4rem; }

.note-link {
  color: #04D2FB;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.note-link:hover { color: #47EEFC; text-decoration: underline; }

.legal-note {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(4, 210, 251, 0.05);
  border-left: 3px solid #04D2FB;
  border-radius: 8px;
  font-size: 0.85rem;
}

.legal-note p {
  margin-bottom: 0;
  font-weight: 600;
  color: #e2e8f0;
}

.legal-note ul {
  margin-top: 0.5rem;
  list-style: none;
  padding-left: 0;
}

.legal-note li {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
}

.legal-note a {
  color: #04D2FB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-note a:hover {
  color: #47EEFC;
  text-decoration: underline;
}

body.founder-mode .legal-note {
  background: rgba(255, 215, 0, 0.05);
  border-left-color: #FFD700;
}

body.founder-mode .legal-note a {
  color: #FFD700;
}

body.founder-mode .legal-note a:hover {
  color: #FFE44D;
}

/* ========== LOCATION ========== */
.location {
  padding: 5rem 0;
  background: #070b10;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 40%, rgba(4, 210, 251, 0.05), transparent 55%);
  pointer-events: none;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-info {
  opacity: 0;
  animation: fadeInLeft 0.55s ease forwards;
}

.location-map {
  opacity: 0;
  animation: fadeInRight 0.55s ease 0.15s forwards;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.location-badge i { color: #04D2FB; font-size: 0.85rem; }
.location-badge span { color: #96FAFD; font-weight: 500; font-size: 0.85rem; }

.location-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
  letter-spacing: -0.03em;
}

.location-info > p {
  color: #7e8fa8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.location-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  transition: transform 0.2s ease;
}

.stat:hover { transform: translateY(-2px); }

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.72rem;
  color: #5e6a8f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.location-disclaimer {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: #8b94a6;
}

.location-disclaimer p {
  margin-bottom: 0.25rem;
  line-height: 1.5;
  font-size: 0.75rem;
}

.location-disclaimer a {
  color: #04D2FB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-disclaimer a:hover {
  color: #47EEFC;
  text-decoration: underline;
}

body.founder-mode .location-disclaimer a {
  color: #FFD700;
}

body.founder-mode .location-disclaimer a:hover {
  color: #FFE44D;
}

.world-map-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #090c18;
  border: 1px solid rgba(4, 210, 251, 0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.world-map-container:hover {
  border-color: rgba(4, 210, 251, 0.3);
  box-shadow: 0 0 30px rgba(4, 210, 251, 0.1);
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.marker-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(4, 210, 251, 0.3);
  border-radius: 50%;
  animation: radarPing 2.5s ease-out infinite;
}

@keyframes radarPing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.marker-dot {
  position: relative;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(4, 210, 251, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-marker:hover .marker-dot {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(4, 210, 251, 0.7);
}

.marker-dot i { font-size: 0.9rem; color: white; }

.marker-label {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 7, 12, 0.95);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(4, 210, 251, 0.3);
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.marker-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #96FAFD;
}

.marker-label small { font-size: 0.6rem; color: #5e6a8f; }

.map-marker:hover .marker-label {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

/* ========== BENEFITS ========== */
.benefits {
  padding: 5rem 0;
  background: #05070a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(11, 13, 21, 0.7);
  padding: 1.75rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.5s ease forwards;
  will-change: transform;
}

.benefit-item:nth-child(1) { animation-delay: 0.04s; }
.benefit-item:nth-child(2) { animation-delay: 0.08s; }
.benefit-item:nth-child(3) { animation-delay: 0.12s; }
.benefit-item:nth-child(4) { animation-delay: 0.16s; }
.benefit-item:nth-child(5) { animation-delay: 0.2s; }
.benefit-item:nth-child(6) { animation-delay: 0.24s; }

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 210, 251, 0.2);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 2.1rem;
  color: #04D2FB;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.benefit-item:hover .benefit-icon { color: #47EEFC; }

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.benefit-item p {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: 5.5rem 1rem;
  background: url('contacto-bg.webp') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, var(--overlay-opacity-cta));
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-container { max-width: 760px; margin: 0 auto; }

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeInUp 0.55s ease forwards;
}

.cta-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.55s ease 0.08s forwards;
  line-height: 1.65;
}

.cta-btn {
  background: #5865f2;
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 8px;
  color: white;
  box-shadow: 0 6px 18px rgba(88, 101, 242, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.55s ease 0.16s forwards;
  font-weight: 600;
}

.cta-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(88, 101, 242, 0.4);
}

.cta-btn:active { transform: translateY(0); }

/* ========== FOOTER ========== */
.footer {
  background: #020308;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.04s; }
.footer-col:nth-child(2) { animation-delay: 0.08s; }
.footer-col:nth-child(3) { animation-delay: 0.12s; }
.footer-col:nth-child(4) { animation-delay: 0.16s; }

.footer-col h4 {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01em;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #04D2FB;
  transition: width 0.25s ease;
}

.footer-col:hover h4::after { width: 44px; }

.footer-description {
  color: #5e6a8f;
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social { display: flex; gap: 0.7rem; }

.footer-social a {
  all: unset;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #7e8fa8;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: rgba(4, 210, 251, 0.12);
  color: #04D2FB;
  border-color: rgba(4, 210, 251, 0.3);
  transform: translateY(-2px);
}

.footer-social a i { margin: 0; pointer-events: none; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: #5e6a8f;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover { color: #94a3b8; }

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(4, 210, 251, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(4, 210, 251, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3d4a68; }

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.footer-bottom { padding: 1.5rem 0; }

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: #3d4a68;
  font-size: 0.78rem;
  margin: 0;
}

.dmca-badge { display: inline-block; }
.dmca-badge img { height: 22px; width: auto; opacity: 0.75; transition: opacity 0.2s ease; }
.dmca-badge:hover img { opacity: 1; }

/* ========== GO TOP BUTTON ========== */
.go-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 210, 251, 0.12);
  border: 1px solid rgba(4, 210, 251, 0.3);
  color: #04D2FB;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.go-top-btn.show {
  display: flex;
  animation: scaleIn 0.25s ease forwards;
}

.go-top-btn:hover {
  background: rgba(4, 210, 251, 0.22);
  border-color: rgba(4, 210, 251, 0.6);
  transform: translateY(-2px);
}

/* ========== POPUP DISCORD ========== */
.discord-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
  transition: all 0.2s ease;
}

.discord-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5);
}

.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: #04D2FB;
  text-shadow: 0 0 5px #04D2FB;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

.discord-popup {
  position: fixed;
  bottom: 96px;
  left: 30px;
  width: 300px;
  background: #0c0e18;
  border-radius: 16px;
  border: 1px solid rgba(88, 101, 242, 0.25);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.discord-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.discord-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border-radius: 16px 16px 0 0;
  color: white;
}

.discord-popup-header i { font-size: 1.2rem; }
.discord-popup-header span { flex: 1; font-weight: 600; font-size: 0.9rem; }

.discord-popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  padding: 0.15rem;
}

.discord-popup-close:hover { color: white; transform: rotate(90deg); }

.discord-popup-body { padding: 1rem; }

.discord-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  color: #5e6a8f;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #23a55a;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.discord-popup-body p {
  font-size: 0.82rem;
  color: #7e8fa8;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.discord-popup-body p i { margin-right: 0.4rem; color: #5865f2; width: 16px; }

.discord-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.discord-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #5e6a8f;
  transition: color 0.2s ease;
}

.discord-stat:hover { color: #94a3b8; }
.discord-stat i { width: 18px; color: #5865f2; font-size: 0.75rem; }

.discord-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(105deg, #5865f2, #4752c4);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  pointer-events: auto;
}

.discord-popup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(88, 101, 242, 0.5);
}

/* ========== PRELANZAMIENTO ========== */
.prelaunch-banner {
  position: relative;
  background: rgba(4, 210, 251, 0.06);
  border-bottom: 1px solid rgba(4, 210, 251, 0.12);
  padding: 0.75rem 0;
  backdrop-filter: blur(4px);
}

.prelaunch-banner.hidden { display: none; }

.prelaunch-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.prelaunch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(4, 210, 251, 0.1);
  border-radius: 8px;
  color: #04D2FB;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.prelaunch-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.prelaunch-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.prelaunch-description {
  font-size: 0.78rem;
  color: #7e8fa8;
}

.prelaunch-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-prelaunch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-prelaunch:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(4, 210, 251, 0.4);
}

.btn-prelaunch-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #5e6a8f;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-prelaunch-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  transform: rotate(90deg);
}

/* ========== PÁGINAS LEGALES ========== */
.internal-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.internal-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.internal-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #04D2FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}

.internal-hero-content p {
  color: #5e6a8f;
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-card {
  background: rgba(10, 12, 20, 0.7);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-section h2 i {
  color: #04D2FB;
  font-size: 1.05rem;
  width: 22px;
  flex-shrink: 0;
}

.legal-section p {
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.93rem;
}

.legal-section ul,
.legal-section ol {
  margin: 1rem 0 1rem 1.25rem;
  color: #94a3b8;
}

.legal-section li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  font-size: 0.93rem;
}

.legal-section a {
  color: #04D2FB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover { color: #47EEFC; text-decoration: underline; }

.legal-section .note {
  background: rgba(4, 210, 251, 0.06);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border-left: 3px solid rgba(4, 210, 251, 0.4);
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #7e8fa8;
  line-height: 1.65;
}

.legal-section.highlight-section {
  background: rgba(4, 210, 251, 0.04);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(4, 210, 251, 0.15);
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: #3d4a68;
  line-height: 1.6;
}

.legal-cta {
  padding: 3rem 0 5rem;
  text-align: center;
}

.legal-cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.legal-cta-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  letter-spacing: -0.03em;
}

.legal-cta-content p {
  color: #7e8fa8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.btn-legal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-legal-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
}

/* ========== TABLA SLA ========== */
.sla-percentage {
  background: rgba(4, 210, 251, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin: 1rem 0;
  border: 1px solid rgba(4, 210, 251, 0.12);
}

.percentage-badge {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #04D2FB, #47EEFC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.sla-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(8, 10, 18, 0.7);
  border-radius: 12px;
  overflow: hidden;
}

.sla-table th,
.sla-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.sla-table th {
  background: rgba(4, 210, 251, 0.07);
  color: #96FAFD;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.sla-table td { color: #94a3b8; }
.sla-table tr:last-child td { border-bottom: none; }
.sla-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.sla-notes {
  background: rgba(4, 210, 251, 0.04);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(4, 210, 251, 0.1);
  font-size: 0.875rem;
  color: #7e8fa8;
}

.sla-notes ul { margin: 0.5rem 0 0 1.2rem; }
.sla-notes li { margin-bottom: 0.3rem; }

/* ========== PROGRAMA FUNDADOR ========== */
.founder-program {
  padding: 5rem 0;
  background: #070b10;
  position: relative;
  overflow: hidden;
}

.founder-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(4, 210, 251, 0.04), transparent 55%);
  pointer-events: none;
}

.founder-program-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-program-content {
  opacity: 0;
  animation: fadeInLeft 0.55s ease forwards;
}

.founder-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: #04D2FB;
  font-weight: 500;
}

.founder-program-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.founder-program-desc {
  color: #7e8fa8;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.founder-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.founder-benefit-item i {
  font-size: 1.25rem;
  color: #04D2FB;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.founder-benefit-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #e2e8f0;
}

.founder-benefit-item p {
  font-size: 0.8rem;
  color: #5e6a8f;
  line-height: 1.55;
}

.founder-program-form {
  background: rgba(10, 12, 20, 0.85);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease;
  opacity: 0;
  animation: fadeInRight 0.55s ease 0.08s forwards;
}

.founder-program-form:hover { border-color: rgba(4, 210, 251, 0.2); }

.founder-program-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-align: center;
  color: #e2e8f0;
  letter-spacing: -0.025em;
}

.founder-program-form > p {
  text-align: center;
  color: #5e6a8f;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.founder-form-ajax {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.founder-form-group { position: relative; }

.founder-form-group i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3d4a68;
  font-size: 0.9rem;
}

.founder-form-group input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.founder-form-group input:focus {
  outline: none;
  border-color: rgba(4, 210, 251, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(4, 210, 251, 0.08);
}

.founder-form-group input::placeholder { color: #3d4a68; }

.btn-founder-program {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
  width: 100%;
}

.btn-founder-program:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.btn-founder-program:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.founder-form-note {
  text-align: center;
  font-size: 0.7rem;
  color: #3d4a68;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.founder-form-note i { margin-right: 0.3rem; }

/* ========== ESTILOS PARA SERVICE PAGES (Minecraft y Bot Discord) ========== */

/* Hero de servicios */
.service-hero {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, var(--overlay-opacity-service));
  z-index: 1;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.minecraft-hero {
  background-image: url('assets/minecraft-hosting.webp');
  background-position: center 30%;
}

.bot-hero {
  background-image: url('assets/discord-hosting.webp');
  background-position: center;
}

.service-hero-content {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 210, 251, 0.12);
  border: 1px solid rgba(4, 210, 251, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #96FAFD;
  margin-bottom: 1.25rem;
}

.service-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-hero-content p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.service-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Características destacadas */
.service-features {
  padding: 5rem 0;
  background: #070b10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(11, 13, 21, 0.7);
  padding: 1.75rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.04s; }
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.16s; }
.feature-card:nth-child(5) { animation-delay: 0.2s; }
.feature-card:nth-child(6) { animation-delay: 0.24s; }

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 210, 251, 0.2);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.2rem;
  color: #04D2FB;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.feature-card p {
  color: #7e8fa8;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Calculadora preview */
.calculator-preview {
  padding: 5rem 0;
  background: #05070a;
}

.calculator-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calculator-preview-text h2 {
  margin-bottom: 1rem;
}

.calculator-preview-text p {
  color: #7e8fa8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.calculator-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.calculator-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.calculator-checklist li i {
  color: #04D2FB;
  font-size: 1rem;
}

.calculator-preview-image {
  background: rgba(4, 210, 251, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(4, 210, 251, 0.15);
}

.preview-card {
  text-align: center;
}

.preview-card > i {
  font-size: 2.5rem;
  color: #04D2FB;
  margin-bottom: 1rem;
}

.preview-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.preview-stat .stat-label {
  font-size: 0.8rem;
  color: #5e6a8f;
  text-transform: none;
}

.preview-stat .stat-value.preview {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #e2e8f0;
}

.preview-stat .stat-value.highlight {
  color: #04D2FB;
  font-size: 1rem;
  font-weight: 700;
}

/* Comunidad Discord */
.discord-community {
  padding: 5rem 0;
  background: linear-gradient(135deg, #070b10, #05070a);
}

.discord-community-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(88, 101, 242, 0.05);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.discord-community-card:hover {
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.1);
}

.discord-community-icon {
  font-size: 3.5rem;
  color: #5865f2;
  margin-bottom: 1rem;
}

.discord-community-card h2 {
  margin-bottom: 1rem;
}

.discord-community-card p {
  color: #7e8fa8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.discord-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.discord-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 101, 242, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.discord-feature i {
  color: #5865f2;
  font-size: 0.9rem;
}

.btn-discord-community {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-discord-community:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

body.founder-mode .service-badge {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.25);
  color: #FFD700;
}

body.founder-mode .feature-icon { color: #FFD700; }
body.founder-mode .calculator-checklist li i { color: #FFD700; }
body.founder-mode .preview-stat .stat-value.highlight { color: #FFD700; }

/* Estilo para página activa en dropdown */
.dropdown-link.active-page {
  background: rgba(4, 210, 251, 0.12);
  color: #04D2FB;
  cursor: default;
  pointer-events: none;
}

.dropdown-link.active-page i {
  color: #04D2FB;
}

body.founder-mode .dropdown-link.active-page {
  background: rgba(255, 215, 0, 0.12);
  color: #FFD700;
}

body.founder-mode .dropdown-link.active-page i {
  color: #FFD700;
}

/* ========== EFECTO PARALLAX PARA FONDOS ========== */
.pricing,
.cta-section,
.location,
.founder-program {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Ajuste para móviles (el fixed da problemas en algunos navegadores) */
@media screen and (max-width: 768px) {
  .pricing,
  .cta-section,
  .location,
  .founder-program {
    background-attachment: scroll;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .service-hero-content h1 { font-size: 2rem; }
  .calculator-preview-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .calculator-checklist { text-align: left; }
  .discord-features { gap: 0.8rem; }
  .discord-feature { font-size: 0.75rem; padding: 0.3rem 0.8rem; }
}

@media screen and (max-width: 480px) {
  .service-hero-content h1 { font-size: 1.6rem; }
  .service-hero-content p { font-size: 0.9rem; }
  .discord-community-card { padding: 2rem 1rem; }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .location-container { grid-template-columns: 1fr; gap: 2rem; }
  .splitter-header { flex-direction: column; align-items: center; text-align: center; }
  .founder-program-container { grid-template-columns: 1fr; gap: 2rem; }
  .founder-program-content { text-align: center; }
  .founder-program-badge { margin-left: auto; margin-right: auto; }
  .founder-benefits-list { max-width: 480px; margin: 0 auto; }
  .founder-benefit-item { text-align: left; }
}

@media screen and (max-width: 850px) {
  .prelaunch-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 0.9rem;
  }
  .prelaunch-text { align-items: center; }
  .prelaunch-actions { justify-content: center; }

  .hamburger { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background: rgba(3, 4, 10, 0.98);
    backdrop-filter: blur(20px);
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 5rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(4, 210, 251, 0.1);
    align-items: stretch;
    z-index: 999;
  }
  
  .nav-links.active { left: 0; }
  .nav-links li { width: 100%; }
  
  .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    text-align: left;
  }
  
  .nav-item-dropdown { position: static; }
  .dropdown-toggle { justify-content: space-between; width: 100%; }
  .dropdown-menu {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-item-dropdown.active .dropdown-menu { display: block; }
  .dropdown-link { padding: 0.6rem 1rem; font-size: 0.9rem; }
  .nav-item-dropdown.active .dropdown-icon { transform: rotate(180deg); }
  
  .nav-link.btn-cliente,
  .nav-link.btn-area { margin: 0.25rem 0; text-align: center; }
  .nav-link.btn-cliente { background: rgba(4, 210, 251, 0.08); border: 1px solid rgba(4, 210, 251, 0.25); }
  .nav-link.btn-area { background: linear-gradient(105deg, #04D2FB, #027BC8); }
  
  .footer-bottom-content { flex-direction: column; text-align: center; }
}

@media screen and (max-width: 768px) {
  .hero-title { font-size: 2.1rem; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .splitter-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .specs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  .go-top-btn { width: 40px; height: 40px; font-size: 1rem; bottom: 18px; right: 18px; }
  .map-marker { transform: translate(-50%, -50%) scale(0.75); }
  .section-header h2 { font-size: 1.85rem; }
  .pricing-toggle-container { flex-direction: column; gap: 0.9rem; }
  .founder-info { flex-wrap: wrap; justify-content: center; }
  .carousel-prev, .carousel-next { width: 34px; height: 34px; font-size: 0.9rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .discord-float-btn { bottom: 18px; left: 18px; width: 46px; height: 46px; font-size: 1.4rem; }
  .discord-popup { bottom: 78px; left: 18px; right: 18px; width: auto; max-width: 300px; }
  .legal-card { padding: 1.75rem; }
  .internal-hero-content h1 { font-size: 2rem; }
  .trust-signals { gap: 1rem; flex-direction: column; align-items: center; }
  .trust-signal { flex-direction: column; text-align: center; gap: 0.4rem; }
  .sla-table th, .sla-table td { padding: 0.7rem; font-size: 0.82rem; }
}

@media screen and (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.5rem; }
  .price-normal .price, .price-founder .price { font-size: 1.85rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .container { padding: 0 1.2rem; }
  .stat-value { font-size: 1.5rem; }
  .cta-content h2 { font-size: 1.7rem; }
  .pricing-features li { font-size: 0.82rem; }
  .legal-card { padding: 1.25rem; border-radius: 14px; }
  .legal-section h2 { font-size: 1.1rem; }
  .splitter-header { padding: 1rem; }
  .hardware-showcase { border-radius: 8px; }
  .toast-notification { bottom: 18px; right: 18px; left: 18px; }
  .prelaunch-title { font-size: 0.8rem; }
  .prelaunch-description { font-size: 0.72rem; }
  .founder-program-form { padding: 1.5rem; }
  .sla-table th, .sla-table td { padding: 0.5rem; font-size: 0.75rem; }
}

@media screen and (max-width: 640px) {
  .hardware-showcase { flex-direction: column; gap: 0.4rem; }
  .hardware-showcase-divider { display: none; }
  .hardware-showcase-item { justify-content: center; }
  .splitter-examples { justify-content: center; }
}

/* Fondo específico para la sección de planes de Bot Discord */
.bot-pricing {
  background: url('assets/planes-discord-bot.webp') center/cover no-repeat;
  background-color: #05070a7a;
}

/* ========== CORTINA TEATRAL (DESDE EL CENTRO) ========== */
.intro-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  pointer-events: none;
  overflow: hidden;
}

.curtain-panel {
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #05070a 0%, #0a0e1a 100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1); /* Más rápido: 0.6s */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.curtain-panel.left {
  transform: translateX(0);
  border-right: 1px solid rgba(4, 210, 251, 0.1);
}

.curtain-panel.right {
  transform: translateX(0);
  border-left: 1px solid rgba(4, 210, 251, 0.1);
}

.intro-curtain.hide .curtain-panel.left {
  transform: translateX(-100%);
}

.intro-curtain.hide .curtain-panel.right {
  transform: translateX(100%);
}

.curtain-logo-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease; /* Más rápido */
  pointer-events: none;
}

.intro-curtain.hide .curtain-logo-center {
  opacity: 0;
}

.curtain-logo-center img {
  width: 70px; /* Ligeramente más pequeño */
  height: auto;
  margin-bottom: 0.75rem;
  animation: curtainPulse 1s ease-in-out infinite;
}

.curtain-tagline {
  color: #04D2FB;
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-top: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.curtain-spinner {
  margin: 0.75rem 0;
}

.spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border: 2px solid rgba(4, 210, 251, 0.2);
  border-top-color: #04D2FB;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes curtainPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}