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

*,
*::after,
*::before
 {

  box-sizing: border-box;

  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}

.contenedora {
    width: min(50rem, 100%); /* limita el ancho a 800px */
    margin-inline: auto; /* centra "la caja" horizontalmente */
    padding: 1rem; /* relleno igual a un renglón */
  }

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 5em;
}

header{
    background-color: #FFDB8E;
    list-style: none;
    box-sizing: border-box;
}
header {
    box-shadow: 0 4px 2px hsl(0 0% 0% / 0.25); /* sombra difusa  */
    /* "pegado" al borde superior de la ventana */
    position: sticky;
    /* distancia 0 del borde */
    top: 0;
    /* capa superior arriba de casi todo */
    z-index: 8000;
  }
  
  
  header .contenedora {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }


  #logo{
    width: 30%;
  }

  .fecha{
    font-weight: 3em;
    color: white;
    font-family: 'poppins';
    padding-left: 0.5em;
  }

  .index{
    background-color: #7bb78484;
  }


 /* botón "hamburguesa" */
.menu-btn,
.menu-fondo {
  border-radius: 50%;
  padding: .75rem;
  width: 3rem;
  aspect-ratio: 1;cursor: pointer;
  transition: all 0.3s ease-out; /* anima el "hover" */
  /* fijo, no "scrolea", no genera scroll */
  position: fixed;
  /* emplazamiento 1 renglón del borde superior */
  top: 1em;
  /* emplazamiento 1 renglón del borde derecho */
  right: 1em;
  /* en capa superior, casi arriba de todo */
  z-index: 9000;
}

/* fondo del botón "hamburguesa" */
.menu-fondo {
  background: hsl(0 0% 100% / 0.25);
  box-shadow: -5px 5px 5px hsl(180 100% 4% / 0.2);
  /* capa superior, pero abajo del menu ppte dicho */
  z-index: 8000;
}

/* cuando "nav" tiene la clase "menuVisible" */
.menuVisible .menu-fondo {
  background: rgba(240, 199, 111, 0.90);
  width: 230vw;
  inset: -100vw -100vw auto auto;
  
}

/* cada barra de la "hamburguesa" */
.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  background: rgb(36, 36, 36);
  transition: all 0.3s ease-out;
  /* capa superior, pero no parece */
  position: relative;
  /* capa superior, casi arriba de todo */
  z-index: 9000;
}

/* cada barra, transformacion para formar la "X" */
.menuVisible .menu-btn .btn-linea {
  transform: rotate(180deg);
}
/* Las tres barras para formar la "X" */
.menuVisible .menu-btn .btn-linea:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
  opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* menú propiamente dicho */
nav ul {
  opacity: 0; /* transparente */
  visibility: hidden;  /* no se ve */

  /* sale del fondo, con relación a su contenedor */
  position: absolute;
  /* emplazamiento, 1 r-renglon del borde derecho */
  right: 1rem;
  /* emplazamiento, 100% + 4 r-renglones del borde superior */
  top: calc(100% + 4rem);
  /* capa superior, arriba de todo */
  z-index: 9999;

  transition: all .5s ease; /* anima cuando "nav" NO tiene la clase "menuVisible" */
}

/* el menu cuando "nav" tiene la clase "menuVisible" */
.menuVisible ul {
  visibility: visible; /* se ve */
  opacity: 100%; /* opaco */
  transition: all .5s .2s ease; /* anima cuando "nav" tiene la clase "menuVisible" */
  margin-top: -2em;
}



/* cada vínculo del menu */
nav ul li a {
  border-bottom: solid 4px transparent;
  color: rgb(36, 36, 36);
  display: block;
  font-size: 2em;
  font-family: 'Bebas Neue';
  text-align: end;
  padding: 0.5rem;
  text-decoration: none;
}

nav ul li a:hover {
  color: white;
  transition: all .3s;
}


#home {
    color: #396773;
    font-family: 'Bebas Neue';
    font-weight: 100;
}


.portada{
    width: 100%;
}

.imagen_caja{
    border-radius: 0.5em 0.5em 0em 0em;
    width:100%
}

