@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Maven+Pro&family=Poppins:wght@300;600&display=swap');


/*reglas generales*/

*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: white;
}
body {
    display: grid;
    /* altura mínima: altura del navegador */
    min-height: 100dvh;
    background-color: #ecf1f1;
    grid-template-rows: auto 1fr;
}

.contenedora {
    width: min( 75rem, 100% );
    margin-inline: auto;
}

/*desaparecer la casilla de verificación*/
#btn-menu{display: none;}


/*convierto el cursor en mano porque tengo una img y no un vínculo*/
header label:hover{
    cursor:pointer;
    background: #D06864;
}

.menu ul{
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
}

.menu li:hover{
    background: #b0cac673;
    transition: 1s;
}
.menu li a{
    display: block;
    padding: 1rem 2rem;
    color: #487C45;
    font-weight: bold;
    text-decoration:none;
}

.menu{
    position: fixed;
    background: #ffffff;
    width: auto;
    height: 100dvh;
    top: 6em;
    right: -100%;
    transition: all .3s;
}

.menu ul{
    flex-direction: column;
}


/*uso el pseudo selector :checked para identificar cuando  la casilla de verificación está marcada.
    Y para que esto ejecute otro elemento necesito el combinador de hermanos (~)*/
    #btn-menu:checked ~ .menu{
        right: 0;  
    }


/*HEADER todas las páginas*/

header {
    position: sticky;
    padding: 1rem;
    background-color: #85a2a2;
    z-index: 1000;
    top: 0;
}

header .contenedora {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#derecha {
    
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    z-index: 1000;
}


/*FOOTER todas las páginas*/


footer {
    padding: 1.5rem;
    background-color:#D06864;
    align-items: baseline;
    display: block;
    gap: 2rem;
    
}

.institucionales {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 2rem;
    padding-inline: 1.5rem;
}


footer p {
    color: white;
    padding: 1em;
    text-align: left;
    font-size: 13px;
}

.footer img{
      padding-bottom: 1rem;
}

nav ul li a {
    display: flex; 
    width: 12rem;
    font-family: Arial, Helvetica, sans-serif;
}


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


.boton {
    background-color:#487C45;
    color: beige;
    text-align: center;
    margin: 1rem 0 1rem 2rem;
    padding: .5em 1em;
    border-radius: 1em;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    transition: .4s all ease-in-out;
}

.boton:hover {
    background-color:#c17a77;
}

.linea{

    border-block-end:#487C45 2px solid;
    margin: 2rem;
}



/*INICIO WEBAPP */

.conteiner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr) );
    gap: 1rem;
    margin-bottom: 3rem;
}

h1 {
    font-family: 'Oswald', sans-serif;  
    font-weight:200;
    font-size: 1.5em;
    background-color: #D06864;
    color:beige;
    text-align: left;
    padding: 1rem;
    text-transform: uppercase;
}


h2 {
    font-family: 'Oswald', sans-serif;
    font-weight:bold;
    font-size: 1.5em;
    color: #487C45;
    text-align: left;
    padding: 2rem;
    text-transform: uppercase;
}


h3 {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight:lighter;
    background-color:#85a2a2;
    color: white;
    padding: 1rem;
    text-transform: uppercase;

}

p {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    padding: 1rem 2rem;
    text-wrap: pretty;
    
}
p, li{
    text-wrap:pretty;
}

.bold {
    font-weight: bold;
}

h1,h2,h3,h4 {
    text-wrap: balance;
}

.evento_destacado {
    margin-bottom: 2rem;
}

.evento_verde, .evento_rosa, .evento_amarillo {
    background-color: antiquewhite;
    padding-bottom: 1rem;
    margin-top: 2rem;
}


.evento_verde h3 {
    background-color: #487C45;
}

.evento_rosa h3 {
    background-color: #D06864;
}

.evento_amarillo h3 {
    background-color: #bb9301;
}

/* CALENDARIO INICIO */

.octubre 
{padding-inline: 1rem;}

.referencias {
    display: flex;
}

.referenciaverde p {
    color: #487C45;
    font-size: 13px;
    font-weight: bolder;
    
}

.referenciarosa p {
    
    color:#D06864;
    font-size: 13px;
    font-weight: bolder;
}

.referenciaamarillo p {
   
    color:#bb9301;
    font-size: 13px;
    font-weight: bolder;
}

#calendar{
    margin: auto;
    font-family:Arial, Helvetica, sans-serif;
    text-align:center;
    color: rgb(118, 118, 118);
    box-shadow:0 0 50px -14px rgba(0,0,0,.8);
    border-radius: 2rem;
  }


  #calendar h2 {
    font-family: Arial, Helvetica, sans-serif;
    color:#D06864;
    text-align: center;
    text-transform:none;
  }

  #calendar h3 {
    background-color: #D06864;
    
  }
  
  
  #calendar td{
    width:52px;
    height:52px;
    background:#ffffff;
    cursor:pointer;
  }

  
  #calendar td:hover:not(.current){
    background:#ddd;
  }
  
  #calendar .lastmonth,#calendar .nextmonth,#calendar .nextmonth ~ *{
    background: antiquewhite;
    color:#999;
  }
  
  #calendar .currentrosa{
    background:#D06864;
    font-weight:700;
    color:#fff;
    text-shadow:0 0 10px rgba(0,0,0,.5);
  }

  #calendar .currentverde{
    background:#487C45;
    font-weight:700;
    color:#fff;
    text-shadow:0 0 10px rgba(0,0,0,.5);
  }

  #calendar .currentamarillo{
    background:#bb9301;
    font-weight:700;
    color:#fff;
    text-shadow:0 0 10px rgba(0,0,0,.5);
  }
  
  
  #calendar tr:last-of-type td:first-of-type{border-radius:0 0 0 5px;}
  #calendar tr:last-of-type td:last-of-type{border-radius:0 0 5px 0;}

