* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0px;
     font-family: 'Poppins';
     font-weight: bold;
     overflow-x: hidden;
  }
  /* BARRA DE NAVEGACION */
  .nav {
    height: 130px;
    width: 100%;
    background-image: url("../img/nav_footer/Z_BARRA1.jpg");
    background-size: cover;
    position: relative;
    padding-right: 20px;
  }
  
  .nav > .nav-header {
    display: inline;
  }
  
  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    padding: 10px 10px 10px 10px;
  }
  
  .nav > .nav-btn {
    display: none;
  }
  
  .nav > .nav-links {
    margin-top:70px;
    display: inline;
    float: right;
    font-size: 20px;
    text-transform: uppercase;

  }
  
  .nav > .nav-links > a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    margin-right:40px;
    text-align: center;
  }
  .nav > .nav-links > a:active{
    left: 0;
    
  }
  .nav > .nav-links > a:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: left .5s;
  }
  .nav > .nav-links > a:hover:after {
    left: 0;
    
    }
  .nav > #nav-check {
    display: none;
  }
  @media (min-width:1400px ){
    .nav {
      height: 150px;
      width: 100%;
  }
}
  @media (min-width:1600px ){
    .nav {
      height: 180px;
      width: 100%;
  }
}
  
  @media (max-width:992px) {
	.nav{
z-index:999;
}
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #333;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
    }
    .nav > .nav-links > a {
      display: block;
      width: 100%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
  }

 /*FOOTER*/
 .footer-distributed {
  background: #004DB0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.footer-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px; /* Ajustar el ancho máximo según tus necesidades */
  margin-left: 15%;
}

.footer-left img {
  max-width: 150px;
  margin-right: 20px; /* Reducido de 40px a 20px */
}

.footer-center, .footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-center div, .footer-right div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-center img, .footer-right img {
  width: 44px;
  height: 44px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-center, .footer-right {
    flex-direction: column;
    align-items: center;
  }

  .footer-center div, .footer-right div {
    justify-content: center;
  }

  .footer-center img, .footer-right img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.fixed {
  position: fixed;
}

.bottom-4 {
  bottom: 1rem;
}

.right-4 {
  right: 1rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25D366;
  width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  outline: none;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

.whatsapp-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.5);
}

.phone-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}