body {
      background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d;
    }

    /* Pantalla de carga */
.pantalla-carga {
      position: fixed;
      inset: 0;
      background: rgb(255, 255, 255);
      z-index: 10000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      visibility: visible;
      transition: opacity 1s ease, visibility 1s ease;
    }

    .pantalla-carga.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .loader-contenido {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .loader-img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 50px;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .spinner {
      background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(0, 225, 255));
      width: 100px;
      height: 100px;
      animation: spinning82341 1.7s linear infinite;
      border-radius: 50%;
      filter: blur(1px);
      box-shadow: 0px -5px 20px rgb(186, 66, 255), 0px 5px 20px rgb(0, 225, 255);
      position: relative;
    }

    .spinner1 {
      background-color: rgb(36, 36, 36);
      width: 100%;
      height: 100%;
      border-radius: 50%;
      filter: blur(10px);
      position: absolute;
      top: 0;
      left: 0;
    }

    @keyframes spinning82341 {
      to {
        transform: rotate(360deg);
      }
    }

  /* HEADER */
    .navbar {
      background-color: #212529;
    }
    .navbar-brand img {
      height: 40px;
    }
    .navbar-nav .nav-link {
      color: white;
      font-weight: 500;
    }
    .navbar-nav .nav-link:hover {
      color: #00e1ff;
    }
    
    .transition-nav {
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
        
    }
.nav-scrolled {
  background-color: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(5px);
}


.contact-section h2 {
  color: #0d6efd;
}

.contact-section .card {
  transition: transform 0.3s ease;
}
.contact-section .card:hover {
  transform: scale(1.02);
}

.contact-section .btn-primary {
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  border: none;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.1);
}

  .opinion-card {
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0, 255, 255, 0.1));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.opinion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 255, 255, 0.1);
}

.cliente-foto {
  width: 90px;
  height: 90px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}
.modal-content img {
  max-height: 500px;
  object-fit: contain;
}
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.85); /* fondo oscuro, no negro total */
}

.modal-fullscreen .modal-body {
  background-color: transparent;
}

.modal-fullscreen img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}

.btn-close {
  filter: none;
}
/* Footer */
footer {
      background-color: #111;
      color: white;
      padding: 2rem 0;
    }
footer .logo-footer {
      width: 100px;
    }

    .btn {
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.captcha-container {
  max-width: 100%;
  overflow: hidden;
}

.captcha-container > div {
  transform: scale(0.85); /* Ajusta el tamaño según el ancho disponible */
  transform-origin: 0 0;
}

@media (max-width: 576px) {
  .captcha-container > div {
    transform: scale(0.77); /* Más pequeño en pantallas muy pequeñas */
  }
}
.banner-seccion {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 17px;
}

.banner-img {
  width: 100%;
  height: 75vh;
  max-height: 1000px;
  object-fit: cover;
  display: block;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .banner-seccion {
    margin-top: 40px;
  }

  .banner-img {
    height: 300px;
    object-fit: cover;
    object-position: center;
  }
}
/* From Uiverse.io by wilsondesouza */ 
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}
img.object-fit-cover {
  object-fit: cover;
}

.form-contacto {
    max-width: 550px; /* 👉 Cambia este valor según lo angosto que lo quieras */
    width: 100%;
  }
    .contact-image {
    transition: transform 0.5s ease;
  }

  .contact-image:hover {
    transform: scale(1.20); /* Efecto de zoom suave */
  }
@media (max-width: 768px) {
  .contact-image {
    height: 100% !important;
    width: 100px;
    object-fit: cover;
    border-radius: 10px;
  }
}

.cta-pc-section {
  background-color: #0d1b2a;
  min-height: 180px; /* menos alto */
  padding: 2rem 0;    /* espacio más compacto */
}

/* Estilo del botón */
.btn-cta-pc {
  background-color: #00b4d8;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
  transition: background-color 0.3s ease;
}

.btn-cta-pc:hover {
  background-color: #0096c7;
  color: white;
}

.rain-section {
  position: relative;
  width: 100%;
  min-height: 150px;
  overflow: hidden;
  --c: #a64bf4; /* Color del efecto */
  background-color: #000;

  background-image: radial-gradient(4px 100px at 0px 235px, var(--c), #0000),
    radial-gradient(4px 100px at 300px 235px, var(--c), #0000),
    radial-gradient(1.5px 1.5px at 150px 117.5px, var(--c) 100%, #0000 150%),
    radial-gradient(4px 100px at 0px 252px, var(--c), #0000),
    radial-gradient(4px 100px at 300px 252px, var(--c), #0000),
    radial-gradient(1.5px 1.5px at 150px 126px, var(--c) 100%, #0000 150%);

  background-size: 300px 300px;
  animation: hi 150s linear infinite;
}

.rain-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(1em) brightness(6);
  background-image: radial-gradient(circle at 50% 50%, #0000 0, #0000 2px, hsl(0 0% 4%) 2px);
  background-size: 8px 8px;
  pointer-events: none;
}

@keyframes hi {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 9999px;
  }
}

/* Asegura que el texto esté visible */
.rain-section h2,
.rain-section a {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Responsive: ajusta altura en móvil */
@media (max-width: 768px) {
  .rain-section {
    min-height: 90px;
    padding: 2rem 1rem;
    text-align: center;
  }

  .rain-section h2 {
    font-size: 1.1rem;
  }

  .rain-section a.btn {
    font-size: 0.80rem;
    padding: 0.4rem 1.0rem;
  }
}

.btn-galactico {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#212121, #212121),
    linear-gradient(137.48deg, #ffdb3b 10%, #fe53bb 45%, #8f51ea 67%, #0044ff 87%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-galactico strong {
  z-index: 2;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
  font-weight: bold;
}

.btn-galactico #container-stars {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

.btn-galactico #stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

.btn-galactico #stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  animation: animStarRotate 90s linear infinite;
}

.btn-galactico #stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: animStar 60s linear infinite;
}

.btn-galactico:hover #container-stars {
  z-index: 1;
  background-color: #212121;
}

.btn-galactico:hover {
  transform: scale(1.1);
}

.btn-galactico:active {
  border: double 4px #fe53bb;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn-galactico:active .circle {
  background: #fe53bb;
}

.btn-galactico #glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.btn-galactico .circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.btn-galactico .circle:nth-of-type(1) {
  background: rgba(254, 83, 186, 0.636);
}

.btn-galactico .circle:nth-of-type(2) {
  background: rgba(142, 81, 234, 0.704);
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/*SEccion informacion*/
/* Glassmorphism moderno */
.glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

/* Sección */
.contact-section {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #111827);
  min-height: 45vh;
}

/* Animación al pasar el mouse */
.glassmorphism:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

/* Títulos e íconos */
.contact-section h2, .contact-section h4 {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}


.example-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* permite que se acomoden uno al lado del otro si hay espacio */
  gap: 1rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.icon-content {
  display: inline-flex; /* que se comporten como íconos y no bloques */
  flex-direction: wrap;
  align-items: center;
}

/* Responsive íconos */
@media (max-width: 768px) {
  .example-2 {
    flex-direction: column;
    align-items: center;
  }.icon-content {
  display: inline-flex; /* que se comporten como íconos y no bloques */
  flex-direction: wrap;
  align-items: center;
}
}
