@charset "utf-8";




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

.compras {
    width: 100%;
    height: 100%;
    font-size: 12px;
    background-color: #339933;
    color:black;
    display: flex;
    justify-content: center;
    align-items: center;
  
    
}

body {
    font-family: "trebuchet ms", helvetica, sans-serif;
}

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

ul {
    list-style: none;
}

header,
footer {
    background-color: greenyellow;
}


.fondo {
    background-color: greenyellow;
}


.contenedor {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1em;
}

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

#logo {
    display: block;
    width: 5em;
    
}


/* menu desplegable */

header nav {
    color: white;
}

header nav a {
    color:black;
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav a:hover {
    background-color:black
    color: white;
}

/* boton */
#llamamenu {
    background-color: #99cc33
    color: white;
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
    /* caja flexible */
    display: flex;
    position: relative;
    z-index: 9999;
}

#llamamenu:hover {
    background-color: whitesmoke
}

#llamamenu i { 
    padding: 0;

    margin: auto;
}


/* menu */


.visible {
   
    left: 50%;
    transition: all .25s ease;
}
header nav ul {
    background-color: rgba(255,255,255,.75);
  
    position: fixed;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 9990;
    padding-top: 5em;
    transition: all .5s ease;
}


.resaltar {
   color:red;
    font-style: oblique;
    
}


.suspendido{
   color:red;
}

