@font-face {
  font-family: "MasterQuest";
  src: url(../../fonts/Master-Quest/MastersQuest.woff) format(woff);
}
@font-face {
  font-family: "Paradise";
  src: url(../../fonts/Paradise-Signature/ParadiseSignatureRegular.woff2) format(woff2);
}
body {
  margin: 0;
  font-family: "MasterQuest", sans-serif;
  background: #fefefe;
  color: #222;
}

button {
  background: linear-gradient(#f4bc73, #ed7a76);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button:hover {
  background: linear-gradient(#F98C01, #FF0700);
}

.Inicio {
  margin: 5vh;
}

a {
  text-decoration: none !important;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.principal {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-direction: row;
  overflow: hidden;
}

header {
  background-image: url(../../img/ciudad-de-posadas.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(20px);
  color: white;
  padding: 0;
  text-align: center;
  display: flex;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0.2em);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.nombre {
  font-size: 8vh;
}

.lemas {
  display: flex;
  line-height: 200%;
}

.subtitulo {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.cargo {
  margin: 0 15%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: end;
}

.redes-sociales {
  display: flex;
  padding: 0;
  background: linear-gradient(#F98C01, #FF0700);
  justify-content: space-evenly;
  align-items: center;
  gap: 5em;
  padding: 2rem;
  text-decoration: none;
}

.red-social:hover {
  transform: scale(1.2);
}
.red-social a:hover + .CTA {
  display: block;
}

.CTA {
  color: #fefefe;
  display: none;
  pointer-events: none;
  text-decoration: none;
}

.iconos {
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fefefe;
  font-size: 2em;
}

.redes-sociales a:hover .CTA {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding: 0;
  text-align: center;
}

.nombre-ubicacion {
  font-family: "Paradise";
  font-size: 6vh;
}

h2 {
  font-size: 2em;
}

.fa-solid {
  font-size: 2em;
  color: #3e3e3e;
}

.titulos {
  font-family: "MasterQuest";
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.persona {
  width: 35%;
  max-height: 100%;
  text-align: center;
  filter: drop-shadow(-3em 0px 25px rgba(0, 0, 0, 0.2));
}
.persona:hover {
  transform: translateY(-8px);
}

.propuestas {
  background: linear-gradient(#f4bc73, #ed7a76);
  border-radius: 10px;
  padding: 5vh;
  margin: 5vh 2vh;
}
.propuestas .propuesta {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10vh;
  margin: 5vh 2vh;
  text-align: left;
}
.propuestas .propuesta h3 {
  font-size: 1, 5rem;
  margin-bottom: 1rem;
  color: #000000;
}
.propuestas .propuesta p {
  font-size: 1rem;
  color: #000000;
}

.social {
  margin-top: 2rem;
  text-align: center;
}
.social .iframe-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contacto {
  margin: 2rem 0;
  text-align: center;
}
.contacto .formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contacto .formulario iframe {
  width: 100%;
  max-width: 600px;
  height: 1000px;
  border: none;
  border-radius: 10px;
}

footer {
  background: linear-gradient(#F98C01, #FF0700);
  color: white;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 900px) {
  .nombre {
    font-size: 8vh;
  }
  .principal {
    display: inline-flexbox;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .subtitulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cargo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .persona {
    width: 70%;
    text-align: center;
    filter: drop-shadow(-1em 0px 25px rgba(0, 0, 0, 0.2));
  }
  .persona:hover {
    transform: translateY(-8px);
  }
  .propuestas {
    margin: 5vh 0;
  }
  .propuestas .propuesta {
    margin: 5vh 0;
    padding: 2vh;
  }
}
@media (max-width: 350px) {
  .lemas {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */