  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }

  body {
    font-family: 'Poppins', sans-serif;
  }



  img {
    max-width: 100%;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .header {
    background-color: #fafafa;
    padding: 150px 0 100px 0;
    display: flex;
    align-items: center;
  }

  .menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /*
  .menu{
    position: fixed;
    background-color: #ffffff;
  }

 */
  .menu .navbar ul li {
    position: relative;
    float: left;
  }

  .menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #323232;
    display: block;
  }

  .menu .navbar ul li a:hover {
    color: #02B1F4;
    border-radius: 15px;
  }

  .logo {
    font-size: 25px;
    font-weight: 800;
    color: #02B1F4;
    text-transform: uppercase;
  }

  .span-sol {
    color: #323232;
  }

  #menu {
    display: none;
  }

  .menu-icon {
    width: 25px;
  }

  .menu label {
    cursor: pointer;
    display: none;
  }

  /*HEADER*/

  .header-content {
    display: flex;
  }

  .header-txt {
    width: 50%;
  }

  .header-txt h1 {
    line-height: 1;
    color: #323232;
    text-transform: uppercase;
    font-size: 70px;
    margin-bottom: 10px;
  }

  .header-txt p {
    font-size: 16px;
    color: #818181;
    margin-bottom: 45px;
  }

  .header-img {
    width: 50%;
    margin-right: 0px;
  }

  .btn-1 {
    display: inline-block;
    padding: 11px 25px;
    background-color: #02B1F4;
    color: #ffffff;
    border-radius: 15px;
  }

  /*
  ABOUT
  */

  .about {
    padding: 100px 0;
    display: flex;
  }

  .about-img {
    width: 50%;
  }

  .about-img img {
    width: 500px;
    border-radius: 15px;
  }

  .about-txt {
    width: 50%;
    margin-left: 25px;
  }

  .about-txt h2 {
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
  }

  .about-txt p {
    font-size: 16px;
    color: #818181;
  }

  /*
  SERVICIOS
  */

  .servicios {
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #fafafa;
  }

  .servicios h2 {
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
  }

  .servicios-content {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
  }

  .servicio-1 {
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    flex-basis: calc(25% - 20px);
  }

  .servicio-1 i {
    font-size: 30px;
    color: #02B1F4;
    margin-bottom: 15px;
  }

  .servicio-1 h3 {
    font-size: 20px;
    color: #323232;
    text-transform: capitalize;
  }

  /*
  CATALOGO DE PRODUCTOS
  */

  .btnDetalle{
    padding-top: 25px;
  }

  .productos {
    padding: 50px 0 100px 0;
    text-align: center;
    background-color: #fafafa; 
  }

  .productos h2 {
    color: #323232;
    font-size: 50px;
    margin-bottom: 15px;
  }

  .productos-content {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
  }

  .producto-1 {
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    flex-basis: calc(25% - 20px);
  }

  .producto-1 i {
    font-size: 30px;
    color: #02B1F4;
    margin-bottom: 15px;
  }

  .producto-1 h3 {
    font-size: 20px;
    color: #323232;
    text-transform: capitalize;
  }

  /*
  FORMULARIO
  */

  .formulario {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  form {
    padding: 50px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }

  form h2 {
    font-size: 25px;
    color: #323232;
    text-transform: uppercase;
    margin-bottom: 35px;
  }

  .input-container {
    position: relative;
  }

  .input-container>i {
    padding: 14px;
    border-radius: 50%;
    background-color: #02B1F4;
    color: #ffffff;
    position: absolute;
    font-size: 20px;
    top: 4px;
    left: 10px;
  }

  .input-container>input,
  textarea {
    padding: 17px 15px 17px 65px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 35px;
    background-color: transparent;
    border: 2px solid #02B1F4;
    font-size: 16px;
    outline: none;
    color: #323232;
  }

  textarea {
    font-family: 'Poppins', sans-serif;
    height: 150px;
  }

  ::placeholder {
    color: #a0a0a0;
    font-size: 16px;
  }

  .btn {
    background-color: #02B1F4;
    padding: 17px 30px;
    width: 100%;
    border: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
  }

  /*
  FOOTER
  */

  .footer {
    padding: 50px;
    background-color: #fafafa;
  }

  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .link ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .link ul li {
    margin-right: 50px;
  }

  .link ul li a {
    color: #323232;
    font-size: 17px;
  }

  .link ul li a:hover {
    color: #02B1F4;
  }

  /*
    MEDIA QUERY PARA EL RESPONSIVE
  */

  @media (max-width: 999px) {
    .menu {
      padding: 20px;
    }

    .menu label {
      display: initial;
    }

    .menu .navbar {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #ffffff;
      display: none;
    }

    .menu .navbar ul li {
      width: 100%;
    }

    #menu:checked~.navbar {
      display: initial;
    }

    .header {
      min-height: 0vh;
      padding: 80px 30px 50px 30px;
    }

    .header-content {
      flex-direction: column;
    }

    .header-content h1 {
      font-size: 2.5rem;
    }

    .header-txt {
      text-align: center;
      width: 100%;
      margin-bottom: 25px;
    }

    .header-img {
      width: 100%;
    }

    .header-img img {
      width: 100%;
    }

    .about {
      padding: 30px;
      flex-direction: column;
    }

    .about-img {
      width: 100%;
      order: 2;
    }

    .about-img img {
      width: 100%;
    }

    .about-txt {
      width: 100%;
      margin-left: 0;
      text-align: center;
      margin-bottom: 25px;
    }

    .servicios {
      padding: 30px;
    }

    .servicios-content {
      margin-top: 25px;
      flex-direction: column;
    }

    .productos {
      padding: 30px;
    }

    .productos-content {
      margin-top: 25px;
      flex-direction: column; 
    }

    .servicio-1 {
      margin-bottom: 20px;
    }
    .producto-1 {
      margin-bottom: 20px;
    }

    .formulario {
      padding: 30px;
      margin-top: 0;
      margin-bottom: 0;
    }

    form {
      width: 100%;
    }

    .footer {
      padding: 30px;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }

    .link ul {
      flex-direction: column;
    }

    .link ul li {
      margin: 0 0 15px 0;
    }
  }









  .menu {
    width: 100% ;
    background-color: transparent; /* Ajusta el color de fondo según tu diseño */
    box-shadow: transparent; /* Sombra opcional para dar profundidad */
    z-index: 1000; /* Asegura que el menú esté sobre otros elementos */
    position: fixed; /* Hace que el menú sea fijo */
    top: 0; /* Lo posiciona en la parte superior */
    left: 0; /* Asegura que esté alineado a la izquierda */
}

.menu .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent; /* Ajusta el color de fondo según tu diseño */
}

.navbar li {
    float: left;
}

.navbar li a {
    display: block;
    color: #333333; /* Color del texto */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar li a:hover {
    background-color: #f2f2f2; /* Cambia el color de fondo al pasar el mouse */
}










