body {
    background-color: #000;
    color: #fff;
    font-family: "Oswald", Sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
     overflow-x: hidden;
    
   
}
header{
    width: 100%;
    height: 100vh;
}
/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color:rgba(10, 10, 35, 0.894);
    z-index: -1;
}

/* Barra superior */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(10, 10, 35, 0.897);
    
}

.top-bar .contact-info a {
    text-decoration: none;
    color: #f6f4f6;
    margin-left: 15px;
    font-size: 16px;
}

.top-bar .contact-info a i {
    color: #f316f7;
    margin-right: 10px;
}

.contact-btn {
  display: inline-block;
  background-color: #e74d3c00;
  color: #f316f7;
  font-weight: bold;
  padding: 8px 20px;
  font-size: 16px;
  border: #f316f7;
  border-radius: 10px;
  text-transform: none;
  box-shadow: 0 0 5px #f316f7;
  cursor: pointer;
}

.contact-btn:hover {
 
  color: #fbfafa;
  box-shadow: 0 0 25px #f316f7c8;
  
}
/* Estilo para el menú en escritorio */
 .nav-item.mobile-only .contact-btn {
        width: 90%;
        margin: 10px auto;
        font-size: 16px;
        display: block;
        text-align: center;
    }
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    height: 60px;
}

.nav-menu .nav-item {
    margin: 0 35px;
}

.nav-menu .nav-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.nav-menu .nav-link:hover {
    color: #f5f1f1;
}

/* Estilos para el menú móvil */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.close-menu {
    display: none; /* Ocultar por defecto */
}

.dropdown {
    position: relative;
}

/* Submenú oculto por defecto */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(246, 242, 242, 0.08);
    border-radius: 5px;
    border-color: #00f7ff;
    min-width: 180px;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(240, 17, 210, 0.595);
}

/* Estilo de los enlaces del submenú */
.submenu-item {
    display: block;
    color: rgb(41, 140, 239);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
}

