* {
  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;
}

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

h5 {
  font-size: 1em;
}

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;
}

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

.servicio {
  margin: 1em;
}
.servicio:hover {
  transform: scale(1.2);
}

.img-servicio {
  width: 15em;
}

.boton-interes {
  background-color: rgb(0, 146, 146);
}

.boton-interes a {
  color: aliceblue;
}
.boton-interes a:hover {
  color: black;
}

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

.externos {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.externos iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border: 0;
}

.abonos {
  text-align: start;
}

.servicios-especializados {
  text-align: start;
}

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;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.5rem 1rem;
}
.navbar .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.navbar .navbar-brand span {
  margin-left: 0.5rem;
  white-space: nowrap;
}
.navbar .navbar-logo {
  height: 40px;
  width: auto;
}
.navbar .navbar-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar .navbar-toggle:focus {
  outline: 2px solid white;
}
.navbar .navbar-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .navbar-menu ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  border-radius: 4px;
}
.navbar .navbar-menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 760px) {
  body {
    background-image: url(../../img/Fondos/Fondo05.webp);
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    margin: 0;
  }
  .titulo-superior {
    display: none;
  }
  .externos iframe {
    height: 100%;
  }
  .texto-nav {
    font-size: 2em;
  }
  .navbar-toggle {
    display: block !important;
  }
  .navbar-menu {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
  }
  .navbar-menu ul {
    flex-direction: column;
    gap: 0;
    background-color: rgba(6, 47, 33, 0.804);
    padding: 1rem;
    border-radius: 8px;
  }
  .navbar-menu ul li a {
    display: block;
    padding: 0.75rem 1rem;
  }
  .navbar-menu.active {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */