.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 20px;
  background-color: #b38e5d;
  color: white;
  position: relative;
  position: fixed; /* O prueba fixed si quieres que se mantenga siempre visible */
  top: 0;
  width: 100%;
  z-index: 1000; /* Asegura que esté sobre otros elementos */
  margin-top: 60px; /* Evita que se empuje hacia abajo */
}
.logo {
  max-width: 15rem;
  justify-self: start;
}
.title {
  text-align: center;
  font-size: 2rem;
  grid-column: 2; /* Asegura que el título esté en la columna central */
  font-weight: 700;
  font-family: "Noto Sans" !important;
  margin-top: 3%;
}
.menu {
  display: flex; /* Asegura que el menú sea visible en pantallas grandes */
  flex-direction: row;
  position: static; /* Elimina el posicionamiento absoluto en pantallas grandes */
  background-color: transparent;
  width: auto;
  padding: 0;
  justify-self: end;
}

.menu.active {
  display: flex;
}

.menu a {
  text-decoration: none;
  color: white;
  padding: 10px;
  font-weight: 500;
  font-size: 15px !important;
}
.menu a:hover {
  color: #611232;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 22px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
}

.close-menu {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

.menu.active .close-menu {
  display: block;
}

#footer {
  padding: 1em 0 2em 0;
  min-height: 38vh;
  height: auto;
  border-bottom: #b38e5d solid 7px;
  border-top: #611232 solid 7px;
  background: url(../images//footer-logo.png);
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-size: cover;
}
.icons-res {
  display: flex;
  justify-content: center;
  margin-left: 39%;
  margin-top: -2%;
  padding: 0.5%;
  z-index: 999;
}
.footer-desing {
  font-size: 4.5rem !important;
  text-align: center;
  color: #621132;
  font-weight: 700 !important;
  font-family: "Noto Sans";
  margin-top: -1%;
  margin-left: -53%;
}
.footer-txt {
  font-size: 2.5rem !important;
  text-align: center;
  margin-right: 54%;
  margin-top: -6% !important;
  color: #621132;
  font-family: "Noto Sans";
  font-weight: bold;
}
.footer-dire {
  font-size: 1.5rem;
  color: #621132;
  margin-left: 53%;
  font-family: "Noto Sans";
  margin-top: -10%;
  font-weight: bold;
  text-align: center;
}
.footer-date {
  font-size: 1.1rem;
  text-align: center;
  color: #621132;
  font-family: "Noto Sans";
  font-weight: bold;
  margin-top: -2%;
  text-align: center;
}
.footer-tel {
  font-size: 1.5rem;
  color: #621132;
  margin-left: 53%;
  font-family: "Noto Sans";
  margin-top: -2%;
  font-weight: bold;
  text-align: center;
}
.footer-privacidad {
  font-size: 1.2rem;
  color: #621132;
  font-family: "Noto Sans";
  font-weight: bold;
  margin-top: 1%;
  text-align: center;
}
.Btn-redes {
  width: 35px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: -50%;
}

.svgContainer {
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid #000000;
}

.BG-redes {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn-redes:hover .BG-redes {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn-redes:hover .svgContainer {
  background-color: rgba(70, 64, 64, 0.466);
  backdrop-filter: blur(4px);
}

.Btn-face {
  width: 35px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 20%;
}

.svgContainer-face {
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid #0866ff;
}

.BG-face {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #0866ff;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn-face:hover .BG-face {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn-face:hover .svgContainer-face {
  background-color: rgba(158, 148, 148, 0.466);
  backdrop-filter: blur(4px);
}
.icons-res {
  display: flex;
  justify-content: center;
  margin-left: 50%;
  margin-top: -2%;
  padding: 0.5%;
  z-index: 999;
  position: relative;
}

.Btn-insta {
  width: 35px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 93%;
}

.svgContainer-insta {
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px
    linear-gradient(
      90deg,
      rgba(64, 93, 230, 1) 0%,
      rgba(91, 81, 216, 1) 10%,
      rgba(131, 58, 180, 1) 20%,
      rgba(193, 53, 132, 1) 31%,
      rgba(225, 53, 132, 1) 40%,
      rgba(253, 29, 29, 1) 51%,
      rgba(245, 96, 64, 1) 61%,
      rgba(247, 119, 55, 1) 69%,
      rgba(252, 175, 69, 1) 80%,
      rgba(255, 220, 128, 1) 88%
    );
}

.BG-insta {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(64, 93, 230, 1) 0%,
    rgba(91, 81, 216, 1) 10%,
    rgba(131, 58, 180, 1) 20%,
    rgba(193, 53, 132, 1) 31%,
    rgba(225, 53, 132, 1) 40%,
    rgba(253, 29, 29, 1) 51%,
    rgba(245, 96, 64, 1) 61%,
    rgba(247, 119, 55, 1) 69%,
    rgba(252, 175, 69, 1) 80%,
    rgba(255, 220, 128, 1) 88%
  );
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn-insta:hover .BG-insta {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn-insta:hover .svgContainer-insta {
  background-color: rgba(158, 148, 148, 0.466);
  backdrop-filter: blur(4px);
}

.Btn-youtube {
  width: 35px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 170%;
}

.svgContainer-youtube {
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid #ff0000;
}

.BG-youtube {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #ff0000;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn-youtube:hover .BG-youtube {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn-youtube:hover .svgContainer-youtube {
  background-color: rgba(158, 148, 148, 0.466);
  backdrop-filter: blur(4px);
}
@media (max-width: 1500px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #611232;
    padding: 10px;
    width: 100%;
    z-index: 9;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    display: none;
  }

  .title {
    text-align: center;
    grid-column: 1;
    font-size: 1.5rem;
  }
  .footer-desing,
  .footer-txt,
  .footer-dire,
  .footer-date,
  .footer-tel,
  .footer-privacidad {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .icons-res {
    justify-content: center;
    margin-left: 0;
    top: 2%;
  }

  .Btn-redes,
  .Btn-face,
  .Btn-insta,
  .Btn-youtube {
    margin: 5px;
  }
  .img-footer img {
    display: none;
  }
  #footer {
    min-height: 38vh;
    height: auto;
    background-size: cover;
  }
}

@media (max-width: 1601px) and (min-width: 1501px) {
  .footer-desing,
  .footer-txt,
  .footer-dire,
  .footer-date,
  .footer-tel,
  .footer-privacidad {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    right: 0;
  }

  .icons-res {
    justify-content: center;
    margin-left: 0;
    top: 2%;
  }

  .Btn-redes,
  .Btn-face,
  .Btn-insta,
  .Btn-youtube {
    margin: 5px;
  }
  .img-footer img {
    display: none;
  }
  #footer {
    min-height: 38vh;
    height: auto;
    background-size: cover;
  }
}

.container-all-agenda {
  min-height: auto;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: -7% !important;
  padding: 13% 13% 1% 13%;
  align-content: center;
  align-items: center;
  row-gap: 14%;
  text-align: center;
  place-items: center;
  justify-content: center;
  column-gap: 3%;
}

.container-agenda:nth-last-child(-n + 3) .card-agenda {
  margin-bottom: 0;
}

.container-agenda {
  position: relative;
  /* Contenedor principal para la tarjeta y el botón */
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.card-agenda {
  width: 254px;
  height: 339px;
  border-radius: 20px;
  position: relative;
  padding: 1.8rem;
  border: 8px solid #b38e5d;
  transition: 0.5s ease-out;
  overflow: hidden;
  /* Asegura que el contenido esté dentro de la tarjeta */
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 1);
  margin-bottom: 23%;
}

.card-details {
  position: absolute;
  bottom: 0;
  width: 105%;
  height: 25%;
  background-color: #611232;
  color: #fff;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  box-sizing: border-box;
  margin-left: -8% !important;
  overflow: hidden !important;
}

.text-title {
  font-size: 1.3em !important;
  font-weight: bold;
  margin-top: 2% !important;
}

.card-button {
  transform: translate(-50%, -8%);
  width: 60%;
  border-radius: 1rem;
  border: none;
  background-color: #b38e5d;
  color: #fff;
  font-size: 1.5rem !important;
  padding: 1rem 1rem !important;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
  bottom: -20px;
  /* Ajusta para que el botón sobresalga de la tarjeta */
}

.container-agenda:hover .card-button {
  opacity: 1;
  bottom: 35px;
  /* Ajusta la posición final del botón al hacer hover */
}

.text-body {
  color: rgb(134, 134, 134);
}

/*Hover*/
.card-agenda:hover {
  border-color: #b38e5d;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.5), 0px 40px 60px rgba(0, 0, 0, 0.3),
    0px 80px 100px rgba(0, 0, 0, 0.2);
}

.card-agenda:hover .card-button {
  transform: translate(-50%, 50%);
  opacity: 1;
}

.footer-desing {
  font-size: 3rem;
  text-align: center;
  margin-right: 95%;
  color: #621132;
  font-weight: 700 !important;
  font-family: "Noto Sans";
  margin-top: 5%;
  margin-left: -129%;
}

.footer-txt {
  font-size: 1.5rem;
  text-align: center;
  margin-right: -13%;
  margin-top: -18%;
  color: #621132;
  font-family: "Noto Sans";
  font-weight: bold;
  margin-left: -240%;
}

.footer-dire {
  font-size: 2.2rem !important;
  color: #621132;
  margin-left: -10%;
  font-family: "Noto Sans";
  margin-top: -33% !important;
  font-weight: bold;
  text-align: center;
  right: -114%;
  position: relative;
}

.footer-date {
font-size: 2rem !important;
  text-align: center;
  color: #621132;
  font-family: 'Noto Sans';
  font-weight: bold;
  margin-top: -7%;
  text-align: center;
  margin-bottom: -6% !important;
}

.footer-tel {
  font-size: 2.2rem !important;
  color: #621132;
  margin-left: 31%;
  font-family: "Noto Sans";
  margin-top: -8%;
  font-weight: bold;
  text-align: center;
  right: -96%;
  position: relative;
}

.footer-privacidad {
font-size: 2rem !important;
  color: #621132;
  font-family: 'Noto Sans';
  font-weight: bold;
  margin-top: 0%;
  text-align: center;
}

.icons-res {
  display: flex;
  justify-content: center;
  margin-left: 156%;
  padding: 0.5%;
  z-index: 999;
  position: relative;
  margin-top: -2% !important;
}

.img-footer img {
  width: 19rem !important;
  text-align: center;
  display: flex;
  margin: 0 auto;
  margin-top: 0px;
  margin-top: 0px;
  margin-top: -36% !important;
}

@media (max-width: 1600px) and (min-width: 950px) {
  .container-all-agenda {
    height: 142vh;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10%;
    padding: 4%;
    align-content: center;
    align-items: center;
    row-gap: 6%;
    text-align: center;
    place-items: center;
    justify-content: center;
    column-gap: 3%;
  }
}

@media (max-width: 1500px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #611232;
    padding: 10px;
    width: 100%;
    z-index: 9;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    display: none;
  }

  .title {
    text-align: center;
    grid-column: 1;
    font-size: 1.5rem;
  }

  .footer-desing,
  .footer-txt,
  .footer-dire,
  .footer-date,
  .footer-tel,
  .footer-privacidad {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    right: 0;
    font-size: 1rem;
    margin-top: -3% !important;
  }

  .icons-res {
    justify-content: center;
    margin-left: 0;
    top: 2%;
    margin-top: 0;
  }

  .Btn-redes,
  .Btn-face,
  .Btn-insta,
  .Btn-youtube {
    margin: 5px;
  }

  .img-footer img {
    display: none;
  }

  #footer {
    min-height: 38vh;
    height: auto;
    background-size: cover;
  }
}