@keyframes fade {
    from{opacity: .4}
    to{opacity: 1}
}

/*slider inicio*/

@keyframes slidy {
    0% { left: 0%; }
    20% { left: 0%; }
    25% { left: -100%; }
    45% { left: -100%; }
    50% { left: -200%; }
    70% { left: -200%; }
    75% { left: -300%; }
    95% { left: -300%; }
    100% { left: -400%; }
    }
    
    body { margin: 0; } 
    div#slider { overflow: hidden; }
    div#slider figure img { width: 20%; float: left; }
    div#slider figure { 
      position: relative;
      width: 500%;
      margin: 0;
      left: 0;
      text-align: left;
      font-size: 0;
      animation: 30s slidy infinite; 
    }



/* fin sliders */

/*CALENDARIO*/


.calendario h2, .evento h2 {
    font-family: Arial, Helvetica, sans-serif;  
    background-color: #D06864;
    font-size: 15px;
    font-weight: lighter;
    color:beige;
    text-align: left;
    padding: 1rem;
   
}


.calendariomensual h3 {
    font-family: Arial, Helvetica, sans-serif;
    background-color: antiquewhite;
    color: black;
    font-size: 3opx;
    font-weight: lighter;
}

.calendariomensual h2 {
    padding: 1rem;
}


.circulo {
	width: 8.5rem;
	height: 8.5rem;
    position: absolute;
	border-radius: 50%;
	background:#487C45;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
    margin-left: 2rem;
}

.circulo > h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: white;
    background-color:#487C45;
	font-size: 15px;
	font-weight: bold;
}


.agenda {
    background-color: white;
}

.agenda h1 {

    color: #487C45;
    font-weight:bold;
    font-size: 2em;
    color: #487C45;
    background-color: #ecf1f1;
}

.agenda h3 { 
    background-color: #D06864;
}

.agenda p {
    padding: 1rem;
}

.mensual-verde, .mensual-rosa, .mensual-amarillo {
text-decoration: none;
text-align: center;
margin-left: 2rem;
margin-top: 0.5rem;
margin-block-end: 1rem;
padding: .5em 1em;
border-radius: 1em;
display: inline-block;
font-size: small;
font-family: Arial, Helvetica, sans-serif;
}

.mensual-rosa:hover {
    background-color: #c17a77;
}

.mensual-verde:hover {
    background-color: #60925e;
}

.mensual-amarillo:hover {
    background-color: rgb(158, 125, 7);
}

.mensual-verde {
    background-color:#487C45;    
}

.mensual-rosa {
    background-color:#D06864;
}

.mensual-amarillo {
    background-color: #bb9301;
   
}


.calen {

    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(16em, 100%), 1fr));
    position: relative;
    padding: 1rem;
    margin-bottom: 3rem;
}

.calendariomensual {
    margin-bottom: 3rem;
}

.calendariomensual p {
    text-transform: uppercase;
}

.nombre {
    background-color: antiquewhite;
}


.eventolista {
    display: flex;
}

.eventolista p {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 30px;
}


.amarillo { 

    background-color: #bb9301;
}


.rosa{
    background-color:#D06864;
}

.verde {
    background-color:#487C45;
}

.celeste {
    background-color: #85a2a2;
}


.cuentaregresiva h3 {
    background-color:#F3C521;
    color:black;
    font-family: 'Oswald', sans-serif;
    font-weight: lighter;
    font-size: 25px;
    text-align: center;
}


#comments-container {
    margin-bottom: 3rem;
}