.imagen_caja2{
    width: 100%;
}

#visitasguiadas{
    border-radius: 0.5em 0.5em 0em 0em;
}


h2{
    font-family: 'Poppins';
    font-weight: 800;
    font-size: larger;
    padding-left: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.caja{
    background-color: #7BABB7;
    border-radius: 0.50em;
    box-shadow: 0 4px 2px #0000003f;
    padding-bottom: 0.5em;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1.5em;
}

.caja2{
    background-color: #7BABB7;
    border-radius: 0.5em;
    box-shadow: 0 4px 2px #0000003f;
    padding-bottom: 0.5em;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1.5em;
    margin-bottom: 2em;
}

.caja3{
    background-color: #7BABB7;
    border-radius: 0.5em;
    box-shadow: 0 4px 2px #0000003f;
    padding-bottom: 0.5em;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1.5em;
    margin-bottom: 2em;
    margin-top: 0.7em;

}

#actividades {
  background-color: whitesmoke ;
  margin-top: 1em;
}

#proa{
    background-color:#68AE89;
}

#esculturas{
    background-color: #68AE89;
}

#arte_arg{
    background-color: #68AE89;
}

#ansiada{
    background-color:#68AE89;
}

#sillon{
    background-color:#68AE89;
}

#cera{
    background-color: #B55758;
}

#proa21{
    background-color: #B55758;
}

#matheu{
    background-color: #B55758;
}

#viva{
    background-color: #B55758;
}
#caminito{
    background-color: #B55758;
}
#bomberos{
    background-color: #B55758;
}

#mapa_d{
    background-color: #B55758;
    margin-top: 0.7em;
}

p{
    font-family: 'Poppins';
    font-size: smaller;
}

h4{
    font-family: 'Poppins' ;
    font-weight: 800;
}

.caja img{
    width: 100%;
}

.texto_caja{
    padding: 0.5em;
    display: flex;
    align-content: stretch;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.infogeneral{
    background-color: #68AE89;
    margin: 1em 2em 1em 2em;
    border-radius: 0.50em;
    box-shadow: 0 4px 2px #0000003f;
    padding: 0.5em;
}

.todainfo{
  margin-bottom: 3em;
    
}

p.inicio {
    margin-left: 0.5em;
    margin-bottom: 0.5em;
}

p.recorrido {
    margin-left: 0.5em;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

p.letras_chicas2{
    margin-left: 1em;
    margin-bottom: 0.5em;

}


article h4{
    padding-left: 0.5em;
}

#info{
    margin-top: 3em;
    background-color: #68AE89;
}

.imagen{
    width:100%;
    border-radius: 0.5em 0.5em 0em 0em;
}

#mapa{
    width: 100%;
}

#casa{
    background-color: #68AE89;
}
#expo{
    background-color:#68AE89;
}

#benito{
    background-color: #F2B6B8;
}
#elmuseo {
    background-color: #F2B6B8;
}

#historiadebenito{
    margin-left: 2em;
    margin-right:2em;
}

#historiadelmuseo{
    margin-left: 2em;
    margin-right:2em;
}


.titulo{
    border-radius: 0.50em;
    margin-bottom: 0.5em;
    margin-top: 1em;
    margin-left: 2em;
    margin-right: 2em;
}


#direccion{
    background-color: #B55758;
    padding-bottom: 0.2em;
    
}

#lugares{
    background-color: #B55758;
}

#obras{
    background-color: #68AE89;
    margin-top: 1em;
}

.historia{
    background-color: #F2B6B8;
}

#nuestra_body{
    background-color: #fde6e7;
}

figcaption{
    font-family: 'Poppins';
    font-size: xx-small;
}


.main{
  position: relative;
}

.topright {
    position: absolute;
    top: 10em;
    right: 0.5em;
    font-size:medium;
  }


#historia{
    color:whitesmoke;
    font-family: 'Bebas Neue';
    font-weight: 100;
  }

p.historiatexto{
    margin-bottom: 2em;
    margin-top: 1em;
  }


