* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #002c5f !important;
  color: #ffffff;
}

.barranav {
  background-color: #020211;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .barranav {
    height: 15vh;
  }
}

.nav-item .nav-link,
.nav-item .nav-link.active {
  color: rgb(168, 208, 235) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin: 30px;
  font-family: 'Raleway', sans-serif;
  position: relative;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #c5d8ff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link {
  position: relative;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.027);
  color: #c5d8ff;
}

.foto-logo {
  height: 15vh;
  border-radius: 30vh;
  margin-left: 5vh;
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 10px;
    width: 40vh;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.custom-toggler {
  border: none;
  background-color: rgb(22, 68, 167);
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
}

.toggler-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-link,
.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link::after,
.nav-link::before {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Dropdown */
.dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
  color: #1f1b1b;
  text-align: center;
}

.dropdown-menu .dropdown-item {
  border-radius: 10px !important;
  color: #ffffff !important;
  font-weight: 600;
  text-align: center;
}

.dropdown-menu .dropdown-item.destacado:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50vh;
  
}

@media (max-width: 991px) {
  #menuPrincipal {
    border-radius: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.2rem;
  }

  .nav-link {
    background-color: rgba(14, 32, 66, 0.911) !important;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    border: 2px solid rgb(130, 182, 182) !important;
    transition: all 0.3s ease;
    width: 60vh;
    text-align: center;
    border-radius: 10px !important;
  }

  .nav-link:hover {
    transform: scale(1.03);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
  }

  .dropdown-menu {
    border: none;
    border-radius: 1rem !important;
    padding: 0.5rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
  }

  .dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgb(130, 182, 182) !important;
    margin: 5px;
    max-width: 40vh !important;
    margin-left: 10px;
  }
}



















.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}


 #carouselProductos .btn{
  color:#1f2020;
  background-color: #8283d4;
  width: 15vh;
  height: 6vh;
}

#carouselProductos .btn:hover {
  background-color: #003973;
  color: white;
}




.whatsapp-flotante {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  z-index: 999;
  display: inline-block;
}


.whatsapp-flotante img {
  width: 50px;
  height: 50px;
  display: block;
  border: none;
  outline: none;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-flotante img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}


.custom-card {
  border-radius: 1.25rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background-color: #ffffff;
  color: #0d1b2a;
  border: 5px solid transparent; /* Borde base transparente */
  border-image: linear-gradient(45deg, #007bff, #00cfff) 1; /* Borde con gradiente */
  transition: transform 0.3s ease; /* Efecto de transición */
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid #e9ecec;
  transform: scale(1.05); /* Escala un poco al pasar el cursor */
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #e6f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #007bff;
  transition: background-color 0.3s ease;
}

.icon-circle:hover {
  background-color: #00cfff;
  color: #ffffff;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
  border-radius: 0.25rem;
  font-weight: 600;
}

.btn-primary:hover {
  color: #ffffff;
} 

@media (max-width: 968px) {
  .piedecarta { 
    margin-top: 20px;
  }
}

@media (max-width: 968px) {
  .piedecarta-2 { 
    margin-top: 25px;
  }
}

@media (max-width: 968px) {
  .piedecarta-3 { 
    margin-top: 15px;
  }
}



.presentacion {
  width: 100%;
  overflow: hidden;
}

.imagen-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.imagen-presentacion {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: inset 0px 100px 100px 30px rgba(0, 0, 0, 0.6); /* La sombra dentro de la imagen */
  position: relative;
  z-index: 0; /* Asegura que la imagen esté debajo de la sombra */
}

.sombra-gradiente {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1; /* Asegura que la sombra esté sobre la imagen */
  height: 20vh; /* Ajuste dinámico para el gradiente */
}

.title-img {
  position: absolute;
  bottom: 30px;
  left: 5%;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* para legibilidad */
  z-index: 2;
  text-align: left;
}

@media (max-width: 768px) {
  .sombra-gradiente {
    height: 15vh; /* En pantallas más pequeñas, reduce la altura de la sombra */
  }
  .title-img {
    font-size: 2.5rem; /* Tamaño de fuente ajustado para pantallas más pequeñas */
  }
}



/* Filtros */
#searchInput, #categoryFilter {
  border-radius: 8px;
  border: 1px solid #ced4da;
  transition: all 0.3s ease-in-out;
}

#searchInput:focus, #categoryFilter:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
}




.carousel-control-prev-icon {
  background-color: #007bff;
  border-radius: 40vh;
}

.carousel-control-next-icon {
  background-color: #007bff;
  border-radius: 40vh;
}

@media (max-width: 767px) {
  /* Oculta todos los productos menos el primero en cada slide */
  .carousel-item .col-12 {
    display: none;
  }

  .carousel-item .col-12:nth-child(1) {
    display: block;
  }

  /* Asegura que la card ocupe todo el ancho disponible */
  .carousel-item .col-12 .card {
    width: 100%;
  }
}


@keyframes cart-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

#cartButton.animate {
  animation: cart-bounce 0.4s ease;
}

#cartSidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -2px 0px 10px rgba(0,0,0,0.3);
  padding: 20px;
  z-index: 999;
}

/* Estilo para los productos en el carrito */
#cartItems {
  max-height: 70vh; /* Máxima altura de la lista de productos */
}

/* Barra de desplazamiento solo en computadoras */
@media (min-width: 768px) {
  #cartItems {
    overflow-y: auto; /* Barra de desplazamiento solo en pantallas grandes */
  }
}

/* Barra de desplazamiento para móviles */
@media (max-width: 767px) {
  #cartItems {
    overflow-y: scroll; /* Se puede desplazar en móviles */
    max-height: 50vh; /* Limita la altura en pantallas pequeñas */
  }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

