html, body {
    overflow-x: hidden;
    width: 100%;
}

.section {
    max-width: 100vw;
    overflow-x: hidden; 
}

/* first section */

.img-first-section{
    min-width: 250px;
    margin-left: 40px;
}

@media (max-width: 767.98px) {
    #home .desktop-left,
    #home .desktop-right {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
  
    #home .store-btn-group {
        justify-content: center !important;
    }

    .img-first-section{
        min-width: auto;
        margin-left: 0px !important;
    }
  }

  /* section about us */

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px; 
}

.icon-img {
    width: 65px;
    height: 65px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* A partir de 1024px (Desktop) */
@media (min-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .icon-img {
        width: 80px; 
        height: 80px;
    }
}

/* FOOTER LINKS  */

.custom-menu-link {
    color: white;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease 0s;
    box-shadow: none;
  }
  
  .custom-menu-link:hover,
  .custom-menu-link:focus {
    color: #d3d3d3;
    text-decoration: none;
    outline: none;
    box-shadow: none;
  }
  