
/* ================== BASE ================== */
html, body {
  background-color: #f0f4fa;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
overflow-x: hidden;

}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
}
  /* ================== NAVBAR DESKTOP ================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #004080;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 2rem 0.3rem 2rem;
    min-height: 60px;
    z-index: 1000;
    font-size: 18px; /* ligeramente más equilibrado */
}

/* LOGO */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav-left .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* LINKS DESKTOP */
.nav-center {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  line-height: 1.2; /* mejor área clickeable */
  color: white;
  text-decoration: none;
  padding: 4px 12px; /* ajuste leve */
  border-radius: 12px;
  transition: background-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease,
              box-shadow 0.25s ease;
}

.nav-center a:hover,
.nav-center a:focus-visible {
  background-color: #ffeb3b;
  color: #1f1f1f;
  transform: scale(1.03) translateY(-1px); /* menos salto visual */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.25),
    0 0 10px rgba(255, 235, 59, 0.8);
}

.nav-panel{
  display:none;
}

.menu-overlay{
  display:none;
}

/* ================== WHATSAPP NAVBAR ================== */
.whatsapp-nav {
  position: fixed;
  top: 7px;
  right: 2rem;

  width: 46px;
  height: 46px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  z-index: 2000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-nav:hover {
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.8);
}

/* ================== BOTÓN HAMBURGUESA ================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ================== NAVBAR SCROLL ================== */
.navbar.scrolled {
  background-color: #003366;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* ================== SECCIÓN INICIO ================== */
#soporte {
  padding-top: 60px;
  margin-top: 0;
  min-height: calc(60vh - 60px);

  background-image: url('img/7.jpg');
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  color: white;

  padding: 60px;
  position: relative;
  height:100px;
}

/* Overlay */
#soporte::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
  pointer-events: none;
}

#soporte > * {
  position: relative;
  z-index: 1;
}



#soporte h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-top: -100px;

  
 
  
}

#soporte p {
  margin-top: 35px;
  font-size: 1.3rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);


}

#soporte h3 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-top: 10px;
}

/* Contenedor de texto */
#soporte.contenido {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 600px;

}

#soporte.botones {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

/* Botones */
#soporte.botones .btn {
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#soporte.botones .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ================== BOTONES ================== */

/* Botónes servicio y paquetes */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease;
}

/* Botón beneficios */
.btn-primary {
  background-color: #0d6efd;
  border: 2px solid rgba(255,255,255,0.9);
  color: #fff;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.35);
}

/* Botón secundario (outline) */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 20px;
}

.btn-outline:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.35);
}


/* ================== FORMULARIO CLARO ================== */
.formulario {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 35px 32px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.formulario *,
.formulario *::before,
.formulario *::after {
  box-sizing: border-box;
}

/* TÍTULO */
.formulario h3 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 28px;
    color: #2d2d2d;
}

/* CAMPOS */
.campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

/* CAMPOS CON ICONO */
.campo.icono {
  position: relative;
}

/* ICONOS */
.campo.icono i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #fb923c;
  /* color: #0056B3; */
  font-size: 0.9rem;
  pointer-events: none;
}

.campo.icono i.fa-comment {
  top: 18px;        /* súbelo */
  transform: none; /* cancela el centrado */
}

/* INPUT, SELECT, TEXTAREA */
.campo.icono input,
.campo.icono select,
.campo.icono textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px 12px 38px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.97);
  color: #000000;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  outline: none;
  min-height: 46px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* TEXTAREA */
.campo.icono textarea {
  min-height: 90px;
  resize: vertical;
}

/* PLACEHOLDER */
.campo.icono input::placeholder,
.campo.icono textarea::placeholder {
  color: #000000;
}

/* FOCUS */
.campo.icono input:focus,
.campo.icono select:focus,
.campo.icono textarea:focus {
  border-color: #fb923c;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.25);
}