.noticias {
    padding-bottom: 2em;
    max-width: 75em;
    margin-left: auto;
    margin-right: auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.articulos {
    padding-bottom: 2em;
    max-width: 75em;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
   
    
  
    
    
    
}
.articulos img {
    margin-left: auto;
    max-width: 200em;
   margin-right: auto;
    padding: 1em;
    
  
    
    
    
}


.noticias h3 {
    padding: 1em;
   
    width: 100%;
    margin: auto;
}

.noticias figure {
    width: 45vmin;
    margin: .125em;
    
    
    position: relative;
    
    overflow: hidden;
}

.noticias img {
   
    object-fit: cover;
    object-position: left center;
    width:45vmin;
    height: 45vmin;
    
    display: block;
}

.noticias figcaption {
    background-color: rgba(0, 41, 0, 0.5);
    color: white;
    padding: .5em;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 700;

 
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc( 100% - 2em );
    
    transition: all .6s ease-out;
}


.noticias figure:hover figcaption {
    background-color: rgba(0,60,60,.5);
    top: 0;
    transition: all .2s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.noticias figcaption span {
    display: block;
    font-size: .75em;
    color: #ddd;
    margin-top: .5em;
    text-transform: none;
}



/* textos */
.titulo {
    margin: auto;
    
}

.textos > *,
.textos p:not(:last-child) {
    margin-bottom: 1em;
}



.textos article {
    border: solid 1px rgba(0, 0, 0, 0.25);
    padding: 1em;
    padding-top: 0;
    margin-bottom: 1em;
}

.textos article h4 {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: solid 1px rgba(0, 0, 0, 0.25);
    padding: 1em 0 .5em 0;
    margin-bottom: 1em;
    position: sticky;
    top: 0;
}



.subir {
    text-decoration: none;
    color: #99cc33;
    font-weight: bold;
    font-size: 200%
}

.subir:hover {
    text-decoration: underline;
}



footer {
    font-size: .85em;
}



.explorar {
    background-color: lightcoral;
    border: 4px solid rgba(0,0,0,.25);
    border-radius: 50%;
    box-shadow: 0 .15em .1em rgba(0,0,0,.215);
    color: white;
    cursor: pointer;
    display: flex;
    width: 4rem;
    height: 4rem;
    
 
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9950;
}

.explorar > i {
    margin: auto;
    padding: 0;
    font-size: 3.5rem;
}



@media (min-width: 35em) {
    
    #llamamenu {
        display: none;
    }
    
   
    header nav ul {
        display: flex;
        flex-wrap: wrap;
        
        
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        padding-top: 0;
    }
    
    header nav ul.visible {
        left: auto;
    }

}


@media (min-width: 40em) {
    
    
    .galeria figure {
        width: 23vmin;
    }
    
    .galeria figure img {
        height: 23vmin;
        width: 23vmin;
    }
    
    .galeria figure:hover figcaption {
        background-color: rgba(60,0,60,.5);
        top: 0;
        transition: all .5s ease-in;
    }
    
 
    .textos > .articulos {
        
        justify-content: space-between;
    }
    
    
}


@media (min-width: 50em) {
    .galeria h3 {
        margin-bottom: 2em;
    }
    h3 {
        background-color: rgba(0,60,60,.1);
    }
    .textos h3 {
        padding: 1em;
    }
}


@media (min-width: 75em) {
    .galeria {
        background-color: rgba(0,60,60,.15);
        margin-top: 3em;
        margin-bottom: 2em;
    }
}

 
 .video {
    padding: 1em;
         width: 100%;
         height: auto;
   
          }
         
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v67/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
                   
         
       
 
/* calendario*/
.contenedoreventos{
    max-width: 60rem;
    margin: auto;
    text-align: center;
    padding-bottom: 1em;
    padding-top: 1em;
}
.contenedoreventos h1{
    margin-bottom: 0;
}

.calendariomain .contenedor{
    max-width: 60rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.calendariomain #contenedorcalendario{
    align-items: center;
    text-align: center;
        
}

.calendariomain .contenedorinfo{
    padding: 1em;
    width:  22rem;
    background-color: #18cb11;
    
}

@media (min-width: 600px){
     .calendariomain .contenedorinfo{
    width:  22rem;
}
     
}

/* @media desde 992px de ancho*/
@media (min-width: 992px){
    .calendariomain .contenedorinfo{
    width:  38rem;
}
}


.calendariomain .contenedorinfo h5{
    color: white;
    margin:0;
    margin-bottom: 1em;
    margin-top: 1em;
}

.calendariomain .contenedorinfo .contenedordiv{
    background-color: white;
    padding: 1em;
    display: flex;
    margin-bottom: 1em;
    align-items: center;
    box-shadow: .5em .5em .4em #16a216;
    border-radius: .4em;
}

.calendariomain .contenedorinfo ul li{
    color:#18cb11;
    font-size: 13px;
    text-align: center;
}

.calendariomain .contenedorinfo .horainfo{
    background-color: white;
    padding: 0;
    margin-left: .5em;
    padding-left: 0.5em;
    border-left: .4px solid #adadad;
    display: flex;
    flex-direction: column;
}

.calendariomain .mas{
    background-color: #18cb11;
    margin: .5em;
    text-align: left;
    padding: .3em .5em ;
    
    color: white;
    text-decoration: none;
    border-radius: .4em;
    box-sizing: border-box;
}

.calendariomain .contenedorinfo h4{
    margin:0;
    
}

.calendariomain .contenedorinfo p{
    margin:0;
    
}
.calendariomain article{
    background-color: #ffffff;
    width: 22em;
}
.calendariomain main article ul {
    list-style-type: none;
}
.calendariomain .mes .ant {
    font-size: .9em;
}
.calendariomain .mes .sig {
    font-size: .9em;
}
.calendariomain .mes ul li {
    color: #adadad;
    
}
.calendariomain .mes ul .ant:hover{
    color: #18cb11;
    font-size: .9em;
}
.calendariomain .mes ul .sig:hover{
    color: #18cb11;
    font-size: .9em;
}

.calendariomain .mes {
    display: flex;
    padding: 20px 20px;
    margin-bottom: 1em;
}

.calendariomain .mes ul{
    display: flex;
    flex-direction: row;
    width: 22em;
    align-items: center;
    justify-content: space-between;
}
.calendariomain .mes li:nth-child(2){
    color:#22745e;
    font-weight: 700;
    font-size: 20px;
}

.calendariomain .mes ul {
    margin: 0;
    padding: 0;
}
.calendariomain .semana {
    padding: 5px 0;
    width: 22em;
    margin-bottom: .5em;
}
.calendariomain .semana li {
    display: inline-block;
    width: 13%;
    color: #18cb11;
    text-align: center;
    font-weight: 00;
}
.calendariomain .dias {
    padding: 5px 0;
    width: 22em;
}
.calendariomain .otromes{
    color: #adadad;
}
.calendariomain .dias li {
    list-style-type: none;
    display: inline-block;
    margin-top: .5em;
    margin-bottom: .5em;
    width: 3em;
    padding: .5em;
    text-align: center;
    font-size: 15px;
    box-sizing: border-box;
    
}
.calendariomain .dias .seleccionado{
    border-bottom: .4px solid #18cb11;
    color: #18cb11;
}
.calendariomain .dias .seleccionadorojo{
  
    color: red;
}

.calendariomain .dias .diaseleccionado{
    color: white;
    background-color: #18cb11;
}

.calendariomain .dias .seleccionado:hover{
    color: white;
    background-color: #18cb11;
}

.calendariomain .contenedori{
    max-width: 60rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    padding-top: 1em;
}
.calendariomain a{
    max-width: 60rem;
    
}

/*contacto*/

.bodycontacto{
    background-color: green;
}

.contacto {
    margin: 0em 0em 0em 0em;
    
    color: black;
    font-size: 1.3em;
    font-weight: lighter;
    height: 18em;
    padding: 14em 1em 0em 1.5em;
}

.contacto h2{
     font-family: sans-serif;
 color: black;
  font-size: 0.8em;
    margin-bottom: 0.5em;
   
}


.contacto p{
      font-family:sans-serif;
    font-size: 0.6em;
}

.formularioc{
    height: 20em;
   

}

#contactop{
    color: black;
    font-family: sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    margin-left: 2em;
}

