:root {
  --bs-primary: #040759;
}
/*---------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*---------------------------------------------------------------------------------*/
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/*---------------------------------------------------------------------------------*/
.hero {
  height: 65vh;
  width: 100%;
  margin-bottom: 40px;
  background-image: url('../img/azul.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden; 
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 7, 89, 0.6); /* filtro azul */
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Puedes ajustar el 0.5 para hacerlo más oscuro o claro */
  z-index: 1;
}
/*---------------------------------------------------------------------------------*/
.elegirnos{
    border-radius: 1rem;
    height: 350px;
    width: 350px;
    
}
/*---------------------------------------------------------------------------------*/
.grayscale-logo {
  max-height: 100px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.grayscale-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% !important;
}
/*---------------------------------------------------------------------------------*/

.bg-azul-oscuro {
  background-color: #040759;
}
.laptop{
    height: 295px;

}
.card-alt {
  background-color: #d4e5ff; 
}