/* Cambia color al pasar el mouse */
.submenu-item:hover {
    background-color: #ec18f7ae;
    color: #fff;
}
.desktop-only {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.mobile-only {
  display: none;
}





  :root{
      --slide-height: 100vh;
      --slide-width: 100vw;
      --gallery-width: 48vw; /* ancho de las imágenes en la galería abajo (mitad o algo menos) */
      --gallery-height: 60vh; /* altura visual de cada imagen en la galería */
      --gap: 1.5rem;
      --bg: #0b1020;
    }
/* ========== SECCIÓN HORIZONTAL (PIN + SCROLL -> HORIZONTAL) ========== */
    .horizontal-section {
      position: relative;
      width: 100%;
      /* height se calcula en JS: window.innerHeight + (contenido.scrollWidth - window.innerWidth) */
    }

    .sticky-viewport {
      position: sticky;
      top: 0;
      height: var(--slide-height);
      overflow: hidden;
      display: block;
      width: 100%;
      background: linear-gradient(180deg,#070814 0%, #0d1220 100%);
    }

    .h-content {
      display:flex;
      height: var(--slide-height);
      /* width se calcula automáticamente por el número de slides (min-width en .slide) */
      will-change: transform;
      transition: transform 0.12s linear;
    }

    .slide {
      min-width: var(--slide-width);
      height: var(--slide-height);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      box-sizing: border-box;
      padding: 2rem;
    }

    /* Slide de texto (primera slide) */
    .slide.text-slide {
      text-align:center;
      padding:3rem;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:1rem;
    }
    .text-title { font-size: clamp(2rem, 4vw, 4rem); line-height:1; font-weight:800; }
    .text-sub { font-size: clamp(1rem, 1.6vw, 1.4rem); color:#cbd5e1; }

    /* Slides de imagen */
    .slide img {
      width: 80%;
      height: 80%;
      object-fit:contain;
      border-radius:1rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.6);
      transition: transform .3s ease;
    }
    .slide img:hover { transform: scale(1.03); }

    /* indicador discreto (opcional) */
    .progress-indicator{
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 1rem;
      color: rgba(255,255,255,0.75);
      font-size: .9rem;
      background: rgba(0,0,0,0.25);
      padding: .25rem .6rem;
      border-radius: 999px;
      backdrop-filter: blur(4px);
    }

    /* ========== GALERÍA ABAJO (alternada left/right) ========== */
    .gallery {
      padding: 3rem 1rem;
      display:flex;
      flex-direction:column;
      gap: calc(var(--gap) * 1.2);
      background: #05060a;
      padding-left: 10%;
      padding-right: 10%;
      
    }

    .gallery-item {
      width: var(--gallery-width);
      height: var(--gallery-height);
      overflow:hidden;
      border-radius: .8rem;
      position: relative;
      box-shadow: 0 8px 30px rgba(244, 242, 242, 0.6);
      margin-bottom: 10% !important;
    }
    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
     
    }

    /* Alternado: izquierda / derecha */
    .gallery-item.left { margin-left: 0; margin-right: auto; }
    .gallery-item.right { margin-left: auto; margin-right: 0; }

   .gallery-caption {
  position: absolute;
  bottom: 1.2rem;
  font-size: 1.6rem;          /* un poco más grande */
  font-weight: 900;           /* más bold */
  
  letter-spacing: 1px;
  padding: 0 .6rem;

  /* Fondo degradado animado */
  background: linear-gradient(270deg, #7cb2f4, #f472b6, #2a1183, #4190eb);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Sombra suave para resaltar */
  text-shadow: 0 0 10px rgba(255,255,255,0.3);

  animation: gradientMove 5s ease infinite;
}

/* Animación del degradado */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gallery-item.left .gallery-caption { 
  left: 1.2rem; 
  text-align: left; 
}

.gallery-item.right .gallery-caption { 
  right: 1.2rem; 
  text-align: right; 
}


/* Título debajo del carrusel */
.titulo-post-carrusel {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: #0b0b0b; /* igual que fondo general */
}

.titulo-post-carrusel h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;          /* super negrita */
  text-transform: none;      /* mantenemos mayúsculas/minúsculas */
  line-height: 1.2;
  color: white;
  letter-spacing: -0.5px;
}
.highlight {
  background: #129ec8;
  color: #f7f6f7;
  padding: 0 0.3em;
  border-radius: 0.25em;
}
.italic {
  font-style: italic;
  font-weight: 700;
}

.scroll-down-icon {
  display: block;
  margin: 1.5rem auto 0 auto; /* centrado debajo del texto */
  width: 50px;
  height: 90px;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #60a5fa);
}

.scroll-down-icon .arrows {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.6; }
}

.scroll-down-icon .mouse line {
  animation: scrollWheel 1.2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

    /* responsive: en pantallas pequeñas apilar full width */
    @media (max-width: 900px){
      :root { --gallery-width: 90vw; --gallery-height: 50vh; }
      .gallery-item { width: var(--gallery-width); margin: 0 auto !important; }
      .slide img { width: 90%; height: 70%; }
    }

/* RESPONSIVE PARA MÓVIL */
@media (max-width: 768px) {
  :root {
    --slide-height: 100vh;   /* cada slide ocupa la pantalla */
    --slide-width: 100vw;
    --gallery-width: 100vw;  /* galería ocupa todo el ancho */
    --gallery-height: auto;
  }

  /* Texto */
  .slide.text-slide {
    padding: 1.2rem;
  }
  .text-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .text-sub {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  /* Carrusel imágenes */
  .slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: .5rem;
  }

  /* Galería */
  .gallery {
    padding: 1rem;
    gap: 1.2rem;
  }
  .gallery-item {
    width: 100%;
    height: auto;
    margin: 0 !important; /* quitar izquierda/derecha */
    border-radius: .5rem;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
  }
  .gallery-caption {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;       /* 👈 quitar el -50% */
  text-align: center;    /* centrado */
  margin-top: .5rem;
  font-size: 1rem;
  text-shadow: none;
  display: block;
  width: 100%;           /* asegura que ocupe todo el ancho */
}
}

















/* Contenedor para el texto y el botón */
.intro-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: left;
    padding: 0 20%; /* Ajuste el 10% para centrar el texto ligeramente a la izquierda */
    box-sizing: border-box;
}

.intro-text {
    color: #fff;
}

