body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
  }

/* Sección-1 */

  /* Nav */
  .logo-img {
    max-height: 40px;
    margin-left: 50px;
  }
  
  .header-section {
    position: relative; /* Aseguramos que los elementos hijos se posicionen correctamente */
    background-image: url('images/bg-hero-urbania.jpg');
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}

.header-section::after {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}
  
  .navbar-custom {
    margin-top: -70px; 
}

.navbar-scrolled {
  background-color: black; /* Cambia el color de fondo cuando el navbar es scroll */
}


  #hero-section{
    margin-top: 50px;
    margin-bottom: 125px;
    margin-left: 300px;
    position: relative; 
    z-index: 2; 
  }

  #h1-header{
    font-size: 62px;
    font-weight: bold;
    text-align: center;
  }

  #h3-header{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
  }

  /* Btns header*/
  #btn-wspp-header{
    background-color: #8BC336;
    border-color: transparent;
    border: none;
    border-radius: 7px;
    margin-top: 10px;
    margin-right: 50px;
    padding: 10px;
    width: 150px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 13px;
  }

  #btn-wspp-header1{
    background-color: #8BC336;
    border-color: #8BC336;
    border-radius: 7px;
    margin-right: 20px;
    padding: 10px;
    width: 150px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 13px;
  }

  #btn-wspp-header:hover{
    background-color: #25D366;
    border-color: #25D366;
  }

  #btn-wspp-header1:hover{
    background-color: #25D366;
    border-color: #25D366;
  }
    
  #btn-pointer-header{
    color: white;
    border-color: white;
    border-radius: 7px;
    margin-top: 0px;
    padding: 10px;
    width: 150px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 13px;
    height: 39px;
  }

  #btn-pointer-header:hover{
    background-color: transparent;
    border-width: 2px;
  }

  .icons-nav{
    height: 25px;
    margin-left: 5px;
  }

  .icons-nav-w{
    height: 25px;
    margin-left: 5px;
  }

  /* Flotante Whatsapp */
  .btn-wsp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #8BC336;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .btn-wsp:hover{
    text-decoration: none;
    color: #ffffff;
    background: #0df053;
  }

/* Sección-2 */

  #seccion-2{
    background-color: black;
  }

    /* Carrusel */
    
    @keyframes slide{
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }  

    .carru-logos{
      overflow: hidden;
      background: white;
      white-space: nowrap;

    }

    .slide-logos {
      animation: 50s slide infinite linear;
      display: inline-block;
    }

    .slide-logos img{
      height: 40px !important;
      margin: 0 20px;
    }


    /* Beneficios y promos */ 
    #titu-sub-beneYpromo{
      font-family: 'Montserrat', sans-serif;
      text-align: center;
      color: white;
      margin-top: 50px;
      font-size: 48px;
    }
  
    #titu-beneficios{
      font-size: 48px;
      font-weight: 500;
    }

    #sub-titu-beneficios{
      font-size: 30px;
    }

    .card{
      background-color: black  !important;
      margin-top: 50px;
      color: white;
      margin-bottom: 50px;
    }

    .card-img-top{
      align-items: center !important;
      margin-left: 130px;
    }

    .card-body{
      text-align: center;
    }

    .card-title{
      font-weight: 500;
      font-size: 28px;
    }

    .card-text{
      font-size: 15px;
    }

    #div-social-icons{
      margin-left: 500px;
    }


    /* Gallery */ 
    #container-gallery{
      margin-bottom: 100px;
    }

    .gallery-container {
      background-color: black;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin: 20px;
      align-items: center;
      text-align: center;
      margin-top: 50px;
    }

    .gallery-item {
      width: 350px;
      height: 350px;
      margin-bottom: 5px;
      position: relative;
      display: inline-block;
    }

    .overlay {
      margin-bottom: 135px;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background-color: rgba(0, 0, 0, 0.7); /* Color oscuro con opacidad del 50% */
      color: white; /* Color del texto */
      padding: 10px; /* Ajusta el relleno según sea necesario */
      box-sizing: border-box; /* Incluir el padding en el ancho y alto del div */
      z-index: 1; /* Coloca la capa oscura sobre la imagen */
      display: flex; /* Usa flexbox para alinear verticalmente */
      align-items: center; /* Centra verticalmente el contenido */
      justify-content: center; /* Centra horizontalmente el contenido */
      text-align: center; /* Centra el texto horizontalmente */
    }
  
    .overlay-text {
      z-index: 2; /* Coloca el texto sobre la capa oscura */
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
    }

    @media (max-width: 992px) {
      .gallery-item {
        width: calc(33.33% - 20px);
      }
    }

    @media (max-width: 768px) {
      .gallery-item {
        width: calc(50% - 20px);
      }
    }

    @media (max-width: 576px) {
      .gallery-item {
        width: 100%;
      }
    }

    #titu-sub-gallery{
      background-color: black;
      text-align: center;     
      margin-top: 50px;
      font-family: 'Montserrat', sans-serif;
      color: white;

    }

    #titu-gallery{
      font-size: 48px;
      font-weight: 500;
    }

    #subtitu-gallery{
      font-size: 30px;
    }


    /* Img y Form 2 */ 
    #form-2{
      color: white;
    }

    #titu-form-2{
      font-family: 'Montserrat', sans-serif;
      font-size: 48px;
      font-weight: 500;
      color: white;
    }

    #sub-titu-form-2{
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 300;
      color: white;
    }

    #btn-form-2{
      width: 163px;
      height: 56px;
    }

    /* Footer */ 
    .footer-section{
      margin-top: 50px;
      color: white;
    }

    .footer-text{
      font-size: 10px;
      margin-top: -3000px;
    }


    /* Responsive Mobile */ 
    @media screen and (max-width: 430px) and (max-height: 932px) {

      /* Hero section - Nav- Logo - Header */ 
      #hero-section{
        margin-top: 100px;
        margin-left: 0px;
        height: 400px;
      }

      .logo-img {
        max-height: 40px;
        margin-left: 60px;
        height: 30px;
      }

      #h1-header{
        font-size: 42px;
        text-align: center !important;
      }
    
      #h3-header{
        font-size: 15px;
        text-align: center !important;
      }


      /* Btns header*/
      #btn-wspp-header1{
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 35px;
        margin-top: 35px;
        font-size: 13px;
      }


      #btn-pointer-header{
        margin-top: 37px;
        margin-bottom: 35px;
        margin-right: 15px;
        height: 40px;
      }




      /* Beneficio y promos */
      #titu-beneficios{
        font-size: 34px;
      }
  
      #sub-titu-beneficios{
        font-size: 15px;
      }
      
      .card-img-top{
        align-items: center !important;
        margin-left: 165px;
      }
  
      .card-body{
        text-align: center;
      }
  
      .card-title{
        font-weight: 500;
        font-size: 25px;
      }
  
      .card-text{
        font-size: 15px;
      }
      

      .div-icons-1{
        margin-left: 20px;
      }

      #div-social-icons{
        margin-left: -130px;
      }

      #div-social-icons{
        display: none;
      }


      /* Gallery */
      #titu-gallery{
        font-size: 34px;
      }
  
      #subtitu-gallery{
        font-size: 15px;
      }
  


     

      /* Footer */
      .footer-section {
        background-color: #000000; 
        padding: 20px 0;
      }

      .footer-section .footer-text {
        font-size: 14px; 
        margin-bottom: 20; 
      }

      .footer-section .social-icon {
        width: 30px; 
        height: auto; 
        margin-bottom: 10px; 
      }

       /* Fin responsive mob */
    }