@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.bg-black{
    background-color: #1A1A1A;
}

.text-black{
    color: #1A1A1A;
}

.wrapper{
    max-width: 1920px;
    margin: 0 auto;
}

.bg-custom-primary{
    background-color: #26458C;
    background-image: linear-gradient(to bottom, #26458C 0%, #17274B 100%);
}

.navbar-divider .nav-item {
  position: relative;
}

.navbar-divider .nav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.navbar-divider .nav-link {
  color: #fff;
}

.navbar-divider .nav-link:hover {
  text-decoration: underline;
}

.cover-logo {
  position: absolute;
  width: 200px;
  height: 300px;
  top: -10;
  border-radius: 100px;
  background: linear-gradient(to bottom right, #26458C, #17274B);
  transform: rotate(-35deg);
  transform-origin: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cover-logo .navbar-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transform: rotate(35deg);
  padding: 30px;
}

.navbar-brand img{
  max-width: 100px;
  height: auto;
}

.logo-mobile{
  width: 70px;
}

.button{
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
}

.button:hover{
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.button-light{
  background-color: #FFFFFF;
  color: #000000;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
}

.button-light:hover{
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.btn-whatsapp{
  background-color: #137524;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
}

.btn-whatsapp:hover{
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

/* HERO SECTION */

.hero{
    height: auto;
    background-size: cover;
}

.logo-hero{
    width: 100px;
}

.cover-foto-hero img{
    max-height: 410px;
}

/* SECTION 2 */

.section-2{
    background-color: #F4F4F4;
}

.product-categories .nav-item{
  border-bottom: 1px solid #000000;
  margin: 0 10px;
}

.product-categories .nav-item .nav-link {
  color: #000000;
}

.product-categories .nav-item .active {
  font-weight: 600;
  background: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
}

/* SECTION 6 */

.section-6{
    background-image: url('../images/bg-section-6.webp');
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
}

.cover-text-underlined{
  width: max-content;
  border-bottom: 1px solid #000000;
}

footer{
  background-color: #F4F4F4;
}

footer h5{
  font-weight: bold;
}

.end-footer{
    background-image: linear-gradient(to bottom, #26458C 0%, #17274B 100%);
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .cover-logo {
        transform: translateY(-100px) rotate(-35deg);
        opacity: 0;
    }

    
}

@media (min-width: 1200px) {
    .cover-logo {
        transform: translateY(0) rotate(-35deg);
        opacity: 1;
    }
    .dropdown-desktop {
      left: -85px !important;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    /* .cover-foto-hero img{
        max-height: 100px !important;
    } */
     .hero{
        height: 600px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
  
  .hero{
        height: 500px;
  }
}

@media (max-width: 575px) {
  .hero{
        height: auto;
  }

  .cover-logo-hero{
    padding: 10px 0 !important;
  }

  .cover-foto-hero{
    align-items: center;
    text-align: center;
  }

  .cover-foto-hero img{
      max-width: 200px !important;
      margin-bottom: 10px;
  } 

    .section-6{
      height: auto;
      padding: 30px 0;
  }
}