.hero-vaplux {
  background: linear-gradient(135deg, #01317e, #002c5f);
  padding: 100px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 60px;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(to right, #00aaff, #0077ff);
  background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  color: #d6d6d6;
  margin-bottom: 30px;
}

.hero-btn {
  background: linear-gradient(135deg, #0077ff, #00aaff);
  padding: 16px 40px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #0051ff, #1a1d24);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
}

/* Hero Image */
.hero-img {
  flex: 1;
  text-align: center;
}





#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vaplux {
  position: relative;
  z-index: 1;
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, #001b47, #002c5f);
  padding: 100px 30px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-top: 2px solid #001a6e;
}

.quote-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 700px;
  width: 100%;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quote-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.quote-group label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.quote-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  background: #eaf1fb;
  color: #002c5f;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 44, 95, 0.15);
}

.quote-group select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.3);
}

.quote-result {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #00aaff;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 44, 95, 0.2);
}

/* Particles Quote */
#particles-quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-glass {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 14px 32px;
  }
  .hero-img img {
    max-width: 80%;
    transform: none;
  }
  .quote-container {
    padding: 30px 20px;
  }
  .quote-container h2 {
    font-size: 1.6rem;
  }
}

/* Estilo para el botón con ID 'boton-2' */
#boton-2 {
  background: linear-gradient(135deg, #00cc22, #05cf48);
  color: white;
  padding: 16px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(4, 196, 122, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#boton-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(8, 180, 46, 0.2), transparent, rgba(7, 194, 63, 0.2));
  transition: left 0.5s ease;
  z-index: 0;
}

#boton-2:hover::before {
  left: 0;
}

#boton-2:hover {
  background: linear-gradient(135deg, #1f6b36, #1f693b);
  color: #ffffff;
}


/* Fondo de sección con posición relativa para las partículas */
.reseller-modern-section {
  position: relative;
  background-color: #002c5f;
  padding: 100px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Contenedor de partículas */
#reseller-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Tarjeta principal con efecto glass */
.reseller-glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
}

/* Título destacado */
.reseller-glass-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.reseller-glass-card h2 span {
  color: #00d4ff;
}

/* Subtexto */
.reseller-subtext {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Contenedor de beneficios */
.reseller-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
}

/* Tarjeta individual de beneficio */
.reseller-feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.reseller-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

/* Iconos de FontAwesome */
.reseller-feature-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00d4ff;
}

/* Título y texto de cada feature */
.reseller-feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.reseller-feature-card p {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* Botón CTA */
.reseller-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background-color: #00d4ff;
  color: #002c5f;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}



.reseller-cta-btn:hover {
  background-color: #00a7c4;
  transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .reseller-glass-card {
    padding: 30px 20px;
  }

  .reseller-features {
    flex-direction: column;
    align-items: center;
  }
}

#body-trabajo {
  background: linear-gradient(135deg, #002c5f, #003b80);
}

.join-vaplux-section {
  position: relative;
  background: linear-gradient(135deg, #002c5f, #003b80);
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.join-vaplux-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/working-team.jpg') no-repeat center/cover;
  opacity: 0.05;
  z-index: 0;
}

.join-vaplux-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.join-vaplux-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.join-vaplux-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.join-vaplux-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.join-vaplux-benefits li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.join-vaplux-benefits i {
  color: #00d4ff;
  margin-right: 10px;
}


@media screen and (max-width: 768px) {
  .iphone-roto {
    height: 30vh !important;
    max-width: 55vh !important;
  }
}
@media screen and (min-width: 768px) {
  .iphone-roto {
    height: 50vh !important;
    max-width: 55vh !important;
  }
}






  .hero-iphones {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom right, #12161f, #222);
    color: white;
    padding: 2rem 1rem;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
  }




  .hero-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-img-container img {
    width: 100%;
    max-width: 450px; /* Aumentado desde 350px */
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

  .hero-texto h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .hero-texto p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #ccc;
  }

  .btn-hero {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
  }

  .btn-hero:hover {
    background-color: #ddd;
  }

  @media (min-width: 768px) {
    .hero-iphones {
      flex-direction: row;
      justify-content: center;
      text-align: left;
      gap: 2.5rem;
    }



    .hero-img-container {
      max-width: 50%;
    }

    .hero-img-container img {
      max-width: 500px; /* Más grande en pantallas grandes */
    }

    .hero-texto {
      max-width: 50%;
    }

    .hero-texto h2 {
      font-size: 2.4rem;
    }

    .hero-texto p {
      font-size: 1.15rem;
    }
  }








  /* Estilo general para la tarjeta */
.product-card .card {
  height: vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  border-radius: 1rem;
}

/* Imagen estilo ML: contenida, centrada, sin deformarse */
.producto-img {
  max-height: 200px;
  object-fit: contain;
  padding: 0.5rem;
}

/* Texto más limpio y compacto */
.card-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  color: #555;
}

/* Precio destacado */
.fw-bold {
  font-size: 0.95rem;
  color: #111;
  margin-bottom: 0.6rem;
}

/* Botón tipo ML */
.add-to-cart {
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  margin: 20px;
}

/* Ajustes responsive para celulares */
@media (max-width: 576px) {
  .product-card {
    max-width: 200px !important;
  }

  .card-body {
    padding: 0.1rem 0.1rem;
  }

  .producto-img {
    max-height: 140px !important;
    max-width: 55vh !important;
  }

  .card-title {
    font-size: 0.85rem;
  }

  .card-text {
    font-size: 0.7rem;
  }

  .fw-bold {
    font-size: 0.85rem;
  }

  .add-to-cart {
    font-size: 0.7rem;
    padding: 0.3rem;
  }
}
