* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  zoom: 0.9; /* equivale al 80% del navegador */
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================================================== */
/* NAVIGATION */
/* ===================================================================== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(1, 128, 235, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  font-family: 'Press Start 2P', monospace;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  z-index: 1002;
}

.logo-icon {
  width: 48px;
  height: 48px;
  position: relative;
}

.logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0180eb, #0160c0);
  border-radius: 8px;
  transform: rotate(45deg);
}

.logo-text-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  transform: rotate(-45deg);
}

.logo-text .blue {
  color: #0180eb;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #0180eb;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #0180eb;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  line-height: 1;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

/* ===================================================================== */
/* HERO SECTION */
/* ===================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 20px;
  position: relative;
}

.hero-content {
  max-width: 1100px;
  position: relative;
  z-index: 10;
}

.hero-logo {
  width: 280px;
  height: 280px;
  margin: 0 auto 32px;
  animation: pulse 2s ease-in-out infinite;
  background-image: url('/assets/Cubito_de_forge_cayendo.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px;
  filter: drop-shadow(0 0 40px rgba(1, 128, 235, 0.6));
}

.hero-logo::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(1, 128, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glow 3s ease-in-out infinite;
}

.hero-logo::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(1, 128, 235, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(1, 128, 235, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(1, 128, 235, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(1, 128, 235, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 10% 90%, rgba(1, 128, 235, 0.4) 2px, transparent 2px);
  background-size: 100% 100%;
  animation: particles 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes glow {
  0%, 100% { 
    opacity: 0.5;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes particles {
  0%, 100% { 
    opacity: 0.3;
    transform: translateY(0);
  }
  50% { 
    opacity: 0.6;
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero h1 .blue {
  color: #0180eb;
}

.hero p {
  font-size: 1.5rem;
  color: #9ca3af;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: #0180eb;
  color: #fff;
  box-shadow: 0 10px 30px rgba(1, 128, 235, 0.5);
}

.btn-primary:hover {
  background-color: #0160c0;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: #0180eb;
  border: 2px solid #0180eb;
}

.btn-secondary:hover {
  background-color: #0180eb;
  color: #fff;
  transform: scale(1.05);
}

/* ===================================================================== */
/* FLOATING PIXELS */
/* ===================================================================== */

