@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
/* ------ MIXINS ------- */
/* colores */
/* fuentes */
/* efectos */
/* ------ QUERIES ------- */
@media (max-width: 524px) {
  html {
    font-size: 10px;
  }
  .banner-main {
    height: 25vh;
  }
  .--main-resaltado {
    min-height: 25vh;
  }
}

@media (min-width: 525px) and (max-width: 767px) {
  html {
    font-size: 12px;
  }
  .banner-main {
    height: 30vh;
  }
  .--main-resaltado {
    min-height: 22vh;
  }
  .--mesa .--puesto {
    display: none;
  }
  .--main-cuerpo {
    width: 90% !important;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  html {
    font-size: 14px;
  }
  .banner-main {
    height: 38vh;
  }
  .--main-resaltado {
    min-height: 25vh;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  html {
    font-size: 16px;
  }
  .banner-main {
    height: 46vh;
  }
  .--main-resaltado {
    min-height: 30vh;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
  .banner-main {
    height: 68vh;
  }
  .--main-resaltado {
    min-height: 40vh;
  }
}

/* ------ ESTRUCTURALES ------- */
.content {
  max-width: 1200px;
  margin: 0 auto;
}

.full-width {
  width: 100%;
}

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

body, html {
  height: 100%;
  margin: 0;
  background-color: #FFF;
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  background: linear-gradient(180deg, white 0%, white 50%, #EEDDC4 80%);
}

/* elementos estructurales flex */
.flex-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-rw {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-flow: row;
}

.flex-col {
  display: flex;
  flex-flow: column;
}

.flex-right {
  justify-content: flex-end;
}

.flex-left {
  justify-content: flex-start;
}

.flex-top {
  align-items: flex-start;
  align-content: flex-start;
}

.flex-item {
  display: flex;
}

.content {
  margin: 0 auto;
  width: 94%;
  max-width: 1200px;
}

footer {
  background-color: #844098;
  color: white;
}

/* ------ ESTILOS ------- */
/* --- HEADER --- */
header {
  padding: 0.5rem 0 1em 0;
  background: linear-gradient(180deg, #EEDDC4 0%, white 50%);
}

.--header-logo {
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #844098;
  padding-bottom: 1rem;
}

.--header-logo img {
  max-height: 15vh;
}

/* NAVBAR */
.navbar {
  padding: 0.5rem 0;
}

.-nav_menu {
  text-transform: uppercase;
  font-family: 'Mukta', sans-serif;
}

.-nav_menu .--nav_link a {
  text-decoration: none;
  color: #844098;
  font-weight: 600;
  font-size: 1.2rem;
}

.-nav_menu .--nav_link a:hover {
  transition-property: all;
  -moz-transition-property: all;
  /* Firefox 4 */
  -webkit-transition-property: all;
  /* Safari and Chrome */
  -o-transition-property: all;
  /* Opera */
  transition-duration: 0.600s;
  -webkit-transition-duration: 0.600s;
  color: #e29ff7;
}

/* --- CONTENIDO --- */
main {
  padding-bottom: 4rem;
}

main p, main ol, main ul {
  font-family: 'Nunito Sans', sans-serif;
}

main h2, main h3, main h4 {
  font-family: 'Mukta', sans-serif;
  color: #844098;
  text-align: center;
  line-height: 1.4em;
}

main h2 {
  font-size: 2.4rem;
  margin: 2rem 0 1rem 0;
}

main h3 {
  font-size: 2rem;
  margin: 1rem 0;
}

main h4 {
  font-size: 1.6rem;
  margin: 1rem 0 0.5rem 0;
}

main p {
  line-height: 1.3em;
  margin: 0.5em 0 1em 0;
}

main .--bajada {
  font-size: 1.6rem;
  font-weight: 600;
}

main ol, main ul {
  line-height: 1.4rem;
}

main a {
  font-weight: 800;
  color: #844098;
}

main a:hover {
  transition-property: all;
  -moz-transition-property: all;
  /* Firefox 4 */
  -webkit-transition-property: all;
  /* Safari and Chrome */
  -o-transition-property: all;
  /* Opera */
  transition-duration: 0.600s;
  -webkit-transition-duration: 0.600s;
  color: #e29ff7;
}

main .comisiones p {
  text-align: center !important;
}

.banner-main {
  width: 100%;
  overflow: hidden;
}

.banner-main .--carousel {
  width: 100%;
  position: relative;
}

.banner-main .--carousel .--slider-secc {
  position: absolute;
  opacity: 0;
  animation: fadeAnimation 25s infinite;
}

.banner-main .--carousel .--slider-secc img {
  width: 100%;
  object-fit: cover;
  height: auto;
  display: block;
}

.banner-main .--carousel .fade1 {
  animation-delay: 0s;
}

.banner-main .--carousel .fade2 {
  animation-delay: 5s;
}

.banner-main .--carousel .fade3 {
  animation-delay: 10s;
}

.banner-main .--carousel .fade4 {
  animation-delay: 15s;
}

.banner-main .--carousel .fade5 {
  animation-delay: 20s;
}

/* Animacion infinita */
@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.--main-resaltado {
  font-family: 'Mukta', sans-serif;
  color: white;
  background: url(../images/llamada_bg.jpg) center #844098;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.--main-resaltado .--cont_resaltado {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 2rem;
}

.--main-resaltado .--cont_resaltado p {
  font-size: 2rem;
  font-style: italic;
  text-align: center;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0;
}

/* --- CONCEPTOS --- */
.--main-conceptos {
  text-align: center;
}

.--conceptos {
  flex-wrap: wrap;
}

.--conceptos .---bloque-concepto {
  display: flex;
  flex-flow: column;
  flex-basis: 30%;
  max-width: 270px;
  align-items: center;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.--conceptos .---bloque-concepto .--concepto-thumb img {
  max-width: 90%;
}

.--conceptos .---bloque-concepto .--concepto-titulo {
  padding: 1rem 0;
  font-family: 'Mukta', sans-serif;
  color: #844098;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1em;
  text-align: center;
}

/* --- MESA DIRECTIVA --- */
.--mesa .-integrante {
  display: flex;
  flex-flow: column;
  align-items: center;
  flex-grow: 1;
  flex: 0 0 22%;
  gap: 0.4rem;
}

.--mesa .-integrante .--retrato img {
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.--mesa .-integrante .--nombre {
  font-family: 'Mukta', sans-serif;
  color: #844098;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.05em;
}

.--mesa .-integrante .--nombre .cargo {
  font-family: 'Nunito Sans', sans-serif;
  color: #000;
  font-size: 0.9rem;
  font-style: italic;
}

.--mesa .-integrante .--puesto {
  font-size: 0.7rem;
  line-height: 1.1em;
}

.--mesa .-integrante .--puesto p {
  margin: 0;
}

.--mesa.-top {
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}

.--mesa.-sec {
  flex-wrap: wrap;
}

.--mesa.-sec .-integrante {
  margin-bottom: 1rem;
}

/* --- VIDEOS ---- */
.--main-videos {
  text-align: center;
}

/* --- PIE --- */
footer {
  font-family: 'Mukta', sans-serif;
  padding: 2rem 2rem 1rem 2rem;
}

footer .--footer-container {
  justify-content: space-between;
}

footer .--footer-logo img {
  max-height: 12vh;
}

footer .--footer-contacto {
  text-align: right;
  justify-content: space-evenly;
}

footer .--footer-contacto .---invita {
  font-weight: 600;
  font-size: 1.2rem;
}

footer .--footer-contacto a {
  color: white;
  font-weight: 600;
}

footer .--footer-contacto a:hover {
  color: #e29ff7;
}

footer p {
  margin: 0;
  line-height: 1.1em;
}

footer .--footer-whats {
  justify-content: end;
  align-items: center;
}

footer .--footer-whats img {
  max-height: 1.2rem;
  margin-right: 5px;
}

/*# sourceMappingURL=estilos.css.map */