@media (max-width: 1600px) and (min-width: 1501px) {
  .img-footer img {
    margin-top: 0% !important;
  }

  .footer-desing,
  .footer-txt,
  .footer-dire,
  .footer-date,
  .footer-tel,
  .footer-privacidad {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    right: 0;
    margin-top: -3% !important;
  }

  .icons-res {
    justify-content: center;
    margin-left: 0;
    top: 2%;
    margin-top: 0;
  }

  .Btn-redes,
  .Btn-face,
  .Btn-insta,
  .Btn-youtube {
    margin: 5px;
  }

  .img-footer img {
    display: none;
  }

  #footer {
    min-height: 38vh;
    height: auto;
    background-size: cover;
  }

  .container-all-agenda {
    margin-top: 0%;
  }
}
@media screen and (max-width: 920px) and (min-width: 767px){
    	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
        
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -400%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -310%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -220%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-image: url(../images/footer-responsive-mediano.png);
		background-size: cover;
	}
    .container-all-agenda{
        margin-top: 3% !important;
      }
      #ema{
        margin-top: 10% !important;
        margin-bottom: 10% !important;
      }
}
@media screen and (max-width: 1030px) and (min-width: 919px){
    .footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire {
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date {
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel {
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -400%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -310%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -220%;
    	margin-top: -60%;
	  }
      .container-all-agenda {
    margin-top: 10% !important;
  }
  #sne, #org{
    margin-top: -7% !important;
  }
}
@media screen and (max-width: 1120px) and (min-width: 1029px){
    .footer-desing{
		font-size: 3rem !important;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -680%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -580%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -380%;
    	margin-top: -60%;
	  }
        .container-all-agenda {
    margin-top: 10% !important;
  }
  #sne, #org{
    margin-top: -7% !important;
  }
}
@media screen and (max-width: 1395px) and (min-width: 1310px){

	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -680%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -580%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -380%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.icons-res{
		display: flex;
		justify-content: center;
		padding: .5%;
		z-index: 999;
		position: relative;
	  }
      
}
@media screen and (max-width: 1199px) and (min-width: 1121px){
	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -400%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -310%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -220%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -680%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -580%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -380%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.icons-res{
		display: flex;
		justify-content: center;
		padding: .5%;
	  }
        .container-all-agenda {
    margin-top: 10% !important;
  }
  #sne, #org{
    margin-top: -7% !important;
  }
}
@media screen and (max-width: 1309px) and (min-width: 1200px){
	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -400%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -310%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -220%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.footer-desing{
		font-size: 3rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-date{
		font-size: 1.1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -680%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -580%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -380%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.icons-res{
		display: flex;
		justify-content: center;
		padding: .5%;
	  }
        .container-all-agenda {
    margin-top: 10% !important;
  }
  #sne, #org, #ema{
    margin-top: -7% !important;
  }
}
@media screen and (max-width: 768px) and (min-width: 600px){
	.footer-desing{
		font-size: 3rem !important;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.5rem !important;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1.3rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
        margin-top: -3% !important;
	  }
	  .footer-date{
		font-size: 1.1rem !important;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.3rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.2rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .Btn-redes {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -480%;
    	margin-top: -60%;
	  }
	  .Btn-face {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -400%;
    	margin-top: -60%;
	  }
	  .Btn-insta {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -310%;
    	margin-top: -60%;
	  }
	  .Btn-youtube {
		width: 43px !important;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -220%;
    	margin-top: -60%;
	  }
	  #footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px;
		background-size: cover;
	  }
      .container-all-agenda{
        margin-top: 3% !important;
      }
       #sne, #org, #ema{
        margin-bottom: 10% !important;
      }
}
@media (max-width: 600px) and (min-width: 401px){
	#footer {
		padding: 1em 0 2em 0;
    border-bottom: #B38E5D solid 7px;
    border-top: #B38E5D solid 7px;
    background-size: cover;
	  }
	.footer-desing{
		font-size: 2rem !important;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1.1rem !important;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire {
		font-size: 1.1rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
		overflow-x: hidden;
		text-align: center;
        margin-top: -5% !important;
	  }
	  .footer-date{
		font-size: 1.1rem !important;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1.1rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1.1rem !important;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		overflow-x: hidden;
		text-align: center;
	  }
	  .Btn-redes {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -250%;
	  }
	  
	  .svgContainer {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #000000;
	  }
	  .Btn-face {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -180%;
	  }
	  
	  .svgContainer-face {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #0866ff;
	  }
	  .Btn-insta {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -120%;
	  }
	  
	  .svgContainer-insta {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px linear-gradient(90deg, rgba(64,93,230,1) 0%, rgba(91,81,216,1) 10%, rgba(131,58,180,1) 20%, rgba(193,53,132,1) 31%, rgba(225,53,132,1) 40%, rgba(253,29,29,1) 51%, rgba(245,96,64,1) 61%, rgba(247,119,55,1) 69%, rgba(252,175,69,1) 80%, rgba(255,220,128,1) 88%);
	  }
	  .Btn-youtube {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -50%;
	  }
	  
	  .svgContainer-youtube {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #ff0000;
	  }
	.icons-res {
		display: flex;
		justify-content: center;
		padding: .5%;
	  }
	  .img-footer img{
		display: none;
	  }
      .container-all-agenda{
        margin-top: 11% !important;
      }
      #sne, #org, #ema{
        margin-bottom: 20% !important;
      }
}
@media (max-width: 400px) and (min-width: 360px){
	#footer {
		padding: 1em 0 2em 0;
		border-bottom: #B38E5D solid 7px;
		border-top: #B38E5D solid 7px; 
		background-size: cover;
	}
	.footer-desing{
		font-size: 2rem;
		text-align: center;
		color: #621132;
		font-weight: 700 !important;
		font-family: 'Noto Sans';
		width: 100%;
	  }
	  .footer-txt{
		font-size: 1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
	  }
	  .footer-dire{
		font-size: 1rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		width: 100%;
		overflow-x: hidden;
	  }
	  .footer-date{
		font-size: 1rem;
		text-align: center;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-tel{
		font-size: 1rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
	  }
	  .footer-privacidad{
		font-size: 1rem;
		color: #621132;
		font-family: 'Noto Sans';
		font-weight: bold;
		overflow-x: hidden;
	  }
	  .Btn-redes {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -250%;
	  }
	  
	  .svgContainer {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #000000;
	  }
	  .Btn-face {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -180%;
	  }
	  
	  .svgContainer-face {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #0866ff;
	  }
	  .Btn-insta {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -120%;
	  }
	  
	  .svgContainer-insta {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px linear-gradient(90deg, rgba(64,93,230,1) 0%, rgba(91,81,216,1) 10%, rgba(131,58,180,1) 20%, rgba(193,53,132,1) 31%, rgba(225,53,132,1) 40%, rgba(253,29,29,1) 51%, rgba(245,96,64,1) 61%, rgba(247,119,55,1) 69%, rgba(252,175,69,1) 80%, rgba(255,220,128,1) 88%);
	  }
	  .Btn-youtube {
		width: 35px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background-color: transparent;
		position: relative;
		/* overflow: hidden; */
		border-radius: 7px;
		cursor: pointer;
		transition: all 0.3s;
		margin-left: -50%;
	  }
	  
	  .svgContainer-youtube {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		backdrop-filter: blur(0px);
		letter-spacing: 0.8px;
		border-radius: 10px;
		transition: all 0.3s;
		border: 1px solid #ff0000;
	  }
	  .img-footer img{
		display: none;
	  }
}
@media screen and (max-width: 550px) {
	.img-footer img{
		display: none !important;
	  }
}

        .container-all-agenda {
            min-height: auto;
            height: auto;
            display: flex;
            flex-wrap: wrap;
            margin-top: -5%;
            padding: 13% 13% 1% 13%;
            align-content: center;
            align-items: center;
            row-gap: 14%;
            text-align: center;
            place-items: center;
            justify-content: center;
            column-gap: 3%;
        }
        .container-agenda:nth-last-child(-n+3) .card-agenda {
            margin-bottom: 0;
        }
        .container-agenda {
            position: relative;
            /* Contenedor principal para la tarjeta y el botón */
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
        }

        .card-agenda {
            width: 254px;
            height: 339px;
            border-radius: 20px;
            position: relative;
            padding: 1.8rem;
            border: 8px solid #b38e5d;
            transition: 0.5s ease-out;
            overflow: hidden;
            /* Asegura que el contenido esté dentro de la tarjeta */
            box-shadow: inset 0 4px 8px rgba(0, 0, 0, 1);
            margin-bottom: 23%;
        }

        .card-details {
            position: absolute;
            bottom: 0;
            width: 102%;
            height: 25%;
            background-color: #611232;
            color: #fff;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0.5rem;
            box-sizing: border-box;
            margin-left: -12%;
            overflow: hidden !important;

        }

        .text-title {
            font-size: 1.5em;
            font-weight: bold;
            margin-top: 14%;
        }

        .card-button {
            transform: translate(-50%, -8%);
            width: 60%;
            border-radius: 1rem;
            border: none;
            background-color: #b38e5d;
            color: #fff;
            font-size: 1rem;
            padding: .5rem 1rem;
            position: absolute;
            left: 50%;
            bottom: 0;
            opacity: 0;
            transition: 0.3s ease-out;
            bottom: -20px;
            /* Ajusta para que el botón sobresalga de la tarjeta */
        }

        .container-agenda:hover .card-button {
            opacity: 1;
            bottom: 35px;
            /* Ajusta la posición final del botón al hacer hover */
        }

        .text-body {
            color: rgb(134, 134, 134);
        }


        /*Hover*/
        .card-agenda:hover {
            border-color: #b38e5d;
            box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.5), 0px 40px 60px rgba(0, 0, 0, 0.3), 0px 80px 100px rgba(0, 0, 0, 0.2);
        }

        .card-agenda:hover .card-button {
            transform: translate(-50%, 50%);
            opacity: 1;
        }
        .footer-desing {
            font-size: 3rem;
          text-align: center;
          margin-right: 95%;
          color: #621132;
          font-weight: 700 !important;
          font-family: 'Noto Sans';
          margin-top: 5%;
          margin-left: -129%;
          }
        .footer-txt {
            font-size: 1.5rem;
            text-align: center;
            margin-right: -13%;
            margin-top: -18%;
            color: #621132;
            font-family: 'Noto Sans';
            font-weight: bold;
            margin-left: -240%;
          }
          .footer-dire {
            font-size: 1.5rem;
            color: #621132;
            margin-left: -10%;
            font-family: 'Noto Sans';
            margin-top: -41%;
            font-weight: bold;
            text-align: center;
            right: -114%;
            position: relative;
          }
          .footer-date{
            font-size: 1.1rem;
            text-align: center;
            color: #621132;
            font-family: 'Noto Sans';
            font-weight: bold;
            margin-top: -7%;
            text-align: center;
          }
          .footer-tel {
            font-size: 1.5rem;
            color: #621132;
            margin-left: 31%;
            font-family: 'Noto Sans';
            margin-top: -8%;
            font-weight: bold;
            text-align: center;
            right: -96%;
            position: relative;
          }
          .footer-privacidad{
            font-size: 1.2rem;
            color: #621132;
            font-family: 'Noto Sans';
            font-weight: bold;
            margin-top: 3%;
            text-align: center;
          }
          .icons-res {
            display: flex;
            justify-content: center;
            margin-left: 156%;
            padding: .5%;
            z-index: 999;
            position: relative;
            margin-top: -8%;
            }
            .img-footer img {
                width: 12rem;
                text-align: center;
                display: flex;
                margin: 0 auto;
                  margin-top: 0px;
                margin-top: 0px;
                margin-top: -38%;
              }
        @media (max-width: 1600px) and (min-width: 950px) {
            

            .container-all-agenda {
                height: 142vh;
                display: flex;
                flex-wrap: wrap;
                margin-top: 10%;
                padding: 4%;
                align-content: center;
                align-items: center;
                row-gap: 6%;
                text-align: center;
                place-items: center;
                justify-content: center;
                column-gap: 3%;
            }
        }
        @media (max-width: 1500px) {
            .header {
                grid-template-columns: 1fr auto;
            }
        
            .menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0px;
                right: 0;
                background-color: #611232;
                padding: 10px;
                width: 100%;
                z-index: 9;
            }
        
            .menu.active {
                display: flex;
            }
        
            .menu-toggle {
                display: flex;
            }
        
            .logo {
                display: none;
            }
        
            .title {
                text-align: center;
                grid-column: 1;
                font-size: 1.5rem;
            }
        .footer-desing, 
            .footer-txt, 
            .footer-dire, 
            .footer-date, 
            .footer-tel, 
            .footer-privacidad {
                margin: 0 auto;
                text-align: center;
                width: 100%;
                right: 0;
                font-size: 1rem;
            }
            
            .icons-res {
                justify-content: center;
                margin-left: 0;
                top: 2%;
                margin-top: 0;
            }
        
            .Btn-redes, 
            .Btn-face, 
            .Btn-insta, 
            .Btn-youtube {
                margin: 5px;
            }
            .img-footer img{
                display: none;
            }
            #footer{
                min-height: 38vh;
                height: auto;
                background-size: cover;
            }
           
        }
        @media (max-width: 1600px) and (min-width: 1501px){
            .img-footer img{
                margin-top: 0% !important;
            }
            .footer-desing, 
            .footer-txt, 
            .footer-dire, 
            .footer-date, 
            .footer-tel, 
            .footer-privacidad {
                margin: 0 auto;
                text-align: center;
                width: 100%;
                right: 0;
            }
            
            .icons-res {
                justify-content: center;
                margin-left: 0;
                top: 2%;
                margin-top: 0;
            }
        
            .Btn-redes, 
            .Btn-face, 
            .Btn-insta, 
            .Btn-youtube {
                margin: 5px;
            }
            .img-footer img{
                display: none;
            }
            #footer{
                min-height: 38vh;
                height: auto;
                background-size: cover;
            }
            .container-all-agenda{
                margin-top: 0%;
            }
        }