:root {
  --bg: #050508;
  --bg-surface: #0a0a0f;
  --card: #0d0d14;
  --card-hover: #12121c;
  --text: #f5f5f7;
  --muted: #a2a2b0;
  --purple: #8d35ff;
  --purple-glow: rgba(141, 53, 255, 0.35);
  --purple2: #b45cff;
  --cyan: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.25);
  --border: rgba(255, 255, 255, 0.1);
  --border-active: rgba(180, 92, 255, 0.6);
  --gold: #ffbe1a;
  --whatsapp: #25d366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =========================================
   HEADER & NAVEGACIÓN
   ========================================= */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(5, 5, 8, 0.96);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.logo-box {
  display: flex;
  flex-direction: column;
}

.logo-box span {
  font-weight: 900;
  font-size: 32px;
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 40%, var(--purple2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-box small {
  font-size: 7.5px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav a {
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}

.nav a:hover {
  color: var(--purple2);
  opacity: 1;
}

.nav-quote-btn {
  background: rgba(141, 53, 255, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(141, 53, 255, 0.5);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.nav-quote-btn:hover {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 20px var(--purple-glow);
  transform: translateY(-1px);
}

.nav-whatsapp {
  background: var(--purple);
  padding: 9px 18px;
  border-radius: 6px;
  opacity: 1 !important;
  color: #fff;
  transition: transform 0.2s, filter 0.2s;
}

.nav-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* =========================================
   HERO / PORTADA CON ESTÉTICA RTX
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 60px;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.75) 45%, rgba(5, 5, 8, 0.3) 100%),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}

.hero-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(141, 53, 255, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: 4%;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(141, 53, 255, 0.12);
  border: 1px solid rgba(180, 92, 255, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple2);
  box-shadow: 0 0 10px var(--purple2);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.eyebrow {
  color: #c084fc;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
}

.glow-text {
  color: #c084fc;
  text-shadow: 0 0 35px rgba(180, 92, 255, 0.45);
}

.hero-text {
  max-width: 640px;
  color: #d1d1db;
  margin: 24px 0 32px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid var(--border);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #7c2cff 0%, #b24cff 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 30px rgba(124, 44, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 12px 40px rgba(124, 44, 255, 0.55);
}

.btn-rtx {
  position: relative;
  overflow: hidden;
}

.btn-rtx::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-rtx:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #eee;
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--purple2);
  color: #fff;
  background: rgba(141, 53, 255, 0.1);
}

.btn-vip {
  background: linear-gradient(135deg, #9333ea, #ec4899);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 25px rgba(236, 72, 153, 0.35);
}

.btn-vip:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 10px 35px rgba(236, 72, 153, 0.5);
}

/* Franja de Google en el Hero */
.google-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 10px 20px;
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  transition: all 0.25s;
}

.google-badge-hero:hover {
  border-color: var(--purple2);
  transform: translateY(-2px);
  background: rgba(18, 18, 28, 0.85);
}

.stars-gold {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}

.badge-text {
  font-size: 12px;
  color: #ddd;
}

.badge-text strong {
  color: #fff;
}

.badge-sep {
  margin: 0 6px;
  color: #666;
}

.badge-verified {
  font-size: 10px;
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1.8s infinite;
  color: #888;
  font-size: 18px;
}

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

/* =========================================
   SECCIONES COMUNES
   ========================================= */
.section {
  padding: 110px 5%;
  max-width: 1400px;
  margin: auto;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-heading h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: -1px;
}

.section-heading h2 span {
  color: var(--purple2);
  text-shadow: 0 0 25px rgba(180, 92, 255, 0.3);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
}

/* =========================================
   SERVICIOS (6 TARJETAS - SIN ICONOS VIEJOS)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 92, 255, 0.5);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px var(--purple-glow);
}

.service-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 20, 0.9) 100%);
}

.service-pill {
  position: relative;
  z-index: 2;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #c084fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.sound { background-image: url("https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?auto=format&fit=crop&w=800&q=80"); }
.lights { background-image: url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=800&q=80"); }
.led { background-image: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=800&q=80"); }
.platform { background-image: url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=800&q=80"); }
.effects { background-image: url("https://images.unsplash.com/photo-1478146896981-b80fe463b330?auto=format&fit=crop&w=800&q=80"); }
.fireworks { background-image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=800&q=80"); }

.service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.service-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================
   COMBOS DESTACADOS (SIN PRECIOS)
   ========================================= */
.combos {
  max-width: 1240px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 92, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.price-card.featured {
  background: radial-gradient(circle at 50% 0%, rgba(141, 53, 255, 0.12), transparent 70%), var(--card);
  border-color: #9b45ff;
  box-shadow: 0 0 50px rgba(141, 53, 255, 0.2);
}

.price-card .badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(135deg, #7c2cff, #b24cff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
}

.price-label {
  font-size: 10px;
  color: #a54aff;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 30px;
  font-weight: 900;
  margin: 6px 0 10px;
  text-transform: uppercase;
}

.price-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.45;
}

.price-card ul {
  list-style: none;
  color: #d1d1dc;
  font-size: 13px;
  margin-bottom: 28px;
  flex: 1;
}