form{
    padding: 1em 2em;
    display: flex;
    flex-direction: column;
}

input{
    padding: 0.8em;
    margin: 0.5em;
}

textarea{
      padding: 0.8em;
    margin: 0.5em;
}

button{
  padding: 0.8em;
    margin: 0.5em;
    width: 5em;
}

.confirmacioncontacto {
    position:fixed;
    background-color: rgba(0, 0, 0, 0.84);
    width: 100%;
    height: 50%;
    color: black;
    z-index: 9999;
    bottom: 5em;
    right: 0%;
    transition: all .0s ease;
    display: flex;
    flex-direction: column;
    padding: 8em 3em;
}

.butoncontactodos {
    color: #6f6f6f;
    background-color: #ffffff;
    width: 4em;
    height: 1.9em;
    text-align: center;
    text-decoration: none;
    padding: 0.4em;
    margin: 0.4em 0.48em;   
}

.butoncontacto{
    margin: 2em 0em;
}

.nuestrasredes{
    text-align: center;
    padding-bottom: 1em;
   
}

.nuestrasredes h2{
      font-family: sans-serif;
    font-weight: lighter;
    color: black;
    font-size: 1.5em;
padding: 2em 0em 1em 0em;
}
.nuestrasredes ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  
}
.nuestrasredes li {
    width: 10%;
    margin: 0em 1em 2em 1em;
}
.nuestrasredes p{
    font-family: sans-serif;
    font-weight: lighter;
    color: white;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}
#email{
   
    height: 3em;
width: 3em;

}

.mail {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: black;
    margin-bottom: 2em;
   font-size: 1em;
    justify-content: center;
    
}

.mail p{
     font-family:sans-serif;
    font-size: 1em;
    padding-top: 1em;
}

.ubicacion{
    width: 100%;
}


iframe {
    width: 95%;
    height: 19.5em;
    margin: 0em 0.5em 4em 0.5em;
    border: black 0.1em solid;
}