/* BOTÓN */
.formulario .btn-primary {
  margin-top: 10px;
  background: #f97316;
  color: #ffffff;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* HOVER BOTÓN */
.formulario .btn-primary:hover {
  background: #f97316;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

/* ACTIVE BOTÓN */
.formulario .btn-primary:active {
  transform: translateY(0);
}
/* ===================== MARCAS ===================== */

.marcas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30rem;              /* flexible y responsive */
  background-color: #004080;
  padding: 22px 0;
}

.marcas img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* Hover sutil */
.marcas img:hover {
  transform: scale(1.08);
}

/* ===================== GALERÍA ===================== */

/* Contenedor del carrusel */
.gallery-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background-color: #dbe9f4;
  padding-top: 0;
  margin-top: 0;
}

/* Pista de imágenes */
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 35s linear infinite;
}

/* Cada cuadro de la galería (tamaño fijo) */
.gallery-item {
  width: 380px;
  height: 290px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
  position: relative;
}

/* La imagen se adapta al cuadro */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 🔥 la magia */
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              opacity 0.6s ease;
  will-change: transform, opacity;
}

/* Visible (fade-in con JS) */
.gallery-item img.visible {
  opacity: 1;
  transform: scale(1);
}

/* Colocar texto a la imagen de la galeria */

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 13px;
  padding: 6px;
  text-align: center;
  z-index: 2;
}

/* Hacer zoom a las fotos de la galeria */

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

#close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


#lightbox img {
  transform: scale(0.9);
  transition: 0.3s ease;
}

#lightbox.show img {
  transform: scale(1);
}

.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

/* Hover */
.gallery-item img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Título de la galería */
#galeria h2 {
  text-align: center;
  background-color: #004085;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  padding: 20px 0;
  margin-top: 0;
  font-size: 45px;
}

/* Animación de carrusel */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ===================== SERVICIOS ===================== */

#servicios {
  background: #001f3f;
  padding: 60px 20px;
} 

#servicios .titulo {
  text-align: center;
  color: #fff;
  font-size: 42px;
  margin: 5px 0 50px;
}

/* GRID */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.servicio-card {
  background: #111;
  padding: 22px;
  color: #fff;
  box-shadow: 0 0 10px rgba(255,46,223,.5);
  transition: transform .25s ease, box-shadow .25s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px #ffd700, 0 0 35px #ffd700;
}

.servicio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 18px;
}

/* TITULO */
.servicio-card h3 {
  color: #ffd700;
  font-size: 29px;
  margin-bottom: 10px;
  text-align: center;
}

/* TEXTO */
.servicio-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
  text-align: justify;
}

/* LISTA */
.servicio-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicio-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.servicio-card ul li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* GRID ALTERNATIVO */
.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== CONTACTO ===================== */

/* CONTENEDOR PRINCIPAL */
#info {
  background-color: #0D47A1;
  padding: 60px 20px;
  position: relative;
}

#info h2{
  text-align:center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight:700;
  color:white;
  margin-bottom:50px;
  letter-spacing:.5px;
  margin-top: -10px;
}

