html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

header {
  text-align: center;
}

img {
  margin: 1rem auto;
  display: block;
}
time {
  font-weight: 600;
}

.content {
  margin: 5rem auto;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    justify-content: center;
  }
}

.col {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border: 0.1rem solid black;
  border-radius: 0.5rem;
}

.ubicacion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ubicacion p {
  margin: 0;
}

.ubicacion-mapa {
  width: 100%;
}

.ubicacion-mapa iframe {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.tel {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  a {
    display: flex;
    align-items: center;
    gap: 1rem;

    img {
      margin: 0;
      max-width: 2.4rem;
    }
  }
}

/* tarifas */
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 120rem;
}

.tarifas {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.tarifas-container {
  padding: 1rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.1rem solid black;
  border-radius: 1rem;
}

.tarifa {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.mapa {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.info h3 {
  max-width: 20rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .info h3 {
    max-width: 50rem;
  }
}

.precio {
  font-weight: 900;
}

.extra-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer {
  padding: 2rem 0;
  background-color: black;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

footer .container a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}

footer .container a:hover {
  transform: scale(1.1);
}

footer .container a:hover::before {
  width: 100%;
}

footer .container a::before {
  content: "";
  width: 0%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