.price-card li {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card li::before {
  content: '✓';
  color: #a54aff;
  font-weight: 900;
}

.price-card .btn {
  width: 100%;
}

/* Tarjeta Experiencia Completa VIP */
.experience-card {
  background: radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.12), transparent 70%), var(--card);
  border-color: rgba(236, 72, 153, 0.4);
}

.experience-card:hover {
  border-color: #ec4899;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(236, 72, 153, 0.25);
}

.vip-label {
  color: #f472b6 !important;
}

.experience-quote {
  background: rgba(236, 72, 153, 0.1);
  border-left: 3px solid #ec4899;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin: 10px 0 14px;
}

.experience-quote p {
  font-size: 13.5px;
  font-style: italic;
  font-weight: 700;
  color: #fdf2f8;
}

.experience-desc {
  font-size: 12.5px;
  color: #ccc;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.experience-tags span {
  font-size: 10.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 50px;
  color: #e5e5ea;
}

/* =========================================
   GALERÍA DE MOMENTOS
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 8, 0.75) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--purple2);
}

.gallery-tag {
  position: relative;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(141, 53, 255, 0.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.g1 { background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1000&q=80"); }
.g2 { background-image: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1000&q=80"); }
.g3 { background-image: url("https://images.unsplash.com/photo-1571266028243-d220c9c3b9e8?auto=format&fit=crop&w=1000&q=80"); }
.g4 { background-image: url("https://images.unsplash.com/photo-1496337589254-7e19d01cec44?auto=format&fit=crop&w=1000&q=80"); }
.g5 { background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1000&q=80"); }
.g6 { background-image: url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=1000&q=80"); }

.gallery-action {
  text-align: center;
  margin-top: 36px;
}

.btn-insta {
  padding: 14px 28px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.btn-insta:hover {
  border-color: #e1306c;
  color: #fff;
  box-shadow: 0 0 25px rgba(225, 48, 108, 0.3);
}

/* =========================================
   TESTIMONIALES & GOOGLE
   ========================================= */
.testimonials {
  background: linear-gradient(180deg, #050508 0%, #0a0814 50%, #050508 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 92, 255, 0.4);
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 16px;
}

.testimonial p {
  color: #d1d1dc;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.testimonial b {
  font-size: 14px;
  color: #fff;
  display: block;
}

.testimonial small {
  color: var(--muted);
  font-size: 11px;
}

.google-community-bar {
  margin-top: 45px;
  background: rgba(13, 13, 20, 0.8);
  border: 1px solid rgba(180, 92, 255, 0.25);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.community-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.community-icon {
  font-size: 32px;
  color: var(--gold);
}

.community-info h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
}

.community-info p {
  font-size: 13px;
  color: var(--muted);
}

.btn-google {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-google:hover {
  border-color: #4285f4;
  box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

/* =========================================
   ZONAS DE COBERTURA
   ========================================= */
.zones-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

.zone-pill-btn {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: #ccc;
  font-size: 12.5px;
  font-weight: 700;
  background: #0b0a12;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.zone-pill-btn:hover {
  border-color: var(--purple2);
  color: #fff;
  background: rgba(141, 53, 255, 0.15);
  box-shadow: 0 0 20px var(--purple-glow);
  transform: translateY(-2px);
}

/* =========================================
   CONTACTO SECTION
   ========================================= */
.contact-section {
  padding: 40px 5% 100px;
  max-width: 1240px;
  margin: auto;
}

.contact-box {
  border: 1px solid rgba(180, 92, 255, 0.35);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at 80% 50%, rgba(141, 53, 255, 0.18), transparent 50%),
    #0b0a12;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-content h2 span {
  color: var(--purple2);
}

.contact-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}

.btn.big {
  min-height: 54px;
  padding: 0 28px;
  font-size: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 5%;
  text-align: center;
  color: #777;
  font-size: 11.5px;
  background: #030305;
}

.footer-logo {
  font-size: 38px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 0.7;
  margin-bottom: 16px;
}

.footer-logo small {
  display: block;
  font-size: 7px;
  letter-spacing: 3px;
  font-style: normal;
  color: var(--purple2);
  margin-top: 4px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 18px;
}

.socials a {
  color: #999;
  transition: color 0.2s;
}

.socials a:hover {
  color: var(--purple2);
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =======================================================
   MODAL / POPUP COTIZADOR INTERACTIVO RTX SUPER ESTILIZADO
   ======================================================= */
.quote-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border: 0;
  padding: 0;
  background: rgba(3, 3, 6, 0.85);
  backdrop-filter: blur(28px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal[open] {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(720px, 94vw);
  background:
    radial-gradient(circle at 10% 10%, rgba(141, 53, 255, 0.15), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 240, 255, 0.08), transparent 40%),
    #0c0b14;
  border: 1px solid rgba(180, 92, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(141, 53, 255, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal[open] .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
}

/* Modal Header & Progress */
.modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.brand-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c2cff, #b24cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 20px var(--purple-glow);
}

.modal-brand h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.modal-brand p {
  font-size: 12px;
  color: var(--muted);
}

/* Stepper */
.stepper-wrapper {
  position: relative;
}

.stepper-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  cursor: default;
}

.step-dot span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #141320;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #888;
  transition: all 0.3s;
}

.step-dot.active span {
  background: var(--purple);
  border-color: #c084fc;
  color: #fff;
  box-shadow: 0 0 15px var(--purple-glow);
}

.step-dot.done span {
  background: #10b981;
  border-color: #34d399;
  color: #fff;
}

.step-dot label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}