.intro-text h1 {
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.pink-text {
  color: #cf37d2;
}

.blue-text {
  color: #0d57e9;                  /* azul eléctrico */
  font-weight: bold;

  text-shadow: 
    0 0 2px #0d57e9, 
    0 0 4px #6fa8ff;               /* resplandor suave y elegante */
}

/* Estilos para los iconos de redes sociales */
.social-icons {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000; /* Asegúrate de que estén por encima de otros elementos */
}

.social-icons a {
    margin: 10px 0;
}

.social-icons img {
    width: 40px; /* Ajusta el tamaño del icono según lo desees */
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1); /* Efecto de zoom al pasar el ratón */
}

.nav-link1{
    display: none;
}


.top-bar, .nav-menu {
    transition: transform 0.3s ease, position 0.3s ease;
}

/* Al principio, el nav-menu no tiene posición fija */
.nav-menu {
    position: static; /* Mantenerlo en su lugar original */
}
.carousel-container {
    padding: 0;
    width: 100%;
   
   
  }
  
  .carousel-container .carousel {
    padding: 0;
    display: flex;
    overflow: hidden;
  }
  
  .carousel-image {
    height: 400px;
    min-width: 1%;
    width: 33.33%;
    max-width: 50%;
    transition: all 1s ease;
    background-size: cover;
    background-position: center center;
    
  }
  
  .carousel-image:hover {
    max-width: 80%;
    min-width: 50%;
    transition: min-width 1s ease;
    -webkit-transition: min-width 1s ease;
    -moz-transition: min-width 1s ease;
    -ms-transition: min-width 1s ease;
    -o-transition: min-width 1s ease;
  }
  
  .carousel-image:hover .carousel-overlay {
    background-color: rgba(0, 0, 0, .4);
    width: auto; 
    height: 100%;
    transition: background-color .5s ease;
    padding: 1em;
    display: flex;
  }
  
  .carousel-image:hover .carousel-overlay .carousel-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: font-size 1s ease;
  }
  
  .carousel-image .carousel-overlay .carousel-text {
    border: 1px solid white;
    width: 100%;
    height: 90%;
    margin: 2px;
    display: none;
    font-family: sans-serif;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
  }
.carousel-title {
  text-align: center;
  font-size: 40px;
  color: #f2f1f5d0;
  font-weight: bold;
  padding-bottom: 2%;
  padding-top: 10%;

  /* Fondo degradado animado */
  background: linear-gradient(270deg, #f03392, #8b5cf6, #5793f4);
  background-size: 600% 600%;
  animation: gradientMove 8s ease infinite;

  /* Opcional: que el texto esté encima del fondo sin taparlo */
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animación del degradado */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


 #carouselExampleIndicators{
    display:none;
 }

 .carousel-mobile {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 10px 0;
}

.carousel-scroll {
  display: flex;
  gap: 12px;
}

.carousel-item-m {
  flex: 0 0 auto;
  width: 80%;             /* ocupa casi toda la pantalla en móvil */
  max-width: 320px;       /* tamaño máximo */
}

.carousel-item-m img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
/* Encabezado de la sección (fuera de la tarjeta) */
/* Sección completa */
.precioweb-section {
  background: #11182700;
  padding: 50px 20px;
  text-align: center;
}

/* Encabezado */
.precioweb-header {
  margin-bottom: 40px;
}

.precioweb-header .precioweb-title {
  font-size: 2.5rem; /* más grande */
  font-weight: bold;
  background: linear-gradient(270deg, #3b82f6, #f053a2, #0cedf1, #b624b4);
  background-size: 600% 600%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 8s ease infinite;
  margin-bottom: 15px;
}

/* Animación del degradado */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.precioweb-header .precioweb-subtitle {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
}

/* Contenedor de la card */
.precioweb-container {
  display: flex;
  justify-content: center;
}

.precioweb-card {
  display: flex;
  background: #0f172a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  max-width: 900px;
  width: 100%;
}
.precioweb-left {
    flex: 1;
    position: relative; /* necesario para que el video ocupe el contenedor */
    overflow: hidden;   /* recorta lo que sobresalga */
}

.precioweb-left video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* rellena todo el espacio, mantiene proporción y recorta exceso */
}
.precioweb-right {
  flex: 1.5;
  padding: 30px;
}
.precioweb-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #22c55e;
  margin-bottom: 10px;
}
.precioweb-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 20px;
}
.precioweb-toggle {
  display: flex;
  justify-content: center;
  background: #1e293b;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}
.precioweb-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  font-size: 1rem;
}
.precioweb-toggle button.active {
  background: #cf37d2;
  color: black;
  border-radius: 30px;
}
.precioweb-save {
  font-size: 0.7rem;
  color: rgb(239, 217, 46);
  margin-left: 4px;
}
.precioweb-price {
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
      color: #0da3e9;
    font-weight: bold;
    
}
.precioweb-plan-texto {
  font-size: 0.8rem;
  color: #9ca3af;
}
.precioweb-features {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.precioweb-features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.precioweb-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: #22c55e;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.precioweb-cta:hover {
  background: #16a34a;
}