.comment {
    border: 1px solid #ccc;
    margin: 1rem;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.experiencia {
    border: 0;
    background-color: #ecf1f1;
}



.comment textarea {
    width: 100%;
    height: 5rem;
    padding: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}


/* MI AGENDA*/


.login {
    max-width: 300px;
    margin: 16px auto;
    font-size: 16px;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  /* Reset top and bottom margins from certain elements */
  .login-header,
  .login p {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /* The triangle form is achieved by a CSS hack */
  .login-triangle {
    width: 0;
    margin-right: auto;
    margin-left: auto;
    border: 12px solid transparent;
    border-bottom-color:#85a2a2 
  }
  
  .login-header {
    background-color:#85a2a2;
    padding: 20px;
    font-size: 1.4em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
  
  .login-container {
    background:rgb(205, 205, 205);
    padding: 12px;
  }
  
  /* Every row inside .login-container is defined with p tags */
  .login p {
    padding: 12px;
  }

  .login a {
    color:#487C45;
    font-weight: bold;
  }
  
  .login input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    padding: 16px;
    outline: 0;
    font-family: inherit;
    font-size: 0.95em;
  }
  
  .login input[type="email"],
  .login input[type="password"] {
    background: #fff;
    border-color: #bbb;
    color: #555;
  }
  
  /* Text fields' focus effect */
  .login input[type="email"]:focus,
  .login input[type="password"]:focus {
    border-color: #888;
  }
  
  .login input[type="submit"] {
    background:#85a2a2;
    border-color: transparent;
    color: #fff;
    cursor: pointer;
  }
  
  .login input[type="submit"]:hover {
    background-color:#487C45;
  }
  

/* NOVEDADES */

.novedades {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(16em, 100%), 1fr));
    position: relative;
    padding: 1rem;
    padding: 0%;
}

.novedad {
    background-color: rgba(255, 255, 255, 0.729);
}

.vermas {

    font-size: 20px;
    padding: .5em 1em;
    margin-bottom: 3em;
    border-radius: 1em;
    background-color: #85a2a2;
}


/*NEWSLETTER*/

.newsletter {
	display: flex;
	margin: 50px auto;
	max-width: 100px;
	min-width: 320px;
	position: relative;
	overflow: hidden;
	background-color:antiquewhite
}

.newsletter p {
	margin: 0;
	text-align: left;
    padding: 1rem;
    text-transform: uppercase;
}

.newsletter p:first-child {
	color:#D06864;
	text-align: left;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
}
.newsletter input[type="text"] {
	color:#D06864;
	padding: 15px 10px;
	text-align: left;
    width: 100%;
	outline: none;
	border: 0;
	font-size: 10px;
}
.newsletter input[type="text"]::-webkit-input-placeholder {
	color:999;
}

.suscribirse {

	background-color:#D06864;
	color: #fff;
	padding: 1em 2em;
    border-radius: 2em;
	text-align: left;
	width: auto;
	outline: none;
	border: 0;
	font-size: .7em;
	cursor: pointer;
	transition: .4s all ease-in-out;
}

.suscribirse:hover {
	background-color:#487C45;
}

/* MUSEO */

.historia {
 background-color: rgba(255, 255, 255, 0.655);

}

.museo h3{

    font-family: 'Oswald', sans-serif;;
    font-size: 25px; 
}

.imagen img {
    height: 100%;
    object-fit: cover;
}

.videos{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.videos iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
}

.cajavideo h2{
    text-align: left;
}
/* slider museo */

.slideshow-container{
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display:none;
}
.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6 ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover{
    background-color: #F3C521;
}
.text{
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
.numbertext{
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
.puntos{
    text-align: center;
    margin-block-end: 4rem;
}
#botones{
    margin-top: 1rem;
}
.dot{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #F3C521;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #487C45;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

/*CONTACTO*/

.contacto h3{
    background-color: transparent;
    color: #D06864;
    font-weight: bold;
    padding-bottom: 0;
    
}

.contacto p {
    padding-left: 1rem;
}

#textos{
    padding-top: 1rem;
}
#redesMuseo{
    display: flex;
    padding: 1rem;
    justify-content: left;
}

iframe{
    width: 100%;
    aspect-ratio: 16/9;
}



/*PERFIL*/

.perfil {
    background-color:#487C45;
}

.perfil h2 {
    color:white;
    text-transform: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
}

.reservados p {
    text-align: center;
}
.guardados h3 {
    background-color: #487C45;
}

.guardados h3:hover {
    background-color:#85a2a2;
}
.fav:hover {
    background-color:antiquewhite;
}

/* ERROR */

.errorpag {
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: antiquewhite;
}

.errorpag h1
{
    font-size: 3em;
    padding-left: 2rem;
}

.errorpag h2
{
    text-align: left;
    color: #000;
    font-size: 2em;
}

.errorpag p
{

    font-style: italic;
}



@media (min-width: 1024px){
    /*hago invisible la img del menú hamburguesa*/
    
    header label{
       display: none;
    }
    .menu ul {
        flex-direction: row;
    }
   
    .menu li a {
        display: block;
        color: white;
        font-weight: lighter;
        padding: 0.7rem 0rem;
        text-decoration: none;
    }

    header{
        display: grid;
        grid-auto-flow: column;
        justify-content: stretch
    }
    .menu {
        position: initial;
        background: transparent;
        width: min(1030px, 100%);
        height: auto;
        top: 0;
        right: 0;
    }
    
    nav ul li a {
        width: 8rem;
        text-align: center;
    }

    #derecha {
        flex-wrap: initial;
    }
    
    
   /* contacto */
   
   #ubicacion{
    padding-bottom: 5rem;
    width: 700px;
}
.informacion{
    display: flex;
    justify-content: space-between;
}
#textos{
    padding-top: 2rem;
}
#redesMuseo{
    padding-top: 2rem;
}
iframe{
    width: 100%;
}
/*aca termina contacto*/


}

@media (min-width: 637px) {
.contenedora {
    padding: 0 1rem;
}
}