@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  background-color: #f4f4f6;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.sucursales {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .sucursales {
    flex-direction: column;
  }
}

h1 {
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 3vh 0;
  width: 100%;
  text-align: center;
}

.sucursal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 31%;
  margin: 0 0 5vh 0;
  padding: 1em;
}
@media (min-width: 320px) and (max-width: 900px) {
  .sucursal {
    flex-direction: column;
    width: 100%;
  }
  .sucursal iframe {
    width: 100%;
  }
}

.info-sucursal {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #000000;
  margin-top: 2vh;
  font-family: "Work Sans", sans-serif;
  font-style: italic;
}

.nombre-sucursal {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 320px) and (max-width: 900px) {
  .nombre-sucursal {
    font-size: clamp(1px, 6vw, 5.4rem);
  }
}

@media (min-width: 320px) and (max-width: 900px) {
  .detalles-sucursal {
    font-size: clamp(1px, 4.5vw, 4.05rem);
  }
}

.msj-nosuc {
  width: 100%;
  margin: 10vh 0;
  text-align: center;
}

.msj-nosuc p {
  font-family: "Work Sans", sans-serif;
  font-size: 3em;
  color: #000000;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 900px) {
  .msj-nosuc p {
    font-size: clamp(1px, 4vw, 3.6rem);
  }
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  color: #FFF;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  border-radius: 50px;
  transition: all 300ms ease;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 2px 2px 4px #c9c9c9, -2px -2px 4px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}

.btn-wsp:active {
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 2px 2px 4px rgb(30.152016129, 171.947983871, 83.1217741935), inset -2px -2px 4px rgb(71.1407258065, 222.7592741935, 127.7798387097);
}/*# sourceMappingURL=sucursales.css.map */