* {
  color: aliceblue;
  text-decoration: none;
  font-family: serif;
}

.boton-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: green;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
  z-index: 1000;
}
.boton-flotante:hover {
  transform: scale(1.1);
  background-color: rgb(0, 222, 0);
}

h1 {
  font-size: 3em;
  text-align: center;
  font-weight: bold;
}

h3 {
  font-size: 2em;
  font-weight: bold;
}

a {
  text-decoration: none;
}
a:hover {
  color: rgb(0, 146, 146);
}

.navegacion {
  font-size: 1.5em;
}

body {
  background-image: url(../img/Fondos/Fondo01.webp);
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: inline-block;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.logo {
  width: 16em;
}

.texto-nav {
  font-size: 5em;
}
.texto-nav:hover {
  color: rgb(0, 146, 146);
}

main {
  flex: 1;
  text-align: center;
  margin: 2em;
}

.ubicacion {
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;
}

.externos {
  width: 100%;
  position: relative;
  display: flex;
  margin-bottom: 2em;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.externos iframe {
  width: 100%;
  height: 30em;
  border: 0;
}

footer {
  text-align: center;
  background-image: url(../img/Fondos/Fondo02.webp);
}

.contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.numeros {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 1em;
}

.numeros a {
  margin: 1em;
}

.direccion, .correo, .celular {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em;
  flex-wrap: wrap;
}

.creditos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

* {
  box-sizing: border-box;
}

.carousel-cell {
  width: 66%;
  height: 20em;
  margin-right: 10px;
  background-image: url(../img/Fondos/Fondo02.webp);
  background-size: cover;
  border-radius: 5px;
  counter-increment: gallery-cell;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;
}

@media (max-width: 760px) {
  body {
    background-image: url(../img/Fondos/Fondo05.webp);
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    margin: 0;
  }
  .externos iframe {
    height: 100%;
  }
  .texto-nav {
    font-size: 2em;
  }
}/*# sourceMappingURL=style.css.map */