/* MAPS */
body {
  min-height: 100vh;
}

.section-mapa {
  display: flex;
  flex-wrap: wrap;
  margin: 100px 50px;
  justify-content: center;
}

.maps {
  filter: grayscale(100%) invert(500%) contrast(80%);
  width: 60%;
  min-width: 500px;
}

.section-mapa .detalles-maps {
  text-align: center;
  width: 30%;
  min-width: 550px;
  margin: auto;
}

.section-mapa .detalles-maps h3 {
  margin-top: 30px;
  font-size: 20px;
  font-family: 'Roboto';
}

.section-mapa .detalles-maps h2 {
  margin: 20px auto;
  font-size: 40px;
  font-family: 'Roboto';
}

.section-mapa .detalles-maps p,
.section-mapa .detalles-maps .span-ubication {
  font-size: 20px;
  color: rgb(80, 80, 80);
  margin-bottom: 5px;
  font-family: 'Roboto';
}

.detalles-maps .span-whatsapp {
  display: block;
  font-weight: bold;
  margin: 20px auto;
  font-size: 25px;
  font-family: 'Roboto';
}

.container-whatsapp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.container-whatsapp a {
  box-shadow: 0 0 5px black;
  border-radius: 25px;
  background-color: var(--primary);
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 40px;
  margin: 10px auto;
  font-family: 'Roboto';
  font-weight: 400;
  transition: transform 0.3s ease;
}

.container-whatsapp a:hover{
  transform: scale3d(1.03,1.03,1.03);
}

.container-whatsapp a img {
  width: 20px;
  margin-right: 10px;
  filter: invert(100%);
}

.container-whatsapp a .container-w-span {
  margin: auto 0;
  font-size: 20px;
  color: rgb(0, 0, 0);
  transition: color 0.3s ease;
}
.container-whatsapp a:hover .container-w-span{
  color:white;
}
.container-whatsapp a:hover img{
  filter: invert(0%);
}






footer {
  height: 210px;
  background: linear-gradient(to bottom, rgb(12, 12, 12), var(--gray4));
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
}

.logo-footer {
  width: 20%;
  max-width: 300px;

}

.logo-footer img {
  width: 100%;
}

footer p {
  color: white;
  font-size: 20px;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: center;
}



ul {
  list-style: none;
}

.example-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.example-1 .icon-content {
  margin: 0 10px;
  position: relative;
}

.example-1 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Roboto',sans-serif;
}

.example-1 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -40px;
}

.example-1 .icon-content .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-1 .icon-content .link:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-1 .icon-content .link svg {
  width: 30px;
  height: 30px;
}

.example-1 .icon-content:hover a[data-social="correo"]{
  background-color: red;
}
.example-1 .icon-content:hover a[data-social="facebook"]{
  background-color: rgb(0, 89, 255);
}
.example-1 .icon-content:hover a[data-social="Whatsapp"]{
  background-color: rgb(17, 255, 0);
}
.example-1 .icon-content:hover a[data-social="Tiktok"]{
  background-color: rgb(0, 0, 0);
}
.example-1 .icon-content:hover .iconf{
  filter: invert(100%);
}
.social-footer .example-1 .icon-content .iconf{
  height: 23px;
  transition: filter 0.3 ease;

}

@media (max-width:955px) {
  footer {
    height: 230px;
    flex-direction: column;
  }

  .logo-footer {
    width: 30%;
    max-width: 300px;
  }

  .logo-footer img {
    width: 100%;
  }

  footer p {
    font-size: 17px;
    margin-bottom: 10px;

  }

}

@media (max-width:1490px) {
  .maps {
    width: 100%;

  }

  .section-mapa .detalles-maps {

    width: 100%;
  }

  .section-mapa {

    margin: 20px auto;

  }
}