:root {
    --color-header: #e9e9e9;
    --color-text: rgb(85, 85, 85);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Noto Sans", sans-serif;
  }
  
  section[id] {
    scroll-margin-top: 175px;
  }
  
  body {
    font-family: "Noto Sans", sans-serif;
    margin-top: 102px;
    margin-bottom: 60px; /* Añadido margen inferior para dejar espacio al footer */
    position: relative;
    min-height: 100vh;
    background-color: #ffffff;
    /* background-color: #f8f8fa; */
  }
  
  /*----------MENÚ---------*/
  
  header {
    width: 100%;
    height: 100px;
    background-color: var(--color-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 7px 3px 13px #00000029;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    transition: padding 0.5s;
  }
  
  .logo {
    order: 0; /* Cambia el orden del logo */
  }
  
  .logo img {
    height: 70px;
  }
  
  .bars {
    display: none;
    cursor: pointer;
  }
  
  .bars .line {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0px;
  }
  
  .nav-bar {
    z-index: 10;
  }
  
  .nav-bar ul {
    display: flex;
  }
  
  .nav-bar ul li a {
    display: block;
    font-size: 16px;
    padding: 10px 25px;
    margin: 0 5px;
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  
  .nav-bar ul li a:hover {
    border-bottom: solid 0.5px rgb(0, 0, 0);
    border-radius: 0px;
    transition: all 0.2s ease 0s;
    font-weight: 800;
    color: #333;
  }
  /*----------GALERIA---------*/
  
  
  .cuotas{
  color: white;
  background-color: black;
  text-align: center;
  padding: 10px;
  font-weight: 900;
}

  
  
  /*--------------------------------NOSOTROS 1------------------------------*/
  
  /*-----------------------------------------------------------------------*/
  
  /*----------PIE DE PAGINA---------*/
  
  footer {
    background-color: #e9e9e9;
    color: var(--color-text);
    text-align: center;
    padding: 20px;
    width: 100%;
    position: absolute;
    bottom: -200;
    border: solid 0.2px #d1d1d1;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .contact-info,
  .social-icons {
    flex: 1;
    text-align: center;
    font-weight: 800;
  }
  
  .social-icons img {
    width: 24px; /* Ajusta el tamaño de los iconos según sea necesario */
    height: 24px;
    margin-right: 10px; /* Añade un pequeño margen entre los iconos */
  }

  .floating-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    /* padding: 10px 20px; */
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    z-index: 4000;
    
  }
  
  .floating-button img {
    width: 50px; /* Ajusta el tamaño de la imagen según tus necesidades */
    /* margin-right: px; Espacio entre el texto y la imagen */
    box-shadow: 0 2px 5px rgba(35, 235, 135, 0.2);
    border-radius: 10px;
  }
  
  /* Estilos adicionales para hacer el footer responsive */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
      font-size: 14px;
    }

    .contact-info,
    .social-icons {
      margin-bottom: 20px;
    }
  
    .social-icons img {
      margin-right: 10px; /* Elimina el margen entre los iconos en pantallas pequeñas */
    }
  
  }
  
  /* Estilos adicionales para hacer la sección "Nosotros" responsive */
  
  @media (max-width: 900px) {
  
  body{
      margin-top: 80px;
  }
      
  
    header {
      padding: 0px 30px;
      height: 80px;
    }
  
    .bars {
      display: block;
      cursor: pointer;
    }
    .bars .line {
      width: 30px;
      height: 3px;
      background-color: black;
      margin: 6px 0px;
    }
  
    .nav-bar {
      height: 100vh;
      position: absolute;
      top: 80px;
      left: -100vw;
      right: 0;
      width: 100vw;
      /* background-color: rgb(235, 235, 235); */
      background-color: rgb(14, 14, 14);
      /* background-color: #fff; */
      transition: left 1.1s, padding 0.5s;
      overflow: hidden;
    }
  
    .nav-bar.active {
      /* height: 100vh; */
      left: 0;
      padding: 0 20px;
    }
  
    .nav-bar ul {
      display: block;
      width: fit-content;
      /* margin: 20px auto 80px auto; */
      margin: 20px auto ;
      text-align: center;
      transition: opacity 0.5s, transform 0.5s;
      /* transition:  0.5s; */
      opacity: 0;
      transform: translateX(-20px);
    }
  
    .nav-bar.active ul {
      opacity: 1;
      transform: translateX(0); /* Muestra el menú con transición */
    }
  
    .nav-bar ul li a {
      margin-bottom: 20px;
      color: white;
    }
  
    .nav-bar ul li a:hover {
      color: rgb(255, 255, 255);
      background-color: none;
      border: 2px solid;
      border-radius: 15px;
    }
  
    .contact-info {
      text-align: center;
    }

   .cuotas{
  color: white;
  background-color: black;
  text-align: center;
  padding: 10px;
  font-weight: 900;
  font-size:9px;
}

  }
  