/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: #0d2033;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 15px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
.navbar .logo a {
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
}
.navbar .logo span {
  color: #9ACBD0;
}
.streaming {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}
.navbar .logo img {
  padding: 1px;
  width: 40px;
  height: auto;
}
.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 25px;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
  font-weight: 400;
  font-size: 18px;
}
.navbar a:hover {
  color: #67dffd;
}

/*Icono de WhatsApp*/
.float-wa{
  position:fixed;
  width:50px;
  height:50px;
  bottom:15px;
  right:15px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;animation: none !important; /* Asegura que no tenga animación */
}
.float-wa:hover {
  background-color: white;
  color: #25d366;
}


/*Barra de Informacion*/
.features {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background-color: #f0f0f0;
}
.features .feature {
  display: flex;
  align-items: center;
  max-width: 250px;
}
.features .feature i {
  font-size: 35px; /* Tamaño del icono */
  color: black;
  margin-right: 15px;
}
.features .feature-content {
  display: flex;
  flex-direction: column;
}
.features h3 {
  font-size: 14px; 
  font-weight: bold;
  margin: 0;
}
.features p {
  font-size: 14px;
  text-align: left;
  margin: 5px 0 0 0;
}



/*Botones de pantalla de celular*/
#close-menu-btn {
  position: absolute;
  right: 10px;
  top: 20px;
  cursor: pointer;
  display: none;
}
#hamburger-btn {
  color: #fcfcfc;
  cursor: pointer;
  display: none;
}


@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  #hamburger-btn, #close-menu-btn {
    display: block;
    color: white;
    /* color: rgb(198, 197, 197); */
  }
  
  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #0d2033;
    flex-direction: column;
    padding: 70px 20px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }
}