/* FLEX CONTAINER */
.info-container {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

/* CAJAS */
.about-box,
.contact-box {
  flex: 1;
  background: linear-gradient(135deg, #0D47A1, #0B3C5D);
  border-radius: 16px;
  padding: 32px;
  color: #ffffff;
  box-shadow:    0 20px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 270px;
}

.about-box:hover,
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* TÍTULOS */
.about-box h2,
.contact-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

/* TEXTO */
.about-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.contact-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* LISTA DE CONTACTO */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.contact-list li img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-list li:hover img {
  transform: translateY(-5px) scale(1.2);
  filter: brightness(1.2) drop-shadow(0 0 5px #fff);
}

/* ===============================
   BOTÓN FLOTANTE WHATSAPP
   =============================== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #ffffff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  z-index: 9999;
  text-decoration: none;

  box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
  animation: pulse 1.6s infinite;
}

/* Icono */
.whatsapp-float i {
  line-height: 1;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Tooltip */
.whatsapp-float::after {
  content: "Escríbenos por WhatsApp";
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #25D366;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* Mostrar tooltip */
.whatsapp-float:hover::after,
.whatsapp-float:focus::after {
  opacity: 1;
}

/* Animación */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(37, 211, 102, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
  }
}

/* ===== SUPERPOS ===== */

#superpos {
  background: radial-gradient(circle at top, #081a24, #020b12);
  color: #fff;
  padding: 80px 20px;
}

.sp-wrapper {
  max-width: 1200px;
  margin: auto;
}

.sp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


.super {
  color: #ffffff;
  margin-left:-130px!important;
}

.pos {
  color: #00e5ff;
  margin-left:-100px!important;
}

.icono-market {
  display: flex;
  align-items: center;
  gap: 100px;
}

.icono-market img {
  width: 148px !important;
  height: 160px !important;
  margin-left: -25px;

}

.icono-market span {
  margin-left: -22px; /* ajusta este valor */
}

.sp-left {
  margin-left: 0;
}

.sp-left h1 {
  font-size: 70px;
  margin-top: -20px;
}

.sp-left h2 {
  font-size: 50px;
  margin-top: -30px;
}

.sp-left p {
color: #ccc;
font-size: 20px;
margin-top: -20px;


}

.sp-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px; /* espacio entre cada icono */
  flex-wrap: wrap; /* por si en móvil se bajan */
}

.icon-item {
  text-align: center;
  width: 120px; /* controla el ancho de cada bloque */
}

.icon-item img {
  width: 80px;  /* 🔥 tamaño del icono */
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.icon-item p {
  font-size: 17px;
  color: #ffffff;
  margin-top: 10px;
}



.sp-icons div {
  margin: 10px 0;
  color: #00e0ff;
}

.sp-icons i {
  margin-right: 8px;
}

.sp-btn {
  display: block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #00e0ff, #00ffcc);
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  width: fit-content;
}

.sp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.7);
}

.sp-right img {
  width: 480px;
  height: 350px;
  margin-right: -75px;
  border-radius: 2px;
}

/* ESTILOS PARA LA SECCION DE VERSIONES */

.sp-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  margin: 40px 0;
}

.sp-title::before,
.sp-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #00eaff);
}

.sp-title::after {
  background: linear-gradient(to left, transparent, #00eaff);
}

.sp-title span {
  padding: 0 20px;
}

/* LOCAL */

.sp-cards-paquetes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sp-card-local {
  flex: 1;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, #041c1f, #07292e);
  border: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 
    0 0 10px rgba(0, 255, 200, 0.15),
    0 0 25px rgba(0, 255, 200, 0.08),
    inset 0 0 20px rgba(0, 255, 200, 0.05);
}

.sp-card1 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;

  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-card1 h4 {
  margin: 0;
  color: #fff;
  margin-left: -30px;
  font-size: 25px;
  margin-top: 5px;

}

.tipo.local {
  color: #00ffc8; /* 🔥 verde neón */
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
}

.sp-card1 p {
  margin: 0;
  font-size: 17px;
  color: #aaa;
  margin-left: -30px;
  margin-top:5px;
}

.sp-card1 img {
  width: 160px;
  height: 170px;
  object-fit: cover;
  margin-top: -50px;
  margin-left: -30px;
  
}

.sp-card-local ul li img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}

.sp-card-local ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-local ul li {
  margin-bottom: 15px; 
}


.txt-local {
  position: relative;
  top: -5px;
  left: 5px;
  
}

.sp-box-local {
  margin-top: 70px;
  padding: 15px;
  border-radius: 12px;

  background: rgba(0, 255, 200, 0.08); /* 🔥 color interior */
  border: 1px solid rgba(0, 255, 200, 0.2);

  text-align: center;
  font-size: 17px;
  box-shadow: inset 0 0 20px rgba(0, 255, 200, 0.1);
}

/* WEB */

