* {
  margin: 0;
  padding: 120;
  box-sizing: border-box;
}
.header {
  position: relative;
  z-index: auto;
}


.boton-sesion {
  margin-left: auto; /* Esto lo empuja totalmente a la derecha */
}
.boton-sesion button {
  padding: 10px 18px;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
 background: #2563eb; /* <-- Fallback si falla el gradiente */
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}


.boton-sesion button:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
}
/* Pantalla de carga completa */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000c1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Loader container */
.container {
  position: relative;
}

/* Loader animación */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 100px;
  margin-left: -80px;
  margin-top: -50px;
  border-radius: 5px;
  background: #1e3f57;
  animation: dot1_ 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite;
}

.loader:nth-child(2) {
  z-index: 1;
  width: 150px;
  height: 90px;
  margin-top: -45px;
  margin-left: -75px;
  border-radius: 3px;
  background: #3c517d;
  animation-name: dot2_;
}

.loader:nth-child(3) {
  z-index: 2;
  width: 40px;
  height: 20px;
  margin-top: 50px;
  margin-left: -20px;
  border-radius: 0 0 5px 5px;
  background: #6bb2cd;
  animation-name: dot3_;
}

/* Animaciones */
@keyframes dot1_ {
  3%, 97% {
    width: 160px;
    height: 100px;
    margin-top: -50px;
    margin-left: -80px;
  }
  30%, 36% {
    width: 80px;
    height: 120px;
    margin-top: -60px;
    margin-left: -40px;
  }
  63%, 69% {
    width: 40px;
    height: 80px;
    margin-top: -40px;
    margin-left: -20px;
  }
}

@keyframes dot2_ {
  3%, 97% {
    height: 90px;
    width: 150px;
    margin-left: -75px;
    margin-top: -45px;
  }
  30%, 36% {
    width: 70px;
    height: 96px;
    margin-left: -35px;
    margin-top: -48px;
  }
  63%, 69% {
    width: 32px;
    height: 60px;
    margin-left: -16px;
    margin-top: -30px;
  }
}

@keyframes dot3_ {
  3%, 97% {
    height: 20px;
    width: 40px;
    margin-left: -20px;
    margin-top: 50px;
  }
  30%, 36% {
    width: 8px;
    height: 8px;
    margin-left: -5px;
    margin-top: 49px;
    border-radius: 8px;
  }
  63%, 69% {
    width: 16px;
    height: 4px;
    margin-left: -8px;
    margin-top: -37px;
    border-radius: 10px;
  }
}

/* --- BANNER AZUL: imagen a la izquierda, texto centrado --- */
.banner-azul {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #0047AB;
  color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.banner-azul {
  background-color: #0047AB;
  padding: 30px;
}

.contenido-banner-oscuro {
  background-color: #002e6d; /* azul más oscuro */
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.contenido-banner-oscuro .icono {
  height: 50px;
}

.contenido-banner-oscuro .usd {
  font-size: 24px;
  font-weight: bold;
}

.contenido-banner-oscuro .texto {
  font-size: 18px;
  font-weight: bold;
}

/* --- BANNER NARANJA: menú más a la izquierda --- */

.banner-naranja {
  position: fixed;
  top:90px; /* justo debajo del banner azul */
  width: 100%;
  height: 60px;
  background-color: rgb(255, 175, 0);
  z-index: 9998;
  display: flex;
  align-items: center;
  padding-left: 20px;
  box-sizing: border-box;
  font-weight: bold;
}

.banner-naranja .icono {
  height: 40px;
}

.banner-naranja ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 10px;
}

.banner-naranja li {
  margin: 0;
}

.banner-naranja a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.banner-naranja a:hover {
  text-decoration: underline;
}


/*aqui comienza la magia*/

.text{
  font-size: 24px;
  text-align: center;
  
}



.hero {
  background-image: url("imagenes del proyecto final de chiro/imagen 1 pal carusel.png");
  background-size: cover;
  background-position: center;
  height: 100vh; 
  position: relative;
  margin-top: 10%;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6); 
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  position: absolute;
  top: 20px;   
  left: 40px; 
  max-width: 450px;
  
}

.hero h1 {
  margin: 0 0 15px 0;
  font-size: 36px;
}

.hero-button {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.hero-button:hover {
  background-color: #158c3f;
}

/* icono de abajo */
.hero-icons {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  height: 45%;
}

.icon-item {
  font-size: 60px;
  color: white;
  text-align: center ;
}


.banner {
            background-color: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .banner h1 {
            color: #3a3a3a;
            font-size: 24px;
            margin: 0;
        }
        .banner h2 {
            color: #3a3a3a;
            font-size: 36px;
            margin: 10px 0 0;
        }


.banner {
    background: white;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: -130px auto 0 auto;
    position: relative;
    z-index: 1;
  }

  .subtitulo {
    font-size: 20px;
    color: #232344;
    font-weight: 600;
    margin-bottom: 15px;
    
  }

  .titulo {
    font-size: 36px;
    color: #232344;
    font-weight: bold;
    
  }



  .slider-container {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      overflow-x: auto;
      padding: 20px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .slider {
      display: flex;
      gap: 20px;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }
    .testimonio {
      flex: 0 0 300px;
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      text-align: left;
      scroll-snap-align: start;
    }
    .titulo {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1c2c74;
    }
    .comentario {
      font-style: italic;
      color: #333;
      margin-bottom: 20px;
    }
    .cliente {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .icono {
      font-size: 24px;
      color: #3f3fcf;
    }
    .info-cliente {
      font-size: 14px;
    }
    .rol {
      font-size: 13px;
      color: #6b6bce;
    }
    /* Scrollbar visible para pruebas */
    .slider-container::-webkit-scrollbar {
      height: 8px;
    }
    .slider-container::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.3);
      border-radius: 4px;
    }


    .boton-ws {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.boton-ws:hover {
  transform: scale(1.1);
}

.boton-ws img {
  width: 35px;
  height: 35px;
}
 
/*footerrr*/

.footer {
  background-color: #0b2545;
  color: #f0f4f8;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #f0f4f8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #17a2b8;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons .icon {
  display: inline-block;
  background-color: #1c3d66;
  color: white;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icons .icon:hover {
  background-color: #17a2b8;
}

.footer-seal {
  max-width: 80px;
  margin-top: 15px;
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #1c3d66;
  padding-top: 15px;
  font-size: 13px;
  color: #a0a7b2;
}

/* RGB Text Animation */
@keyframes rgbFlow {
  0% { color: #ff4d4d; }
  25% { color: #ffcc00; }
  50% { color: #00cc66; }
  75% { color: #3399ff; }
  100% { color: #ff4d4d; }
}

.rgb-text {
  animation: rgbFlow 6s infinite ease-in-out;
}

.rgb-link {
  animation: rgbFlow 6s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}