.floating-pixels {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.pixel {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: rgba(1, 128, 235, 0.2);
  animation: float 4s ease-in-out infinite;
}

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

/* ===================================================================== */
/* FEATURES BAR */
/* ===================================================================== */

.features-bar {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url(/assets/banner2.webp);
  background-position: center 65%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 124px 30px;
  position: relative;
  z-index: 2;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

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

.feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* ===================================================================== */
/* SERVICES SECTION */
/* ===================================================================== */

.services {
  padding: 96px 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.section-header h2 .blue {
  color: #0180eb;
}

.section-header p {
  font-size: 1.25rem;
  color: #9ca3af;
}

/* ── SERVICES SECTION REDESIGN ─────────────────────────────────────────── */

.services-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 14px;
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 100px;
    background: rgba(59,130,246,0.07);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-card {
    position: relative;
    background: #0a0f1a;
    padding: 32px 28px 28px;
    cursor: pointer;
    transition: background 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    min-height: 268px;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.1) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { background: #0d1526; }

.svc-card--featured {
    background: linear-gradient(140deg, #0b1728 0%, #0e2040 100%);
    box-shadow: inset 0 0 0 1px rgba(59,130,246,0.25);
}
.svc-card--featured::before {
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.18) 0%, transparent 65%);
    opacity: 1;
}
.svc-card--featured:hover { background: linear-gradient(140deg, #0d1e38 0%, #112548 100%); }

.svc-card--dark { background: #070b14; }
.svc-card--dark:hover { background: #0a0f1c; }

.svc-number {
    font-family: 'VT323', monospace;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.08em;
}

.svc-icon-wrap { display: flex; }

.svc-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.svc-card:hover .svc-icon {
    transform: scale(1.14);
    filter: drop-shadow(0 0 18px rgba(59,130,246,0.65));
}

.svc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.svc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #eef2ff;
    margin: 0;
    line-height: 1.3;
}
.svc-body p {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.6;
    margin: 0;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}
.svc-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #3b82f6;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.22);
    padding: 2px 8px;
    border-radius: 4px;
}

.svc-arrow {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.18);
    align-self: flex-end;
    transition: color 0.2s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.svc-card:hover .svc-arrow {
    color: #3b82f6;
    transform: translate(3px, -3px);
}

.svc-price-tag {
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(59,130,246,0.65);
    letter-spacing: 0.03em;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
    margin-top: 2px;
}

/* Legacy services grid (kept for backwards compatibility) */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-size: cover;
  background-position: center;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.service-gym {
  background-image: url('/assets/Servicio_gyms.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-cabañas {
  background-image: url('/assets/cabañas.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-ecommerce {
  background-image: url('/assets/Servicio_Tienda_ropa.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-news {
  background-image: url('/assets/Servicio_noticias.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-ventas {
  background-image: url('/assets/Servicio_ventas.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-personalizado {
  background-image: url('/assets/software_particular.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.service-card:hover .service-overlay {
  background-color: rgba(0, 0, 0, 0.85);
}

.service-content {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.service-card:hover .service-content {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: #0180eb;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(1, 128, 235, 0.2);
}

.service-icon {
  color: #0180eb;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

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

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #9ca3af;
}

/* ===================================================================== */
/* PROJECTS SECTION */
/* ===================================================================== */

.projects {
  padding: 96px 20px;
  background: linear-gradient(180deg, #000, #1a1a1a);
  position: relative;
  z-index: 2;
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.project-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-color: #333;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
  transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 10;
  opacity: 1;
  transform: translateY(0);
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.project-info p {
  color: #d1d5db;
  font-size: 0.875rem;
}

.project-bowen {
  background-image: url('/assets/Bowen.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-alvear {
  background-image: url('/assets/Departamento_alvear (1).webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-sanrafael {
  background-image: url('/assets/Departamento_sanrafael.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-malargue {
  background-image: url('/assets/Departamento_malargue.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-next {
  background-image: url('/assets/Departamento_inexistente.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===================================================================== */
/* CONTACT SECTION */
/* ===================================================================== */

.contact {
  display: none;
  padding: 96px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.contact h2 .blue {
  color: #0180eb;
}

.contact > p {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 48px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0180eb;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* ===================================================================== */
/* FOOTER */
/* ===================================================================== */

footer {
  font-family: 'Press Start 2P', monospace;
  background-color: #000;
  border-top: 1px solid #333;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.footer-logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0180eb, #0160c0);
  border-radius: 4px;
  transform: rotate(45deg);
}

.footer-logo-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(-45deg);
}

footer p {
  color: #9ca3af;
}

/* ===================================================================== */
/* MODAL COMPLETAMENTE NUEVO - DISEÑO MODERNO */
/* ===================================================================== */

.plans-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(15px);
  z-index: 3000;
  animation: fadeIn 0.4s ease;
  padding: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.plans-modal.active {
  display: block;
}

.plans-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #0a0e27 0%, #0d1117 100%);
  overflow-y: auto;
  overflow-x: hidden;
}

.plans-modal-content::-webkit-scrollbar {
  width: 12px;
}

.plans-modal-content::-webkit-scrollbar-track {
  background: #0d1117;
}

.plans-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0180eb 0%, #0160c0 100%);
  border-radius: 6px;
}

.plans-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0160c0 0%, #014a9d 100%);
}

.plans-modal-close {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.plans-modal-close:hover {
  background: rgba(239, 68, 68, 1);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
}

.plans-modal-body {
  padding: 40px 30px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.plans-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.plans-logo {
  display: inline-block;
  margin-bottom: 15px;
  animation: floatLogo 3s ease-in-out infinite;
}

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

.plans-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0180eb 0%, #6366f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: 0 10px 40px rgba(1, 128, 235, 0.5);
  position: relative;
}

.plans-logo-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #0180eb, #6366f1);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
}

.plans-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #0180eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.plans-header-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #0180eb 0%, #6366f1 100%);
  margin: 0 auto 12px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(1, 128, 235, 0.5);
}

.plans-header p {
  font-size: 1.05rem;
  color: #9ca3af;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.plans-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-bottom: 40px;
  align-items: start;
}

.plan-card-modal {
  position: relative;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card-modal:hover {
  transform: translateY(-8px);
  border-color: rgba(1, 128, 235, 0.5);
  box-shadow: 0 20px 60px rgba(1, 128, 235, 0.3);
}

.plan-card-modal.popular-plan {
  border: 2px solid #fbbf24;
  box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
}

.popular-badge-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.popular-badge-modal span {
  color: #1f2937;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-header-modal {
  padding: 20px 20px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plan-header-modal.blue {
  background: linear-gradient(135deg, #0180eb 0%, #0160c0 100%);
}

.plan-header-modal.purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.plan-header-modal.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.plan-header-modal::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.plan-name {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.95;
}

.plan-modules {
  display: none;
}

.plan-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.plan-content-modal {
  padding: 20px;
}

.section-title-modal {
  color: #0180eb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.features-container-modal {
  margin-bottom: 15px;
}

.feature-box-modal {
  background: rgba(55, 65, 81, 0.4);
  border-left: 3px solid transparent;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-box-modal:hover {
  background: rgba(55, 65, 81, 0.7);
  transform: translateX(5px);
  border-left-color: #0180eb;
}

.feature-icon-modal {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-modal.blue {
  background: linear-gradient(135deg, #0180eb 0%, #0160c0 100%);
}

.feature-icon-modal.purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.feature-icon-modal.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-text-modal {
  flex: 1;
}

.feature-text-modal h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-text-modal p {
  color: #9ca3af;
  font-size: 0.8rem;
}

.premium-list-modal {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 0;
}

.premium-item-modal {
  background: rgba(55, 65, 81, 0.4);
  border-left: 3px solid transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.premium-item-modal:hover {
  background: rgba(55, 65, 81, 0.7);
  transform: translateX(5px);
  border-left-color: #10b981;
}

.premium-item-modal:last-child {
  margin-bottom: 0;
}

.premium-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.premium-icon.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
}

.premium-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.premium-item-modal span {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  flex: 1;
}

.premium-item-modal.highlight span {
  color: white;
  font-weight: 700;
}

.app-box-modal {
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.app-box-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: linear-gradient(45deg, transparent 30%, white 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.app-box-modal.purple {
  background: rgba(168, 85, 247, 0.15);
  border: 2px solid #a855f7;
}

.app-box-modal.pink {
  background: rgba(236, 72, 153, 0.15);
  border: 2px solid #ec4899;
}

.app-box-modal h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
}

.app-box-modal.purple p {
  color: #a855f7;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-box-modal.pink p {
  color: #ec4899;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.characteristics-modal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 12px;
}

.char-item-modal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.char-item-modal:hover {
  background: rgba(55, 65, 81, 0.3);
}

.char-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 10px currentColor;
}

.char-bullet.blue {
  background: #0180eb;
}

.char-bullet.purple {
  background: #a855f7;
}

.char-bullet.green {
  background: #10b981;
}

.char-item-modal span {
  color: #d1d5db;
  font-size: 0.85rem;
  line-height: 1.4;
}

.price-section-modal {
  padding: 20px;
  background: rgba(17, 24, 39, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box-modal {
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.5) 0%, rgba(31, 41, 55, 0.5) 100%);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-box-modal::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #0180eb, #6366f1);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-box-modal:hover::before {
  opacity: 0.3;
}

.price-box-modal.blue {
  border-color: #0180eb;
}

.price-box-modal.purple {
  border-color: #a855f7;
}

.price-box-modal.pink {
  border-color: #ec4899;
}

.price-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price-amount {
  color: white;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-currency {
  font-size: 1.6rem;
}

.price-period {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.price-cta {
  width: 100%;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: white;
}

.price-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

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

.price-cta.blue {
  background: linear-gradient(135deg, #0180eb 0%, #0160c0 100%);
  color: white;
}

.price-cta.purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: white;
}

.price-cta.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.single-plan-container {
  max-width: 700px;
  margin: 0 auto;
}

.single-plan-card {
  width: 100%;
}

/* ===================================================================== */
/* RESPONSIVE */
/* ===================================================================== */

@media (max-width: 1200px) {
  .plans-grid-modal {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 1100px) {
    .services-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .features-bar {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
     url(/assets/video_header.gif);
  }
  
  .nav-container {
    height: 70px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text-icon {
    font-size: 20px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu a {
    font-size: 16px;
    padding: 10px;
    display: block;
    text-align: center;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-logo {
    width: 200px;
    height: 200px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 32px;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* 2 servicios por línea en móvil */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    min-height: 200px;
    padding: 16px;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.75rem;
  }

  .service-icon svg {
    width: 32px;
    height: 32px;
  }

  .plans-modal-close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .plans-modal-body {
    padding: 40px 20px 60px;
  }

  .plans-header {
    margin-bottom: 25px;
  }

  .plans-logo-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .plans-header h1 {
    font-size: 2rem;
  }

  .plans-header p {
    font-size: 1rem;
  }

  .plans-grid-modal {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .plan-modules {
    display: none;
  }

  .price-amount {
    font-size: 2.8rem;
  }

  .popular-badge-modal {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 580px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .svc-card { min-height: auto; padding: 24px 20px; }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
  
  .nav-container {
    padding: 0 15px;
  }

  /* Servicios aún más pequeños en pantallas muy pequeñas */
  .services-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 180px;
    padding: 12px;
  }

  .service-card h3 {
    font-size: 0.85rem;
  }

  .service-card p {
    font-size: 0.7rem;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .plans-modal-body {
    padding: 30px 15px 50px;
  }

  .plans-header h1 {
    font-size: 2rem;
  }

  .plans-header p {
    font-size: 1rem;
  }

  .plan-header-modal {
    padding: 30px 20px 25px;
  }

  .plan-content-modal {
    padding: 25px 20px;
  }

  .feature-box-modal {
    padding: 12px;
  }

  .feature-icon-modal {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .feature-text-modal h4 {
    font-size: 1rem;
  }

  .price-section-modal {
    padding: 25px 20px;
  }

  .price-box-modal {
    padding: 25px 20px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .price-cta {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}