.sp-card-web {
  flex: 1;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, #041a2a, #072c3f);
  border: 1px solid rgba(0, 170, 255, 0.3);
  box-shadow: 
    0 0 10px rgba(0, 170, 255, 0.15),
    0 0 25px rgba(0, 170, 255, 0.08),
    inset 0 0 20px rgba(0, 170, 255, 0.05);
  
}

.sp-card2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;

  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-card2 h4 {
  margin: 0;
  color: #fff;
  margin-left: -20px;
  font-size: 25px;
  margin-top: 5px;

}

.tipo.web {
   color: #00aaff;
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
}

.sp-card2 p {
  margin: 0;
  font-size: 17px;
  color: #aaa;
  margin-left: -20px;
  margin-top:5px;
}

.sp-card2 img {
  width: 130px;
  height: 140px;
  object-fit: cover;
  margin-top: -40px;
  margin-left: -30px;
  
}

.sp-card-web ul {
  margin-top: -16px;
}

.sp-card-web ul img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-top: 20px;
  
}

.sp-card-web ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-web ul li {
  margin-bottom: -20px; 
}

.txt-web {
  position: relative;
  top: -15px;
  left: -5px;
  
}

.sp-box-web {

  margin-top: 30px;
  padding: 15px;
  border-radius: 12px;


  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.2);
  box-shadow: inset 0 0 20px rgba(0, 170, 255, 0.1);

  text-align: center;
  font-size: 17px;
}

/* MOVIL */

.sp-card-movil {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a0826, #2a0d3f);
  border: 1px solid rgba(200, 100, 255, 0.35);
  box-shadow: 
    0 0 10px rgba(200, 100, 255, 0.2),
    0 0 25px rgba(200, 100, 255, 0.1),
    inset 0 0 20px rgba(200, 100, 255, 0.06);
  
}

.sp-card3 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;

  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-card3 h4 {
  margin: 0;
  color: #fff;
  margin-left: -20px;
  font-size: 25px;
  margin-top: 5px;

}

.tipo.movil {
    color: #b84dff;
    text-shadow: 0 0 8px rgba(184, 77, 255, 0.6);
    
}

.sp-card3 p {
  margin: 0;
  font-size: 17px;
  color: #aaa;
  margin-left: -20px;
  margin-top:5px;
}

.sp-card3 img {
  width: 130px;
  height: 140px;
  object-fit: cover;
  margin-top: -40px;
  margin-left: -30px;
  
}

.sp-card-movil ul {
  margin-top: -40px;
}

.sp-card-movil ul img {
  width: 50px;
  height: 60px;
  margin-right: 10px;
  margin-top: 20px;
  
}

.sp-card-movil ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-movil ul li {
  margin-bottom: -34px; 
}

.txt-movil {
  position: relative;
  top: -25px;
  left: -5px;
  
}

.sp-box-movil {
  margin-top: 30px;
  padding: 15px;
  border-radius: 12px;

  background: rgba(180, 0, 255, 0.08);
  border: 1px solid rgba(180, 0, 255, 0.2);
  box-shadow: inset 0 0 20px rgba(180, 0, 255, 0.1);

  text-align: center;
  font-size: 17px;
  box-shadow: inset 0 0 20px rgba(0, 255, 200, 0.1);

}

/* SECCION PLANES */

.sp-title-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  margin: 40px 0;
}

.sp-title-plan::before,
.sp-title-plan::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #00eaff);
   margin: 0 20px; 
}

