* {
  color: aliceblue;
  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 {
  font-size: 2em;
  font-weight: bold;
}

h3 {
  font-size: 1em;
}

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

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

.equipo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  flex-wrap: wrap;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumb.active {
  border: 2px solid #3498db;
}

.imagen-central img {
  width: 35em;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.info {
  max-width: 15em;
}

.info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info pre {
  text-align: start;
  white-space: pre-wrap;
  font-size: 1rem;
  color: #ffffff;
}

.formularios {
  padding: 2em;
  text-align: center;
}

.contenedor-extensiones {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  align-items: flex-start;
}

.contenedor-extensiones article {
  flex: 1 1 400px;
  max-width: 600px;
}

.externos {
  width: 100%;
  max-height: 100%;
  overflow: auto; /* permite scroll si lo necesita */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Aplicar solo al iframe embebido (Google Form) */
.externos iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* Calendly: widget incrustado */
.externos .calendly-inline-widget {
  width: 100%;
  min-height: 700px;
}

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

header {
  align-items: center;
  justify-items: center;
  text-align: center;
}

.logo {
  width: 16em;
}

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

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

.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) {
  .externos iframe, .externos .calendly-inline-widget {
    height: 800px;
  }
  body {
    background-image: url(../../img/Fondos/Fondo05.webp);
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    margin: 0;
  }
  .titulo-superior {
    display: none;
  }
  .thumbnails {
    flex-direction: row;
  }
  .equipo-container {
    justify-content: center;
  }
  .imagen-central img {
    width: 80%;
    height: auto;
  }
  .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 */