/* ---------------------- Estilos Generales ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --kalam: "Kalam", cursive;
  --roboto: "Roboto", sans-serif;
  --primary_clr: #866640;
  --brown-dark: #802402;
  --brown-basic: #6d4616;
  --brown-basic-menu: #866640;
  --brown-light: #a36822;
  --brown-very-light: #c5a15b;
  --brown-background: #eee4d1;
  --orange-light: #ffce8b;
  --black-basic: #333333;
  --black-indice: #282828;
  --gray-basic: #f0f0f0;
  --gray-light: #f9f9f9;
  --padding-container: 1.5rem 0;
}
body {
  font-family: var(--roboto);
  background-color: var(--gray-light);
  color: var(--black-basic);
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  padding: var(--padding-container);
}
.cabecera_title {
  color: var(--orange-light);
  font-weight: 400;
  font-size: 1.9rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.cabecera_subtitle {
  font-family: var(--kalam);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gray-basic);
  padding-bottom: 1rem;
}
.construccion__container {
  height: 800px;
}
.construccion__title {
  text-align: center;
}
.img__ico {
  width: 100%;
  display: block;
}
.img__ico.imgSwiperPrensa {
  width: 100%;
  display: block;
  height: 209px;
}
.line {
  width: 100%;
  height: 1px;
  background-color: var(--black-basic);
  margin-bottom: 2rem;
}
.paragraph__colored {
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  color: var(--brown-basic);
  line-height: 1.5rem;
}
.paragraph__colored--bold {
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  color: var(--brown-basic);
  line-height: 1.5rem;
}
.paragraph__basic {
  /*font-size: 1.2rem;
  padding-bottom: 1rem;*/
  line-height: 1.6rem;
  text-align: justify;
  padding: 0.5em;
}
.paragraph__basic--bold {
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.5rem;
}
.colored__brown--verylight {
  color: var(--brown-very-light);
  font-family: var(--kalam);
  font-weight: bold;
  font-size: 1.3rem;
}
.colored__brown--basic {
  color: var(--brown-basic);
  font-weight: bold;
}
.subtitle__brown--basic {
  color: var(--brown-basic);
  font-size: 1.4rem;
  font-family: var(--kalam);
  font-weight: bold;
  margin-bottom: 1rem;
}
.subtitle__brown--dark {
  color: var(--brown-dark);
  font-size: 1.4rem;
  font-family: var(--kalam);
  font-weight: bold;
  margin-bottom: 1rem;
}
.title__black {
  color: var(--black-basic);
  font-size: 1.5rem;
  font-family: var(--kalam);
  font-weight: bold;
  padding-top: 1.3rem;
}
/* ----- Header - Menu - Phone ----- */
.datos {
  display: none;
}
.hero__agenda {
  display: none;
}
.hero__logo {
  width: 55%;
  max-width: 250px;
}
.menu {
  background-color: var(--gray-light);
  color: var(--orange-light);
  height: 70px;
}
.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
.menu__links {
  z-index: 300;
  height: 100%;
  transition: transform 0.5s;
  display: flex;
  justify-content: center;
  padding: 0.3rem;
}
.menu__item {
  list-style: none;
  position: relative;
  height: 100%;
  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
}
.menu__item:hover {
  --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  --transform: rotate(0);
}
.menu__link {
  color: var(--gray-basic);
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 20px;
}
.menu__link:hover {
  color: var(--orange-light);
}
.menu__arrow {
  transform: var(--transform);
  transition: transform 0.3s;
  display: block;
  margin-left: 3px;
}
.menu__nesting {
  list-style: none;
  transition: clip-path 0.3s;
  clip-path: var(--clip);
  position: absolute;
  right: 0;
  bottom: 0;
  width: max-content;
  transform: translateY(100%);
  background-color: var(--brown-basic-menu);
  border: solid 1px var(--brown-basic-menu);
}
.menu__link--inside {
  padding: 20px 20px 20px 20px;
}
.menu__link--inside:hover {
  color: var(--pink-dark);
}
.menu__hamburguer {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}
.menu__img {
  display: block;
  width: 36px;
}
@media (max-width: 992px) {
  .menu__hamburguer {
    display: flex;
  }
  .menu__item {
    --clip: 0;
    overflow: hidden;
  }
  .menu__item--active {
    --transform: rotate(0);
    color: var(--pink-dark);
  }
  .menu__item--show {
    background-color: var(--pink-light-very);
    opacity: 0.95;
  }
  .menu__links {
    z-index: 300;
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 70px;
    bottom: 0;
    right: 0;
    background-color: var(--brown-basic-menu);
    opacity: 0.95;
    overflow-y: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }
  .menu__links--show {
    transform: unset;
    width: 100%;
  }
  .menu__link {
    padding: 25px 0;
    padding-left: 30px;
    height: auto;
  }
  .menu__arrow {
    margin-left: auto;
    margin-right: 20px;
  }
  .menu__nesting {
    display: grid;
    position: unset;
    width: 100%;
    transform: translateY(0);
    height: 0;
    transition: height 0.3s;
  }
  .menu__link--inside {
    width: 90%;
    margin-left: auto;
    border-left: 1px solid var(--orange-light);
  }
}
/* ----- Header - Menu - Desktop ----- */
@media (min-width: 992px) {
  .datos {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.3rem 1.5rem;
    background-color: var(--brown-dark);
    color: var(--gray-basic);
    font-size: 12px;
  }
  .datos__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
  }
  .datos__container--redes {
    gap: 5px;
  }
  .datos__img {
    width: 10%;
  }
  .datos__img--location {
    width: 2.3%;
  }
  .datos__img--redes {
    width: 30%;
  }
  .menu {
    height: 8rem;
    width: 100%;
  }
  .menu__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin-top: 1.5rem;
  }
  .logo__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-bottom: 1rem;
  }
  .link__agenda {
    text-decoration: none;
    color: var(--brown-dark);
  }
  .hero__agenda {
    display: flex;
    align-items: center;
    gap: 2px;
    border: solid 1px var(--brown-dark);
    padding: 0.4rem;
    border-radius: 1rem;
  }
  .agenda__img {
    width: 15%;
  }
  .agenda__text {
    font-family: var(--kalam);
    font-size: 18px;
    font-weight: 700;
  }
  .menu__links {
    z-index: 300;
    width: 100%;
    background-color: var(--brown-light);
  }
  .agenda__img--cal {
    display: block;
    width: 100%;
  }
}
/* ----- Footer  - Phone ----- */
.footer {
  background-color: var(--brown-dark);
  padding: 50px 0;
  color: var(--gray-light);
}
.footer__container {
  width: 90%;
  font-size: 1.1rem;
  margin: 0 auto;
}
.contacto {
  width: 95%;
  margin: 0 auto;
}
.contacto__container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 6px;
}
.contacto__container--location {
  gap: 1px;
}
.contacto__img {
  width: 7%;
}
.contacto__img--email {
  width: 8%;
}
.contacto__img--location {
  width: 9%;
}
.contacto__ico {
  width: 100%;
  display: block;
}
.contacto__text {
  color: var(--gray-light);
}
.datos__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.datos__container--ubicacion {
  gap: 0.5px;
}
.datos__img--loguito {
  width: 12%;
}
.logito__link--text {
  font-size: 1.2rem;
  text-align: center;
  margin: 1.3rem 1rem;
}
.logito__link--text1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 1.3rem 1rem;
}
/* -------------------- Footer - Tablet -------------------- */
@media (min-width: 768px) {
  .footer {
    padding: 45px 0 25px;
  }
  .footer__container {
    width: 100%;
    display: grid;
    grid-template-columns: 75% 25%;
    justify-content: space-between;
  }
  .contacto {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .contacto__img {
    width: 8%;
  }
  .contacto__img--email {
    width: 12%;
  }
  .contacto__img--location {
    width: 4%;
  }
  .logito__link--text {
    text-align: center;
    margin: 0 1.3rem 0.5rem;
  }
  .logito__link--text1 {
    text-align: center;
    margin: 0.5rem 1.3rem 1rem;
  }
}
/* -------------------- 01_Principal - Phone -------------------- */
/* ----- Header - Animacion ----- */
.slider-box {
  overflow: hidden;
}
.slider-box--vineta {
  display: flex;
  padding: 0;
  width: 400%;
  animation: slide 25s infinite alternate ease-in-out;
}
.slider-box--opcion {
  width: 100%;
  list-style: none;
  position: relative;
}
.hero__animacion1 {
  background-image: url("../01_principal/img_animacion1_phone.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: right;
}
.hero_title {
  text-align: right;
  padding-top: 3.8rem;
  font-size: 1.2rem;
  color: white;
  padding-bottom: 1rem;
  opacity: 0;
}
.hero__subtitle {
  text-align: right;
  font-family: var(--kalam);
  font-size: 1.1rem;
  color: white;
  padding-bottom: 1.5rem;
  opacity: 0;
}
.hero__texts.container{
  height: 200px;
}
.hero__animacion2 {
  background-image: url("../01_principal/img_animacion2_phone.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: right;
}
.hero_title2 {
  text-align: right;
  padding-top: 3.8rem;
  font-size: 2rem;
  color: var(--black-indice);
  padding-bottom: 0.5rem;
  opacity: 0;
}
.hero__subtitle2 {
  text-align: right;
  font-family: var(--kalam);
  font-size: 1.8rem;
  color: var(--black-indice);
  padding-bottom: 0.8rem;
  opacity: 0;
}
.hero__animacion3 {
  background-image: url("../01_principal/img_animacion3_phone.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: right;
}
.hero_title3 {
  text-align: right;
  padding-top: 3.8rem;
  font-size: 1.7rem;
  color: #fdf0c8;
  padding-bottom: 1rem;
  opacity: 0;
}
.hero__subtitle3 {
  text-align: right;
  font-family: var(--kalam);
  font-size: 1.6rem;
  color: #fdf0c8;
  padding-bottom: 1.7rem;
  opacity: 0;
}
@keyframes slide {
  0% {
    margin-left: 0;
  }
  20% {
    margin-left: 0;
  }
  25% {
    margin-left: -100%;
  }
  45% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  70% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  100% {
    margin-left: -300%;
  }
}
/* ----- Main Index Container */
.proximamente__container {
  grid-area: proximamente;
}
.index__title {
  text-align: center;
  padding-bottom: 1rem;
}
.index__title__text {
  color: var(--black-basic);
  text-align: center;
  font-size: 2rem;
  font-family: var(--kalam);
  font-weight: bold;
  padding-top: 1rem;
}
.index__title__picture {
  width: 175px;
  margin: 0 auto;
}
.index__title__img {
  width: 100%;
  display: block;
}
/*----- Inicio Swiper -----*/
.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content {
  margin: 0 40px;
}
.card {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(196, 196, 196, 1);
  border-radius: 15px;
  box-shadow: 0px 4px 4px rgba(196, 196, 196, 0.25);
  font-size: 16px;
  padding: 0.5rem;
  width: 270px;
  height: 560px;
}
.card__img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.card__date {
  color: var(--brown-basic);
  margin-top: 15px;
  margin-bottom: 5px;
}
.card-title {
  color: var(--brown-basic);
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.card-description {
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-description .card-title,
.card-description .card-text {
  margin-bottom: 0.5rem;
}
.card-description .card-link {
  text-align: center;
}
.card-description .card-link a {
  text-decoration: none;
  color: var(--brown-basic);
  text-align: center;
  font-family: var(--kalam);
  font-size: 15px;
  font-weight: bold;
}
.card-invitacion {
  color: var(--brown-basic);
  text-align: center;
  font-family: var(--kalam);
  font-size: 15px;
  font-weight: bold;
}
.swiper-button-next {
  right: 5px !important;
  color: var(--brown-dark);
  font-weight: bold;
}
.swiper-button-prev {
  left: 5px !important;
  color: var(--brown-dark);
  font-weight: bold;
}
.slide-container.swiper{
    padding: 40px 25px;
}
/*----- Fin Swiper -----*/
.prensa__container {
  grid-area: prensa;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.index__title--prensa {
  padding-top: 3rem;
  text-align: center;
  padding-bottom: 2rem;
}
.publicidad__container {
  display: none;
}
.boton__container {
  text-align: center;
}
.card__cta1 {
  display: inline-block;
  background-color: var(--brown-dark);
  color: #fff;
  text-decoration: none;
  padding: 15px 33px;
  font-weight: 300;
  border-radius: 10px;
}
/* ----- Main - Motivos ----- */
.motivos {
  padding-top: 3rem;
  background-color: var(--gray-basic);
  padding-bottom: 3rem;
}
.motivos__container {
  width: 75%;
  text-align: center;
  --padding-container: 2.5rem 0 0;
}
.motivos__picture {
  width: 100%;
  /* max-width: 400px; */
  margin: 0 auto;
}
.motivos__img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 2px 2px 4px 0px var(--black-basic);
}
.motivos_subtitle {
  padding: 1.5rem 0.4rem 0;
}
.swiper1 .card.swiper-slide,
.swiper2 .card.swiper-slide{
  width: 350px !important;
  margin-right: 35px;
  height: 600px;
}
/* -------------------- 01_Principal - Tablet -------------------- */
@media (min-width: 768px) {
  /* ----- Header - Animacion ----- */
  .hero__animacion1 {
    background-image: url("../01_principal/img_animacion1_tablet.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title {
    text-align: right;
    padding-top: 2.7rem;
    font-size: 1.4rem;
    color: white;
    padding-bottom: 1rem;
  }
  .hero__subtitle {
    text-align: right;
    font-family: var(--kalam);
    font-size: 1.2rem;
    color: white;
    padding-bottom: 1rem;
  }
  .hero__texts.container{
    height: 300px;
  }
  .hero__animacion2 {
    background-image: url("../01_principal/img_animacion2_tablet.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title2 {
    text-align: right;
    padding-top: 2.7rem;
    font-size: 1.8rem;
    color: var(--black-indice);
    padding-bottom: 1rem;
    opacity: 0;
  }
  .hero__subtitle2 {
    text-align: right;
    font-family: var(--kalam);
    font-size: 1.8rem;
    color: var(--black-indice);
    padding-bottom: 1.1rem;
    opacity: 0;
  }
  .hero__animacion3 {
    background-image: url("../01_principal/img_animacion3_tablet.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title3 {
    text-align: right;
    padding-top: 2.7rem;
    font-size: 2rem;
    color: white;
    padding-bottom: 1rem;
  }
  .hero__subtitle3 {
    text-align: right;
    font-family: var(--kalam);
    font-size: 1.8rem;
    color: white;
    padding-bottom: 1rem;
  }
  .index__title__text {
    font-size: 2.1rem;
  }
  .index__title--prensa {
    padding-top: 3rem;
    text-align: center;
    padding-bottom: 3rem;
  }
  .motivos {
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 48%);
    justify-content: space-between;
  }
  .motivo__title {
    grid-column: span 2;
  }

  .swiper1 .card.swiper-slide{
      width: 280px !important;
      margin-right: 25px;
  }

    .swiper2 .card.swiper-slide{
      width: 350px !important;
      margin-right: 5px;
  }
}
/* ------------------ 01_Principal - Desktop ------------------- */
@media (min-width: 992px) {
  /* ----- Header - Animacion ----- */
  .hero__animacion1 {
    background-image: url("../01_principal/img_animacion1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title {
    text-align: right;
    padding-top: 5rem;
    font-size: 2.2rem;
    color: white;
    padding-bottom: 1rem;
  }
  .hero__subtitle {
    text-align: right;
    font-family: var(--kalam);
    font-size: 2rem;
    color: white;
    padding-bottom: 1rem;
  }
  .hero__texts.container{
    height: 400px;
  }
  .hero__animacion2 {
    background-image: url("../01_principal/img_animacion2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title2 {
    text-align: right;
    padding-top: 5rem;
    font-size: 3rem;
    color: var(--black-indice);
    padding-bottom: 1.3rem;
    opacity: 0;
  }
  .hero__subtitle2 {
    text-align: right;
    font-family: var(--kalam);
    font-size: 3rem;
    color: var(--black-indice);
    padding-bottom: 1rem;
    opacity: 0;
  }
  .hero__animacion3 {
    background-image: url("../01_principal/img_animacion3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: right;
  }
  .hero_title3 {
    text-align: right;
    padding-top: 5rem;
    font-size: 2.6rem;
    color: white;
    padding-bottom: 1.8rem;
  }
  .hero__subtitle3 {
    text-align: right;
    font-family: var(--kalam);
    font-size: 2.5rem;
    color: white;
    padding-bottom: 1.6rem;
  }
  .publicidad__container {
    grid-area: publicidad;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: baseline;
    gap: 20px;
  }
  .index__container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-areas:
      "proximamente proximamente proximamente proximamente proximamente publicidad publicidad"
      "proximamente proximamente proximamente proximamente proximamente publicidad publicidad"
      "proximamente proximamente proximamente proximamente proximamente publicidad publicidad"
      "prensa prensa prensa prensa prensa prensa prensa"
      "prensa prensa prensa prensa prensa prensa prensa"
      "prensa prensa prensa prensa prensa prensa prensa";
  }
  .index__title {
    padding-bottom: 2rem;
  }
  .index__title__text {
    font-size: 2.4rem;
  }
  .index__title--prensa {
    padding-top: 4rem;
    text-align: center;
    padding-bottom: 5rem;
  }
  .motivos {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    justify-content: space-between;
    padding-bottom: 5rem;
  }
  .motivo__title {
    grid-column: span 4;
  }
  .contacto__img {
    width: 8%;
  }
  .contacto__img--email {
    width: 8.5%;
  }
  .contacto__img--location {
    width: 2.8%;
  }

}
/* -------------------- 02_Nosotros - Phone -------------------- */
.cabecera--nosotros {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../02_nosotros/cab_nosotros_phone.jpg");
}
.significado {
  --padding-container: 3rem 0 2rem;
}
.significado__picture {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.paragraph--significado {
  font-size: 1.4rem;
  font-family: var(--kalam);
  text-align: center;
  margin-top: 1rem;
}
.objetivos {
  --padding-container: 3.5rem 0 2rem;
}
.objetivos__container {
  background-color: var(--brown-background);
  width: 100%;
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.objetivos__picture {
  width: 35%;
  margin: 0 auto;
}
.objetivos__img {
  width: 100%;
  display: block;
}
.objetivos__title {
  text-align: center;
  padding: 1rem 0;
  color: var(--brown-dark);
}
.objetivos__subtitle {
  font-weight: bold;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.objetivos__paragraph {
  text-align: left;
}
.objetivos__vinetas {
  padding-left: 0rem;
  list-style-type: none;
  line-height: 2rem;
  font-weight: bold;
}
.objetivos__opcion {
  padding-left: 1.8rem;
  background-image: url("../02_nosotros/ico_vineta.svg");
  background-position: 1 1;
  background-size: 1.1rem 1.1rem;
  background-repeat: no-repeat;
}
.objetivos__vinetas--valores {
  padding-left: 0rem;
  list-style-type: none;
  line-height: 1.5rem;
  font-size: 1.1rem;
  width: 80%;
  margin: 0 auto;
}
.comision {
  --padding-container: 0rem 0 2rem;
}
.paragraph__comision {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 0.5rem;
}
/* -------------------- 02_Nosotros - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--nosotros {
    background-image: url("../02_nosotros/cab_nosotros_tablet.jpg");
  }
  .objetivos__container {
    display: grid;
    grid-template-columns: 30% 70%;
    justify-content: space-between;
  }
  .objetivos__picture {
    width: 55%;
  }
  .objetivos__title {
    text-align: left;
    font-size: 1.5rem;
  }
}
/* ------------------ 02_Nosotros - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--nosotros {
    background-image: url("../02_nosotros/cab_nosotros.jpg");
  }
  .paragraph--voluntad {
    padding: 2.3rem 1rem 0;
    font-size: 1.1rem;
  }
  .significado {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    gap: 60px;
  }
  .significado__picture {
    width: 100%;
    margin: 0 0;
  }
  .objetivos__picture {
    width: 40%;
  }
  .objetivos__title {
    text-align: left;
    font-size: 1.5rem;
  }
}
/* ------------------ 03_Agenda - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--agenda {
    background-image: url("../03_agenda/cab_agenda.jpg");
  }
}
.container__cal {
  position: relative;
  width: 90%;
  max-width: 1300px;
  min-height: 850px;
  margin: 0 auto;
  padding: 5px;
  display: flex;
  border-radius: 10px;
  background-color: var(--gray-basic);
}
.left {
  width: 40%;
  padding: 20px;
}
.calendar {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #878895;
  border-radius: 5px;
  background-color: #fff;
}
.calendar::before,
.calendar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 12px;
  height: 97%;
  border-radius: 0 5px 5px 0;
  background-color: #d3d5d6d7;
  transform: translateY(-50%);
}
.calendar::before {
  height: 94%;
  left: calc(100% + 12px);
  background-color: rgb(153, 153, 153);
}
.calendar .month {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
}
.calendar .month .prev,
.calendar .month .next {
  cursor: pointer;
}
.calendar .month .prev:hover,
.calendar .month .next:hover {
  color: var(--primary_clr);
}
.calendar .weekdays {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}
.calendar .weekdays div {
  width: 14.28%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .days {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.calendar .days .day {
  width: 14.28%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary_clr);
  border: 1px solid #f5f5f5;
}
.calendar .day:not(.prev-date, .next-date):hover {
  color: #fff;
  background-color: var(--primary_clr);
}
.calendar .days .prev-date,
.calendar .days .next-date {
  color: #3b3b3b;
}
.calendar .days .active {
  position: relative;
  font-size: 2rem;
  color: #fff;
  background-color: var(--primary_clr);
}
.calendar .days .active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px 2px var(--primary_clr);
}
.calendar .days .today {
  font-size: 2rem;
}
.calendar .days .event {
  position: relative;
}
.calendar .days .event::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 75%;
  height: 6px;
  border-radius: 30px;
  transform: translate(-50%);
  background-color: var(--primary_clr);
}
.calendar .event:hover::after {
  background-color: #fff;
}
.calendar .active.event::after {
  background-color: #fff;
  bottom: 20%;
}
.calendar .active.event {
  padding-bottom: 10px;
}
.container__cal .right {
  position: relative;
  width: 60%;
  min-height: 100%;
  padding: 20px 0;
}
.right .today-date {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  padding-left: 70px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.today-date .event-day {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--kalam);
  color: var(--brown-basic);
}
.today-date .event-date {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--kalam);
}
.events {
  width: 100%;
  height: 100%;
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 4px;
}
.events .event {
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}
.events .no-event {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kalam);
  font-size: 1.2rem;
  font-weight: 500;
}
.agenda__paragraph__basic {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  line-height: 1.1rem;
}
.agenda__brown--verylight {
  color: var(--brown-very-light);
  font-family: var(--kalam);
  font-weight: bold;
  font-size: 1rem;
}
.agenda__title__black {
  color: var(--black-basic);
  font-size: 1.2rem;
  font-family: var(--kalam);
  font-weight: bold;
}
.agenda__link {
  text-decoration: none;
  color: var(--brown-very-light);
  font-size: 0.9rem;
}
.agenda__picture {
  width: 70%;
  margin: 0 auto;
}
/* -------------------- 03_Agenda - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--agenda {
    background-image: url("../03_agenda/cab_agenda_tablet.jpg");
  }
}
@media (max-width: 1000px) {
  .main__agenda {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .container__cal {
    min-height: 100vh;
    flex-direction: column;
    border-radius: 0;
  }
  .container__cal .left,
  .container__cal .right {
    width: 100%;
    height: 100%;
    padding: 20 0;
  }
  .calendar::before,
  .calendar::after {
    top: 100%;
    left: 50%;
    width: 97%;
    height: 12px;
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
  }
  .calendar::before {
    width: 94%;
    top: calc(100% + 12px);
  }
  .agenda__img--cal {
    display: block;
    width: 95%;
  }
}
/* -------------------- 03_Agenda - Phone -------------------- */
.cabecera--agenda {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../03_agenda/cab_agenda_phone.jpg");
}
@media (max-width: 500px) {
  .calendar .month {
    height: 75px;
  }
  .calendar .weekdays {
    height: 50px;
  }
  .calendar .days .day {
    height: 40px;
    font-size: 0.8rem;
  }
  .calendar .days .day.active,
  .calendar .days .day.today {
    font-size: 1rem;
  }
  .right .today-date {
    padding: 20px;
  }
  .events .event {
    display: block;
  }
  .agenda__title__black {
    padding-top: 1.5rem;
  }
  .right .today-date {
    padding-bottom: 3rem;
  }
}
/* -------------------- 04_Talleres - Phone -------------------- */
.cabecera--talleres {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../04_talleres/cab_talleres_phone.jpg");
}
.taller__titulo {
  font-size: 1.3rem;
  color: var(--brown-light);
  font-weight: bold;
  padding-bottom: 0.5rem;
}
.taller__contenido {
  font-size: 1.4rem;
  font-family: var(--kalam);
  padding-bottom: 0.3rem;
}
.taller__info--container {
  padding-top: 2rem;
}
.taller__descripcion {
  --padding-container: 0 0 2rem;
}
.video {
  text-align: center;
  --padding-container: 0 0 2rem;
}
.taller_fotos__container {
  width: 75%;
  text-align: center;
  --padding-container: 3rem 0 0;
}
.taller_fotos__picture {
  width: 100%;
  /* max-width: 400px; */
  margin: 0 auto;
}
/* -------------------- 04_Talleres - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--talleres {
    background-image: url("../04_talleres/cab_talleres_tablet.jpg");
  }
  .taller__info {
    display: grid;
    grid-template-columns: 50% 45%;
    justify-content: space-between;
    gap: 20px;
  }
  .taller__info--container {
    padding-top: 0rem;
  }
  .taller_fotos {
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 48%);
    justify-content: space-between;
  }
}
/* ------------------ 04_Talleres - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--talleres {
    background-image: url("../04_talleres/cab_talleres.jpg");
  }
  .taller_fotos {
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 35%);
    justify-content: space-evenly;
  }
}
/* -------------------- 06_Prensa - Phone -------------------- */
.cabecera--prensa {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../06_prensa/cab_prensa_phone.jpg");
}
/* -------------------- 06_Prensa - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--prensa {
    background-image: url("../06_prensa/cab_prensa_tablet.jpg");
  }
  .prensa {
    display: grid;
    grid-template-columns: repeat(3, 28%);
    justify-content: space-between;
  }
  .prensa__index {
    display: grid;
    grid-template-columns: repeat(3, 28%);
    justify-content: space-between;
  }
}
/* ------------------ 06_Prensa - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--prensa {
    background-image: url("../06_prensa/cab_prensa.jpg");
  }
}
/* ----------------------- 07_Biblioteca - Phone --------------------------- */
.cabecera--biblioteca {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../07_biblioteca/cab_biblioteca_phone.jpg");
}
.historia {
  --padding-container: 3rem 0 2rem;
}
.historia__picture {
  width: 70%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.voluntad {
  --padding-container: 0rem 0 3rem;
}
.voluntad__picture {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.info__biblio {
  --padding-container: 0rem 0 3rem;
}
.info__biblio__picture {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.info__biblio__picture1 {
  width: 70%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
/* -------------------- 07_Biblioteca - Tablet ------------------- */
@media (min-width: 768px) {
  .cabecera {
    background-image: url("../07_biblioteca/cab_biblioteca_tablet.jpg");
  }
  .historia {
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
  }
  .historia__picture {
    width: 80%;
    margin: 0 auto;
  }
  .paragraph--historia {
    font-size: 1.1rem;
  }
  .paragraph--voluntad {
    /*  padding: 2.3rem 1rem 0; */
    font-size: 1.1rem;
  }
  .voluntad {
    display: grid;
    grid-template-columns: 55% 45%;
    justify-content: space-between;
    gap: 60px;
  }
  .voluntad__picture {
    width: 100%;
    margin: 0 0;
  }
  .info__biblio {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    gap: 20px;
  }
  .info__biblio__container {
    padding: 1.5rem 1rem;
    display: flex;
    gap: 10px;
    justify-content: end;
  }
  .info__biblio__picture1 {
    width: 45%;
    margin: 0 0;
  }
}
/* --------------------- 07_Biblioteca - Desktop ----------------------- */
@media (min-width: 992px) {
  body {
    font-size: 1.2rem;
  }
  .cabecera--biblioteca {
    background-image: url("../07_biblioteca/cab_biblioteca.jpg");
  }
  .cabecera_title {
    font-size: 2.4rem;
  }
  .cabecera_subtitle {
    font-size: 1.5rem;
  }
  .historia {
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
  }
  .historia__picture {
    width: 60%;
    margin: 0 auto;
  }
  .paragraph--historia {
    padding: 1.6rem 1rem 0;
    font-size: 1.2rem;
  }
  .paragraph--voluntad {
    padding: 2.3rem 1rem 0;
    font-size: 1.3rem;
  }
  .voluntad {
    display: grid;
    grid-template-columns: 55% 45%;
    justify-content: space-between;
    gap: 60px;
  }
  .voluntad__picture {
    width: 100%;
    margin: 0 0;
  }
  .info__biblio {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    gap: 20px;
  }
  .info__biblio__container {
    padding: 1.5rem 1rem;
    display: flex;
    gap: 10px;
    justify-content: end;
  }
  .info__biblio__picture1 {
    width: 45%;
    margin: 0 0;
  }
}
/* -------------------- 08_Comunidad - Phone -------------------- */
.cabecera--comunidad {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../08_comunidad/cab_comunidad_phone.jpg");
}
/* -------------------- 08_Comunidad - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--comunidad {
    background-image: url("../08_comunidad/cab_comunidad_tablet.jpg");
  }
}
/* ------------------ 08_Comunidad - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--comunidad {
    background-image: url("../08_comunidad/cab_comunidad.jpg");
  }
}
/* -------------------- 09_Contacto - Phone -------------------- */
.cabecera--contacto {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  background-image: url("../09_contacto/cab_contacto_phone.jpg");
}
.contact {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  padding: var(--padding-container);
}
.formulario {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form {
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  max-width: 650px;
  font-size: 12px;
}
.form .formLabel {
  display: block;
  font-size: 14px;
  color: var(--pink-dark);
}
.form .formInput {
  width: 100%;
  padding: 20px;
  margin-bottom: 35px;
  background-color: var(--brown-very-light);
  border: 1px solid var(--brown-very-light);
}
.form .formConsulta {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  background-color: var(--brown-very-light);
  border: 1px solid var(--brown-very-light);
}
.form .formSubmit {
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  padding: 15px;
  border-radius: 30px;
  background-color: var(--brown-light);
  border: 1px solid var(--brown-light);
  color: #fff;
}
.formulario__title {
  color: var(--brown-basic);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
::placeholder {
  color: var(--brown-basic);
  font-family: var(--poppins);
}
.contacto--form__text {
  color: var(--black-basic);
}
.horario {
  margin-bottom: 0.2rem;
}
/* -------------------- 09_Contacto - Tablet -------------------- */
@media (min-width: 768px) {
  .cabecera--contacto {
    background-image: url("../09_contacto/cab_contacto_tablet.jpg");
  }
  .cabecera--contacto_title {
    text-align: center;
    color: var(--brown-basic);
  }
}
/* ------------------ 09_Contacto - Desktop ------------------- */
@media (min-width: 992px) {
  .cabecera--contacto {
    background-image: url("../09_contacto/cab_contacto.jpg");
  }
  .contact {
    width: 90%;
    font-size: 1rem;
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
    column-gap: 200px;
    margin: 0 auto;
  }
}