.step-dot.active label {
  color: #c084fc;
}

.step-track {
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.step-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7c2cff, #c084fc);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--purple2);
}

/* Modal Body / Panes */
.modal-body {
  padding: 28px 32px;
  min-height: 330px;
  overflow-y: auto;
  position: relative;
}

.wizard-pane {
  display: none;
  animation: paneIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-pane.active {
  display: block;
}

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

.pane-header {
  margin-bottom: 22px;
}

.pane-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.pane-header p {
  font-size: 13px;
  color: var(--muted);
}

/* Cyber Cards (Opciones seleccionables) */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cyber-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.cyber-card:hover {
  background: rgba(141, 53, 255, 0.08);
  border-color: rgba(180, 92, 255, 0.4);
  transform: translateY(-2px);
}

.cyber-card.active {
  background: rgba(141, 53, 255, 0.16);
  border-color: var(--purple2);
  box-shadow: 0 0 25px rgba(141, 53, 255, 0.3);
}

.cyber-card.vip-tier.active {
  background: rgba(236, 72, 153, 0.16);
  border-color: #ec4899;
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.3);
}

.card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.card-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta strong {
  font-size: 13.5px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-meta small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cyber-card.active .card-check {
  background: var(--purple2);
  border-color: var(--purple2);
  color: #fff;
}

.cyber-badge-rec {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 8.5px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.cyber-badge-vip {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #ec4899;
  color: #fff;
  font-size: 8.5px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Step 3 Form Inputs */
.form-pane-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-block label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #bbb;
  margin-bottom: 10px;
}

.zones-interactive-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mzone-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ccc;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.mzone-btn:hover {
  border-color: var(--purple2);
  color: #fff;
}

.mzone-btn.active {
  background: rgba(141, 53, 255, 0.2);
  border-color: var(--purple2);
  color: #fff;
  box-shadow: 0 0 15px var(--purple-glow);
}

.two-cols-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cyber-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cyber-input:focus {
  border-color: var(--purple2);
  box-shadow: 0 0 20px var(--purple-glow);
  background: rgba(255, 255, 255, 0.07);
}

.cyber-input option {
  background: #0f0e1a;
  color: #fff;
}

/* Step 4 Ticket Summary */
.ticket-container {
  background:
    radial-gradient(circle at 100% 0%, rgba(141, 53, 255, 0.15), transparent 40%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(180, 92, 255, 0.4);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}

.ticket-header {
  background: rgba(141, 53, 255, 0.12);
  border-bottom: 1px dashed rgba(180, 92, 255, 0.35);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.ticket-brand span {
  color: var(--purple2);
}

.ticket-status {
  font-size: 10px;
  font-weight: 800;
  color: #34d399;
  letter-spacing: 0.5px;
}

.ticket-details {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-lbl {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.detail-val {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.ticket-footer {
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-direct {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.btn-whatsapp-direct:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.wa-icon {
  font-size: 26px;
}

.wa-text {
  text-align: left;
}

.wa-text strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.wa-text small {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
}

/* Modal Footer & Buttons */
.modal-footer {
  padding: 18px 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-wizard {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev {
  background: transparent;
  border: 1px solid var(--border);
  color: #bbb;
}

.btn-prev:hover {
  color: #fff;
  border-color: #fff;
}

.btn-next {
  margin-left: auto;
}

/* =========================================
   RESPONSIVE DESIGN (MÓVIL & TABLET)
   ========================================= */
@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 550px; margin: auto; }
}

@media (max-width: 768px) {
  .header { height: 70px; }
  .menu-toggle { display: block; }
  
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(5, 5, 8, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(25px);
  }
  
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; font-size: 13px; }
  .nav-quote-btn { text-align: center; margin-top: 8px; }
  .nav-whatsapp { text-align: center; margin-top: 6px; }

  .hero {
    min-height: 680px;
    padding-top: 100px;
    background-position: 70% center;
  }
  
  .hero-content { margin: 0; }
  h1 { font-size: 40px; letter-spacing: -1px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .google-community-bar {
    flex-direction: column;
    text-align: center;
  }
  .community-info {
    flex-direction: column;
  }

  .contact-box {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  .contact-actions { width: 100%; }
  .contact-actions .btn { width: 100%; }

  /* Modal Mobile */
  .modal-card { width: 96vw; max-height: 94vh; }
  .modal-header { padding: 20px 20px 15px; }
  .modal-body { padding: 20px; }
  .modal-footer { padding: 14px 20px 18px; }
  .cyber-grid { grid-template-columns: 1fr; }
  .two-cols-inputs { grid-template-columns: 1fr; }
  .ticket-details { grid-template-columns: 1fr; }
}