#recorre {
    color: #6A1C1D;
    font-family: 'Bebas Neue';
    font-weight: 100;
}

.letras_chicas{

    font-family: 'Poppins';
    font-size:small;
    margin-left: 2.5em;
}


#btn-menu{display: none;}

header label{
    display: none; 
    width: 3em; 
    height: 3em; 
    padding: 1em; 
}

header label:hover{
    cursor: pointer; 
    background: rgba(0,0,0,0.3); 
}

ul,
ol {
  list-style: none; 
}

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

.contenedor figure{
    position:relative;
     cursor: pointer;
     overflow: hidden;
}

.contenedor figure img{
     transition: all 400ms ease-out;
     will-change: transform;
}


div.gallery {
    border: 1px solid rgb(49, 49, 49);
    width: 60%;
    margin-top: 2em;
    background-color: #68AE89;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }


  #galeriaoficial{
    display: flex;
    flex-direction: column;
    align-items: center;

  }


  .desc{
    font-family: 'poppins';
  }


  .titulito{
    font-weight: bold;
  }



  label{cursor: pointer;}

/* Contenedor para centrar */
.ContainerCenter{
  display: flex;
  align-items: center;
  flex-direction: column;
}
/* Input */
input{display: none}






footer{
    background-color: #FFDB8E;
    font-family: 'Poppins';
    font-size: small;
    padding: 2em;
}


.visita{
  background-color: #ffdb8e9a;
}



.contianer {
  width: max-content;
  height: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  top: 10%;
  right: 0%;
  width: 100%;
  height: 100%;
}
.calendar {
  margin-top: 1.5em;
}

.calendar-header {
  background:#FFDB8E;
  border-radius: 0.5em 0.5em 0em 0em  ;
  display: flex;
  font-size: 1.3em;
  font-weight: 700;
  color: black;
  padding: 0.5em;
  font-family: 'Poppins';
  justify-content: center;

}

.calendar-week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: 550;
  color:black;
  font-family: 'Poppins';
}

.calendar-week-days div {
  display: grid;
  place-items: center;
  color: var(--bg-second);
  height: 50px;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5em;
  color: var(--color-txt);
  font-family: 'poppins';
  border-radius: 100%;
  border-color: #CA921A;
}
.calendar-days div {
  width: 2.5em;
  height: 1.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border: 2px solid #CA921A;
  border-radius: 180%;
  padding: 5px;

}

.calendar-days div span {
  position: absolute;
}
 .calendar-days div:hover {
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 100%;
  color: var(--dark-text);
}


#visitas{
  font-family: 'Bebas';
  background-color: #FFDB8E;
}

#reservas {
  font-family: 'Bebas Neue';
  font-weight: 550;
  font-size: 2em;
  padding: 0.5em 0em 0em 0.5em;
}

#reservalugar{
  font-family: 'poppins';
  padding-left: 1em;
  padding-bottom: 0.5em;

}


.reservas {
  font-family: 'Bebas Neue';
  font-weight: 550;
  font-size: 2em;
  padding-left: 1em;
  padding-top: 0.9em;
  padding-bottom: 0em;
}


.reservas2 {
  font-family: 'Bebas Neue';
  font-weight: 550;
  font-size: 2em;
  padding-left: 1em;
  padding-bottom: 0em;
}

#tituloreserva{
  background-color: #FFDB8E;
  border-radius: 0.5em;
  margin-bottom: 0.5em;
  margin-top: 1em;
  margin-left: 2em;
  margin-right: 2em;
}