/* ❌ Estilo para ítems no incluidos */
.precioweb-features .not-included {
  color: #6b7280;
  text-decoration: line-through;
  opacity: 0.6;
}

.pro-text {
  font-weight: 900;                     /* súper bold */
  font-size: 1.3em;                     /* un poco más grande */
  font-family: 'Poppins', sans-serif;   /* tipografía moderna */
  background: linear-gradient(90deg, #ff3cac, #784ba0, #2b86c5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

/* Glow moderno */
.pro-text::after {
  content: "✨";
  position: absolute;
  right: -18px;
  top: -6px;
  font-size: 0.8em;
  animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}
.destacado {
  display: block; /* hace que ocupe toda la línea */
  font-size: 1.25rem;   /* más grande que el resto */
  font-weight: 800;     /* extra bold */
  color: #111827;       /* un gris más oscuro para resaltar */
}
 

      .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(.2,.9,.3,1);
    }
    .accordion-icon {
      display:inline-block;
      width:1.25rem;
      text-align:center;
      font-weight:700;
      transition: transform .25s ease;
      line-height: 1;
    }
    .accordion-content p { margin: 0; padding: .75rem 0 1rem 0; }
    .minw-zero { min-width: 0; }
    /* Transición suave del fondo */
    #seccion-web {
      transition: background-color .7s ease;
    }

.cronoonline {
  background: #ffffff00;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
}

.cronoonline .container {
  max-width: 1000px;
  margin: auto;
}

.cronoonline .title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cronoonline .title span {
  color: #06b6d4; /* cyan */
}

.cronoonline .subtitle {
  text-align: center;
  color: #8c8c8c;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #06b6d4;
  border-radius: 2px;
}

.step {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.step.left {
  justify-content: flex-end;
  text-align: right;
}

.step.right {
  justify-content: flex-start;
  text-align: left;
}
.content H3{
  COLOR: #dd289d;
}
.step .content {
  background: #ffffff00;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 45%;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step .number {
  color: #06b6d4;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Animaciones */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 20px; /* línea a la izquierda */
  }

  .step {
    flex-direction: row !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .step .content {
    max-width: 100%;
    margin-left: 40px; /* espacio entre la línea y el contenido */
  }
}

    
@media (min-width: 768px) {
  .destacado {
    font-size: 1.5rem; /* aún más grande en pantallas grandes */
  }
}

@media (max-width: 768px) {
    .nueva-contenedor {
        flex-direction: column;
        gap: 10px;
    }

    .nueva-item {
        width: 100%;
    }
    .nueva-texto {
        width: 95%;
        font-size: 18px;
        
        
    }
    .primerasection-mantenimiento-right .primerasection-mantenimiento-text{
      /* empuja el bloque hacia el borde derecho */
      margin-left:0%; 
      font-size: 15px;
      padding-top: 0%;
      
    }
    .carousel-title{

        font-size: 20px;
        background-color: rgba(10, 10, 35, 0);
        padding-bottom: 20px;
    }
     .carousel-container {
    display:none;
    
  }

  #carouselExampleIndicators {
    display: block;
    overflow-x: auto;              /* permite scroll horizontal */
    -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
  }
.carousel-indicators button{
    display:none;
}
  .carousel-inner {
    display: flex;                 /* coloca los items en fila */
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* hace que "encaje" en cada item */
    height: auto;                  /* quita altura fija */
  }

  .carousel-item {
    flex: 0 0 auto;                /* evita que se estiren */
    width: 95%;   
                   /* cada item ocupa 80% del ancho de pantalla */
    margin-right: 10px;            /* separación entre imágenes */
    scroll-snap-align: start;      /* se alinea al iniciar el scroll */
    
  }

  .carousel-item img {
    width: 100%;
     height: 400px; 
    object-fit: cover;
    border-radius: 12px;           /* opcional: esquinas redondeadas */
    
  }

  /* Opcional: ocultar los botones prev/next de Bootstrap en móvil */
  #carouselExampleIndicators .carousel-control-prev,
  #carouselExampleIndicators .carousel-control-next,
  #carouselExampleIndicators .carousel-indicators {
    display:inline-block;
  }
  .precioweb-card {
    flex-direction: column;
    text-align: center;
  }

  .precioweb-left {
    padding: 10px;
  }

  .precioweb-left img {
    max-width: 150px;
  }

  .precioweb-right {
    padding: 20px;
  }

  .precioweb-title {
    font-size: 1.3rem;
  }

  .precioweb-subtitle {
    font-size: 0.85rem;
  }

  .precioweb-toggle {
    flex-direction: row;
    margin-bottom: 15px;
  }

  .precioweb-toggle button {
    font-size: 0.9rem;
    padding: 8px;
  }

  .precioweb-price {
    font-size: 2.2rem;
    text-align: center;
  }

  .precioweb-plan-texto {
    font-size: 0.75rem;
    text-align: center;
  }

  .precioweb-features {
    font-size: 0.9rem;
    text-align: left;
    padding-left: 20px;
  }

  .precioweb-cta {
    font-size: 1rem;
    padding: 10px;
  }
  .precioweb-left video {
    display: none;;
}

}