.sp-title-plan::after {
  background: linear-gradient(to left, transparent, #00eaff);
}

.sp-title-plan span {
  padding: 0 20px;
}

/* SECCION BASICO */

.sp-cards-plan {
  display: flex;
  gap: 20px;
}

.sp-card-basico {
  padding: 20px;
  border-radius: 12px;
  flex: 0 0 350px; /* 👈 reemplaza flex:1 */
  position: relative;
  max-height: 510px; 
  background: linear-gradient(145deg, #041c1f, #07292e);
  border: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 
    0 0 10px rgba(0, 255, 200, 0.15),
    0 0 25px rgba(0, 255, 200, 0.08),
    inset 0 0 20px rgba(0, 255, 200, 0.05);


}

.sp-basico {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-basico h4 {
  margin: 0;
  color: #fff;
  margin-left: -10px;
  font-size: 25px;
  margin-top: 5px;

}

.sp-basico p {
  margin: 0;
  font-size: 15px;
  color: #aaa;
  margin-left: -10px;
  margin-top:10px;
}

.sp-card-basico ul li img {
  width: 60px;
  height: 60px;
  margin-left: -5px;
}

.img-pc{
  width: 70px !important;
  height: 70px!important;
  margin-left: -10px !important;
  margin-top: -20px !important;

}

.sp-card-basico ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-basico ul li {
  margin-bottom: -10px; 
}

.img-carrito {
  position: absolute;
  right: 60px;
  bottom: 80px; /* 👈 la baja abajo a la derecha */
  width: 120px;
}


.txt-basico {
  position: relative;
  top: -25px;
  left: -5px;
  
}

.txt-pc {
  position: relative;
  top: -30px !important;
  left: -10px !important;
  
}

.nota{
  font-size: 12px !important;
  color:#fff;
  margin-top: 10px;
  line-height: 1.4;
}

.price {
  font-size: 19px;
  color: #00e0ff;
  margin-top: -15px;
}

.span-price{
  color: #fff;
  font-size: 17px;


}


.sp-incluye {
  margin-top: 40px;
}

.incluye-title {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 5px;
  margin-left: -83px !important;
}

.incluye-lista {
  list-style: none;
  padding-left: 0;
}

.incluye-lista li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px !important;
  font-size: 13px;
  color: #fff;
  margin-left: -100px !important;
 
  
}

.check1 {
  width: 16px !important;
  height: 16px !important;
  margin-right: 2px !important;

}

.txt-incluye {
  position: relative;
  top: -3px; /* 👈 sube solo el texto */
}

/* SECCION CONTROL */

.sp-card-control {
  padding: 20px;
  border-radius: 12px;
  flex: 0 0 350px; /* 👈 reemplaza flex:1 */
  position: relative; 
  max-height: 620px; 
  background: linear-gradient(145deg, #041a2a, #072c3f);
  border: 1px solid rgba(0, 170, 255, 0.3);

  box-shadow: 
    0 0 10px rgba(0, 170, 255, 0.15),
    0 0 25px rgba(0, 170, 255, 0.08),
    inset 0 0 20px rgba(0, 170, 255, 0.05);
}

.sp-control {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-control h4 {
  margin: 0;
  color: #fff;
  margin-left: -10px;
  font-size: 25px;
  margin-top: 5px;

}

.sp-control p {
  margin: 0;
  font-size: 15px;
  color: #aaa;
  margin-left: -10px;
  margin-top:10px;
}

.sp-card-control ul li img {
  width: 60px;
  height: 60px;
  margin-left: -5px;
}

.img-pc{
  width: 70px !important;
  height: 70px!important;
  margin-left: -10px !important;
  margin-top: -20px !important;

}

.sp-card-control ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-control ul li {
  margin-bottom: -10px; 
}

.img-web {
  position: absolute;
  right: 50px;
  bottom: 65px; /* 👈 la baja abajo a la derecha */
  width: 120px;
}


.txt-control-pc {
  position: relative;
  top: -30px;
  left: -10px;
  
}

.txt-control {
  position: relative;
  top: -25px !important;
  left: -5px !important;
  
}

.nota-control{
  font-size: 12px !important;
  color:#fff;
  margin-top: 10px;
  line-height: 1.4;
}

.sp-incluye-control {
  margin-top: 40px;
}

.incluye-title-control {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 5px;
  margin-left: -100px !important;
}

.incluye-lista-control {
  list-style: none;
  padding-left: 0;
}

.incluye-lista-control li {
  position: relative;
  padding-left: 18px;
  margin-bottom: -3px !important;
  font-size: 13px;
  color: #fff;
  margin-left: -100px !important;
 
  
}

.check2 {
  width: 32px !important;
  height: 32px !important;
  margin-left: -20px !important




}

.txt-incluye-control {
  position: relative;
  top: -12px; /* 👈 sube solo el texto */
  margin-left: -5px;
}

/* SECCION PROFESIONAL */

.sp-card-profesional{
  padding: 20px;
  border-radius: 12px;
  flex: 0 0 350px; /* 👈 reemplaza flex:1 */
  position: relative; 
  background: linear-gradient(145deg, #1a0826, #2a0d3f);
  border: 1px solid rgba(200, 100, 255, 0.35);

  box-shadow: 
    0 0 10px rgba(200, 100, 255, 0.2),
    0 0 25px rgba(200, 100, 255, 0.1),
    inset 0 0 20px rgba(200, 100, 255, 0.06);
}

.sp-profesional {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  height: auto;        /* 🔥 importante */
  padding-top: 10px !important;
}

.sp-profesional h4 {
  margin: 0;
  color: #fff;
  margin-left: -10px;
  font-size: 25px;
  margin-top: 5px;

}

.sp-profesional p {
  margin: 0;
  font-size: 15px;
  color: #aaa;
  margin-left: -10px;
  margin-top:10px;
}

.sp-card-profesional ul li img {
  width: 60px;
  height: 60px;
  margin-left: -5px;
}

.img-pc{
  width: 70px !important;
  height: 70px!important;
  margin-left: -10px !important;
  margin-top: -20px !important;

}

.sp-card-profesional ul {
  list-style: none;
  padding-left: 0;
  
}

.sp-card-profesional ul li {
  margin-bottom: -10px; 
}

.img-movil {
  position: absolute;
  right: 30px;
  bottom: 30px; /* 👈 la baja abajo a la derecha */
  width: 180px;
}


.txt-profesional-pc {
  position: relative;
  top: -30px;
  left: -10px;
  
}

.txt-profesional {
  position: relative;
  top: -25px !important;
  left: -5px !important;
  
}



.sp-incluye-profesional {
  margin-top: 40px;
}

.incluye-title-profesional {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 5px;
  margin-left: -140px !important;
}

.incluye-lista-profesional {
  list-style: none;
  padding-left: 0;
}

.incluye-lista-profesional li {
  position: relative;
  padding-left: 18px;
  margin-bottom: -10px !important;
  font-size: 13px;
  color: #fff;
  margin-left: -100px !important;
 
  
}

.check3 {
  width: 35px !important;
  height: 42px !important;
  margin-left: -70px !important

}

.txt-incluye-profesional {
  position: relative;
  top: -18px; /* 👈 sube solo el texto */
  margin-left: -5px;
}

.sp-card-local:hover {
  box-shadow: 
    0 0 20px rgba(0, 255, 200, 0.4),
    0 0 40px rgba(0, 255, 200, 0.2);
}

.sp-card-web:hover {
  box-shadow: 
    0 0 20px rgba(0, 170, 255, 0.4),
    0 0 40px rgba(0, 170, 255, 0.2);
}

.sp-card-movil:hover {
  box-shadow: 
    0 0 20px rgba(200, 100, 255, 0.4),
    0 0 40px rgba(200, 100, 255, 0.2);
}


.sp-card-basico:hover {
  box-shadow: 
    0 0 20px rgba(0, 255, 200, 0.4),
    0 0 40px rgba(0, 255, 200, 0.2);
}

.sp-card-control:hover {
  box-shadow: 
    0 0 20px rgba(0, 170, 255, 0.4),
    0 0 40px rgba(0, 170, 255, 0.2);
}

.sp-card-profesional:hover {
  box-shadow: 
    0 0 20px rgba(200, 100, 255, 0.4),
    0 0 40px rgba(200, 100, 255, 0.2);
}

.sp-card-basico,
.sp-card-control,
.sp-card-profesional {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  margin-top: auto;
}



























