.input-icono {
  background-image: url(../imagenes/calendario.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 20px;
  display: flex;
  align-items: center;
  width: 300px;
  padding-left: 28px;
  height: 30px;
}

.input-icono2 {
  background-image: url(../imagenes/reloj.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 20px;
  display: flex;
  align-items: center;
  width: 300px;
  padding-left: 28px;
  height: 30px;
}





.input-icono3 {
  background-image: url(../imagenes/bomberos.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}

.input-icono4 {
  background-image: url(../imagenes/caminito.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}

.input-icono5 {
  background-image: url(../imagenes/restaurante.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}

.input-icono6 {
  background-image: url(../imagenes/matheu.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}

.input-icono7 {
  background-image: url(../imagenes/proaa.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}


.input-icono8 {
  background-image: url(../imagenes/cera.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 4em;
  padding-left: 4em;
  height: 2em;
}







.subtitulo{
  font-family: 'poppins';
  padding-left: 2.4em;
}

.sala{
  font-family: 'Poppins';
  font-weight: 600;

}

.botonsala{
  border: 0.1em solid #CA921A;
  border-radius: 5em;
  margin: 1em;
}

.subsubtitulo{
  font-family:'poppins' ;
  font-size: 0.6em;
}

.botonsala div:hover {
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 5em;
  color: var(--dark-text);
}

.botonsala div{
  padding: 1.3em ;
}

#entradas{
  display: grid;
  grid-template-columns: 0.2fr 0.2fr 0.2fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
}

#entradas li{
  border: 0.1em solid #CA921A;
  border-radius: 5em;
  margin: 1em;
  padding: 0.5em;
  font-family: 'Poppins';
  display: flex;
  justify-content: center;
}

#entradas li:hover{
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 5em;
  color: var(--dark-text);
}

#horario{
  display: grid;
  grid-template-columns: 0.2fr 0.2fr 0.2fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
}

#horario li{
  border: 0.1em solid #CA921A;
  border-radius: 5em;
  margin: 1em;
  padding: 0.5em;
  font-family: 'Poppins';
  display: flex;
  justify-content: center;
}

#horario li:hover{
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 5em;
  color: var(--dark-text);
}

.antesub{
  padding-left: 2em;
  font-size: 1em;
}

#subsubtitulo{
  padding-top: 1em;
  padding-left: 2.4em;
  margin-bottom: 4em;
  padding-right: 1.8em;
}


.finalizar a{
  border: 0.1em solid #CA921A;
  font-family: 'Poppins';
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: 600;
  border-radius: 5em;
  padding: 0.5em;
  margin-left: 4em;
  margin-right: 4em;
  margin-top: 2em;
  margin-bottom: 3em;


}


.finalizar a:hover{
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 5em;
  color: var(--dark-text);
}


.cambios a{
  border: 0.1em solid #CA921A;
  font-family: 'Poppins';
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: 600;
  border-radius: 5em;
  padding: 0.5em;
  margin-left: 4em;
  margin-right: 4em;
  margin-top: 1em;
}

.cambios a:hover{
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
  background-color: #F0C15D;
  border-radius: 5em;
  color: var(--dark-text);
}



.container {
  position: relative;
  margin-left: 3em;
  margin-right: 3em;
  margin-top: 1em;
}


.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 1em;
  margin-top: -1.5em;
  color: white;
  font-weight: bold;
  font-size: 1.25em;
  border-radius: 5em;
  user-select: none;
  -webkit-user-select: none;
}