/* Estilos del menú en móviles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        gap:35px;
        z-index: 1002;
    }

    .nav-menu.active {
        transform: translateY(0);
        
    }

    .nav-item {
        margin: 50px 0;
        gap: 35px;
        display: flex;               /* Necesario para aplicar justify-content */
        justify-content: center;     /* Centra horizontalmente */
        align-items: center;         /* Centra verticalmente */
        flex-direction: column;      /* Opcional: para apilar elementos verticalmente */
        text-align: center;          /* Centra texto si hay */
      }

    .nav-link {
        font-size: 24px;
        
    }
    

    .close-menu {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 36px;
        color: #e74c3c;
        cursor: pointer;
        display: block;
    }
    .contact-info {
        display: flex;
        flex-direction: column; /* Alinea los elementos en columna */
        gap: 5px; /* Espacio entre ellos */
    }
    
    .contact-info a {
        display: flex; /* Hace que cada enlace se comporte como un bloque flexible */
        align-items: center; /* Alinea el icono y el texto */
        text-decoration: none;
        color: #fff;
        font-size: 16px;
    }
    .contact-btn{
        display: none;
    }
     .dropdown:hover .submenu {
        display: block;
    }
    .intro-container {
        padding: 0 20px; /* Aumentar el padding para pantallas pequeñas */
        text-align: center;
    }

    .intro-text h1 {
        font-size: 50px; /* Reducir el tamaño del texto en pantallas pequeñas */
    }

    .intro-btn {
        padding: 12px 25px;
        font-size: 16px; /* Reducir el tamaño del botón en pantallas pequeñas */
    }
    .social-icons {
        
        display: none;
        
    }

    .nav-link1{
        display: block;
    }
    
     
}

@media screen and (max-width: 480px) {
    .intro-container {
        padding: 0 10px; /* Ajuste aún más el padding para dispositivos muy pequeños */
    }

    .intro-text h1 {
        font-size: 50px; /* Reducir aún más el tamaño del texto */
        padding: 5%;
    }
    .intro-text .blue-text{
        font-size: 50px;
    }
    .intro-btn {
        padding: 10px 20px;
        font-size: 14px; /* Ajustar el tamaño del botón */
    }
     .precioweb-price {
    font-size: 1.8rem;
  }

  .precioweb-toggle {
    flex-direction: column;
  }

  .precioweb-toggle button {
    width: 100%;
    margin-bottom: 5px;
  }

  .precioweb-cta {
    font-size: 0.9rem;
    padding: 8px;
  }
}
.show-submenu {
    display: block !important;
}