.next {
  right: 0;
  border-radius: 5em;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


.numbertext {
  color: #f2f2f2;
  font-size: 0.75em;
  padding: 0.5em 0.75em;
  position: absolute;
  font-family: 'poppins';
  font-weight: 500;
}


.caption-container {
  text-align: center;
  background-color: #222;
  padding: 0.125em 1em;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}


.column {
  float: left;
  width: 16.66%;
}


.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.letras_chicas3 {
  font-family: 'Poppins';
  margin-left: 2.5em;
  font-weight: 600;
  text-decoration: none;
}


.footer {
  background-color: #FFDB8E;
  display: flex;
  flex-direction: column;

}


.imgfooter {
  width: 40%;
  margin-bottom: 1em;
}












@media (min-width: 25em) {

}

/* cambios a partir de los 640px */
@media(min-width: 57.5em) {

  /* el menú deja de ser fijo */
  header nav {
    /* para que esté en capa superior pero que no parezca */
    position: relative;
  }
    
  /* botón "hamburguesa" oculto */
  .menu-btn {
    display: none;
  }

  /* menu visible */
  header nav ul {
    /* caja flexible para menu horizontal*/
    display: flex;

    /* para que esté en capa superior pero que no parezca */
    position: relative;
    opacity: 1;
    visibility: visible;
  }
    
  /* items de lista  que contienen los vínculos del menu */
  header nav ul li {
    min-width: 4em; /* que no midan menos de: */
    margin: .25em 0 .25em .25em; /* separación */
  }

  /* vínculos del menu principal */
  header nav ul li a {
    background: rgba(233, 181, 70, 0.9);
    border-radius: .25em ;
    color: rgb(36, 36, 36);
    font-family: 'Bebas Neue';
    font-size: 1.3rem;
    width: auto;
    padding: .25em .5em .15em;
    text-align: center;
    display: block; /* para que sean "cajas" */
  }

  /* cuando el cursor se posiciona sobre los vínculos */
  header nav ul li a:hover {
    background-color: rgba(230, 167, 32, 0.9);
    color: white;
  }


label{cursor: pointer;}

/* Contenedor para centrar */
.ContainerCenter{
  display: flex;
  align-items: center;
  flex-direction: column;
}
/* Input */
input{display: none}

  
}

a{
  color: black;
}




div.direccioncaja{
  padding: 0.5em;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;

}






@media (min-width: 760px) {
  #actividades {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    justify-content: center;
  }
  #recorre_lugares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    justify-content: center;
  }
  #index_expo {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    justify-content: center;
  } 

  .menuVisible .menu-fondo {
    background: rgba(240, 199, 111, 0.90);
    width: 180vw;
  }

  #logo{
    width: 15%;
  }

  header{
    padding-bottom: 1em;
  }

  #reservasmain {
    padding-left: 5em;
    padding-right: 5em;
    padding-bottom: 28em;
  }

  .botonsala{
    border: 0.1em solid #CA921A;
    border-radius: 5em;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1em;
}
#salas{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;

  }


  .calendar {
    width: 50%;
    margin-top: 1.5em;
  }

  .calendar-days{
    margin-left: 0.5em;
  }

  }


  .footer {
    background-color: #FFDB8E;
    display: flex;
    flex-direction: row;
  
  }
  
  
  .imgfooter {
    width: 90%;
    margin-bottom: 1em;
  }











@media(min-width: 992px) {
#galeriaoficial {
  padding-left: 2.2em;
  padding-right: 2.2em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 1em;
}

#index_expo {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

  #actividades {
    grid-template-rows: 1fr 1fr;
  }
  #recorre_lugares {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
  }

  #historiadelmuseo article {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2em;
    margin-bottom: 5em;
    padding-left: 2em;
    padding-right: 2em;
  }
#museo-cajita{
  width:300%;
}  
#imagenmuseo{
    border-radius: 1em 0em 0em 1em;
}
#historiadebenito article {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2em;
  padding-left: 2em;
  padding-right: 2em;
}

#benito-cajita{
width: 200%;
}

#benito-cajita img {
  border-radius: 0em 1em 1em 0em;
}

#dire {
  display:flex;
  flex-direction: column;
  justify-content: center;
}

#mapa_d {
  display: flex;
  gap: 2em;
  align-self: center;
  position: relative;
}
#mapa {
  width: 50%;
  border-radius: 0.5em 0em 0em 0.5em;
  margin-left: 0.5em;
  margin-top: 0.5em;

}

#mapa_d div {
  padding-top: 2em;
}

#visitasmain {
  padding-left: 5em;
  padding-right: 5em;
}

.finalizar a {
  margin-left: 12em;
  margin-right: 12em;
}

#reservasmain {
  padding-left: 5em;
  padding-right: 5em;
  padding-bottom: 7em;
}

.cambios a {
  margin-left: 12em;
  margin-right: 12em;
}

#logo {
  width: 10%;
  margin-left: 1em;
}

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


.contenedora {
  width: 100%;
  }

  .container {
    position: relative;
    margin-left: 6em;
    margin-top: 1em;
    max-width: 80%;

  }


  .footer {
    background-color: #FFDB8E;
    display: flex;
    flex-direction: row;
  
  }
  
  
  .imgfooter {
    width: 50%;
    margin-bottom: 1em;
  }





}