*,
*::after,
*::before
 {
  
  box-sizing: border-box;

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

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



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}



h1,
h2,
h3,
h4,
h5,
h6,
p { 
  margin-block-end: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
color: hsl(32, 100%, 53%);

}

h1,
h2{
  text-align: center;
  margin-bottom: 2em;
}


a {
  text-decoration: none;
}



ul,
ol {
  list-style: none; 
  padding: 0; 
}


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

  
  
}



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





 /* MENU */

/* Estilos generales */
.nav-container {
  padding-block: 8px;
  margin-block: 0rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: baseline;
}

header {
  background-color: #e0f7fa;
  box-shadow: 0px 5px 6px hsla(0, 0%, 0%, 0.541);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

header img {
  width: 5rem;
}

header h1 {
  font-size: 1rem;
  margin: 0;
}

.menu li {
  position: relative;
  display: inline-block;
  font-size: 1rem;
}

.menu li:hover ul {
  display: block;
}

.menu ul {
  display: none;
  position: absolute;
  background-color: #3d3de9;
  padding: 1rem;
}

menu ul li a{
  align-items: center;
}


.menu a:hover {
  color: rgb(255, 149, 0);
}

.abrir_menu, .cerrar_menu {
  display: none;
}




nav ul li a {
  text-decoration: none;
  color: #000;
}

nav .news-button {
  background-color: #ff8800;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button .news-button {
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

button .news-button:hover {
  background-color: #b74e27;
}  




/* INICIO ------------------------------------------------*/

.hero1 {
  text-align: center;
  padding: 50px 20px;
  background-color: #e9f7fe;
}

.hero1 h1 {
  font-size: 2.5em;
}

.hero1 p {
  font-size: 1.2em;
  margin: 20px 0;
}

.hero1 .cta-button {
  background-color: #ff8800;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.cta-button{
  background-color: #ff9d00;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  margin-top: 20px;
}

.benefits {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.benefits h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-item {
  background-color: #e9f7fe;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  font-size: 1.2em;
transition: background-color 0.3s ease; /* Transición suave para el cambio de color */
}

.benefit-item:hover {
    background-color: #f9ae00; /* Color de fondo al pasar el mouse */
   
    transform: scale(1.1) rotate(5deg);
  }





.involve-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  margin-top: 20px;
}

.testimonials {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.testimonials h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial {
  transition: background-color 0.3s ease; /* Transición suave para el cambio de color */
}

.testimonial:hover {
  background-color: lightblue; /* Color de fondo al pasar el mouse */
  transform: scale(1.1);
}


.testimonial p {
  font-size: 1em;
  margin-bottom: 10px;
}

.testimonial h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}


.join-movement {
  text-align: center;
  padding: 50px 20px;
  background-color: #e9f7fe;
}

.join-movement h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.join-movement p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.faq {
  padding: 50px 20px;
  background-color: #fff;
}

.faq h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}




.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1em;
}

.support {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.support h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.support p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.support form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support form input, .support form button {
  padding: 10px;
  margin-bottom: 10px;
  width: 80%;
  max-width: 400px;
}

.support form button {
  background-color: #ff8800;
  color: #fff;
  border: none;
  cursor: pointer;
}

.partners {
  padding: 50px 20px;
  text-align: center;
}

.partners h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners-logos img {
  width: 100px;
  height: auto;
}




.hero1 {
  text-align: center;
  padding: 50px 20px;
  background-color: #e9f7fe;
}

.hero1 h1 {
  font-size: 2.5em;
}

.hero1 p {
  font-size: 1.2em;
  margin: 20px 0;
}

.hero1 img {
border-radius: 2em;
  margin-top: 20px;
  box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
  object-fit: cover;
}

.hero1 img:hover {
  filter: hue-rotate(90deg);
  transform: translateX(10px);
  }
  
  @keyframes moveFade {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    50% {
      transform: translateX(20px);
      opacity: 0.5;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .hero1 img:hover {
    animation: moveFade 0.5s ease-in-out;
  }
  





.hero1 .cta-button {
  background-color: #ff8800;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
  margin-top: 1rem; /* Add margin-top to position the button */
  display: inline-block; /* Ensure the button is inline-block for centering */
}

/* Añadir transición a todos los botones */
button, .cta-button, .involve-button, .news-button {
  transition: background-color 0.3s, color 0.3s;
}

/* Estilo para el botón cuando el cursor pasa por encima */
button:hover, .cta-button:hover, .involve-button:hover, .news-button:hover {
  background-color: #fff;
  color: #ff8800;
  border: 2px solid #ff8800;
}












/* HISTORIAL ------------------------------------------------*/


.header-image {
  text-align: center;

}

.hero {
  background: #d4f0ff;
  padding: 50px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}


.about {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.text-left {
  text-align: left;
  display: inline-block;
 
}

.route {
  background: #ffd68b;
  padding: 50px 0;
}

.route h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.route ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.route ul li {
  margin-bottom: 10px;
}

.call-to-action-2 {
  background: #d4f0ff;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cta-content-2 {

  margin-bottom: 20px;
}

.cta-content-2 h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-content-2 p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-content-2 .button {
  background: #ff8000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.cta-content-2 .button:hover {
  background: #ff6500;
}



/* Line colors */
.line-e { color: #ffcc00; }
.line-a { color: #00ccff; }
.line-sarmiento { color: #990000; }
.line-g { color: #66cc00; }
.line-b { color: #ff6600; }
.line-d { color: #ff0066; }
.line-f { color: #cc33ff; }
.line-san-martin { color: #003366; }
.line-mitre { color: #0099cc; }
.line-belgrano-norte { color: #660099; }

.route ul {
  text-align: left;
  display: inline-block;
  max-width: 80%;
  margin: 0 auto;
}

.hero img{
border-radius: 2em;
box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
object-fit: cover;
transition: filter 0.3s ease-in-out;
}

.hero img:hover {
filter: hue-rotate(90deg);
transform: translateX(10px);
}

@keyframes moveFade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero img:hover {
  animation: moveFade 0.5s ease-in-out;
}



.call-to-action-2 {
  background: #d4f0ff;
  padding: 50px 0;
}

.container-2 {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  max-width: 100%;
  margin: 0 auto;
  gap: 1em;
}


.cta-content-2 {
  flex: 1; 
  padding-right: 20px; 
}

.img-container-2 {
  flex: 1; 
  text-align: center; 
  display: flex;
  justify-content: flex-end; 
}

.img-container-2 img {

  max-width: 100%; 
  height: auto; 
  align-self: flex-start; 

  width: auto; 
  border-radius: 2em;
  box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
  }
  
  .img-container-2 img:hover {
  filter: hue-rotate(90deg);
  transform: translateX(10px);
  }
  
  @keyframes wobble {
    0% {
      transform: translateX(0%);
    }
    15% {
      transform: translateX(-25%) rotate(-5deg);
    }
    30% {
      transform: translateX(20%) rotate(3deg);
    }
    45% {
      transform: translateX(-15%) rotate(-3deg);
    }
    60% {
      transform: translateX(10%) rotate(2deg);
    }
    75% {
      transform: translateX(-5%) rotate(-1deg);
    }
    100% {
      transform: translateX(0%);
    }
  }
  
  .img-container-2 img:hover {
    animation: wobble 1s ease-in-out;
  }






.container-3 {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
}

.container-3 ul {
  width: 48%; 
  margin-left: 2rem;
  padding-left: 0;
  list-style-type: none;
}

.container-3 img {
  width: 48%; 
  height: auto;
  border-radius: 22px;
}



.mapa-image img {
  width: auto; 
  height: 700px;
  border-radius: 2em;
  box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
  }
  
  .mapa-image img:hover {
  filter: hue-rotate(90deg);
  transform: translateX(10px);
  }
  
  @keyframes swing {
    20% {
      transform: rotate(15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    60% {
      transform: rotate(5deg);
    }
    80% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  
  .mapa-image img:hover {
    animation: swing 1s ease-in-out;
  }






/* APOYAR -------------------------------------------*/


.btn-firmar {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.intro {
  text-align: center;
  background-color: #e6f7ff;
  padding: 20px;
}

.importance, .donation, .petition {
  padding: 20px;
  margin: 20px 0;
}

.importance h3, .donation h3, .petition h3 {
  color: #333;
}

.importance p, .donation p, .petition p {
  color: #666;
}

.donation-options {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}

.donation-option {
  text-align: center;
}

.donation-option img {
  max-width: 100px;
  margin-bottom: 10px;
}

.btn-donar {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.petition-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.petition-form input, .petition-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-enviar {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}



.logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.logos img {
  max-width: 50px;
}



.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.logo img {
  height: 50px;
  vertical-align: middle;
}

.logo h1 {
  display: inline;
  margin-left: 10px;
  vertical-align: middle;
}


.petition {
  background-color: #ffe0b3; 
  border-radius: 22px;
  padding: 20px;
}

.donation {
  background-color: #e6f7ff; 
  border-radius: 22px;
  padding: 20px;
}

.donation {
  background-color: #e6f7ff; 
  border-radius: 22px;
  padding: 20px;
}

.donation-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; 
  margin-top: 20px;
}

.donation-option {
  background-color: #fff;
  border-radius: 10px;  
  padding: 20px;
  flex: 1;
  text-align: center;
}

.donation {
  background-color: #e6f7ff; 
  border-radius: 22px;
  padding: 20px;
}

.donation-options {
  display: flex;
  justify-content: space-between;
  align-items: stretch; 
  gap: 1rem; 
  margin-top: 20px;
}

.donation-option {
  background-color: #fff; 
  border-radius: 10px; 
  padding: 20px;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.donation-option {
  background-color: #fff; 
  border-radius: 10px; 
  padding: 20px;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.donation-option img {
  width: 140%; 
  height: auto; 
  margin-bottom: 10px;
}

.donation-option .btn-donar {
  width: 100%;
  padding: 10px;
  background-color: orange;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.importance-img {
  text-align: center;
object-fit: cover;
transition: filter 0.3s ease-in-out;
}

.importance-img img:hover {
filter: hue-rotate(90deg);
transform: translateX(10px);
}

@keyframes moveFade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.importance-img img:hover {
  animation: moveFade 0.5s ease-in-out;
}






































 /* ACTUALIZACIONES -------------------------------------------*/



.actualizaciones {
  text-align: center;
  margin-inline: auto;
  background-color: #e0f7fa;
  
  }

.actualizaciones h1 {
  font-size: 5vw;
  margin-bottom: 1em;
}





/* ANTECEDENTES */

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

.dosparrafos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
gap: 3em;
}

.image {
  text-align: center;
}

.image img{
  box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
  border-radius: 2em;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
  }
  
  .image img:hover {
  filter: hue-rotate(90deg);
  transform: translateX(10px);
  }
  
  @keyframes moveFade {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    50% {
      transform: translateX(20px);
      opacity: 0.5;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .image img:hover {
    animation: moveFade 0.5s ease-in-out;
  }



/* RECORRIDO */

.recorrido {
  background-color: #e0f7fa;
}


span{
  font-weight: bold;
}

.estaciones ul{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 1em;
}

.estaciones h3{
  color: #922700;
  font-weight: bold;
}

.estaciones li{
  background-color: #ffd68b;
  padding: 1em;
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.593);
  border-radius: 2em;
  object-fit: cover;
transition: filter 0.3s ease-in-out;
}

.estaciones li:hover {
filter: sepia(100%);
}



/*CRONOGRAMA*/


.obra img{
  width: 30rem;
  box-shadow: 0 10px 10px hsl(0 0% 0% / 0.593);
  border-radius: 2em;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.obra img:hover {
  transform: scale(1.1);
}


.imgobra{
  text-align: center;
 
}

.obra ul{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 2fr));
  gap: 1em;
   padding-block: 2em;
}







/*DETALLES*/


.detalles{
  background-color: #e0f7fa;
}


.impacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
  gap: 1rem;
  color: white;
  padding-bottom: 4em;
}



.impacto figure { 
  aspect-ratio: 1; 
  position: relative; 
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px hsla(0, 0%, 0%, 0.593);
} 

.impacto img { 
  object-fit: cover; 
  object-position: left center; 
  width: 100%; 
  height: 100%; 
} 

.impacto figcaption {
  position: relative;
  background-color: #fab700;
  padding: .5rem;
  position: absolute;
  inset: 0;
  transform: translateY(calc(100% - 3em));
  transition: all .6s ease;
  transition: transform 2s;
} 

.impacto figure:hover figcaption { 
  background-color: hsla(41, 80%, 58%, 0.678);
  transition: all .3s ease; 
  transform: translateY(0); 
  display: grid; 
  text-align: center; 
  place-items: center; 
  place-content: center; 
  padding-inline: 1em; 
} 

.impacto figure:hover img {
  transition: .5s;
}

.impacto figcaption h4 {
  margin: 0;
  padding: 1em;
  color: white;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  margin-left: -8px;
  background-color: rgba(0, 0, 0, 0.5); 

  }

.impacto figcaption span {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  color: white;
}

.impacto figure:hover figcaption span {
  opacity: 1;
  transform: translateX(0);
}



.impacto figcaption span {
  font-family: sans-serif;
}

.impacto a {
  color: white;
}






/*NOTICIAS*/

.cards {
    
    container-type: inline-size;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    grid-template-columns: repeat( auto-fit, minmax( min( var(--tamanio), 100%), 1fr));
}


:where(header, section, footer) > * {
  max-width: 75rem;
  margin-inline: auto;
}

.cards:hover {
  transform: scale(1.1); 

  }





.cards h3{
  color: #340e00;
  margin-top: 1.5em;
}

.card1 {
  background-color:#ffb700;
  border-radius: 2em;
  overflow: hidden;
  box-shadow: 5px 5px 10px hsla(0, 0%, 0%, 0.593);


  container-type: inline-size;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto 1fr;
}

.card1 > * {
  grid-column: span 2;

  @container (width > 35rem) {
    grid-column: unset;
    grid-row: 1 / -1;
  }
}



.card2 {
  background-color:#ffb700;
  border-radius: 2em;
  overflow: hidden;
  box-shadow: 5px 5px 10px hsla(0, 0%, 0%, 0.593);

  container-type: inline-size;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto 1fr;
}

.card2 > * {
  grid-column: span 2;

 
  @container (width > 35rem) {
    grid-column: unset;
    grid-row: 1 / -1;
  }
}

.card__img {
  aspect-ratio: 2;
  
  @container (width > 22rem) {
    aspect-ratio: unset;
  }
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.card__img img:hover {
  opacity: 0.7;
}

.card__textos {
  padding: 1em;
  color: white;
  flex: 0 0 100%;

  /* align-self: stretch; */
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;

  @container (width > 22rem) {
    flex: 0 0 60%
  }

}











/*CONTACTO----------------------------------------------------*/

.formula {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;

  }

.formulario {
  background-color: #ff95006b;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.593);
  width: 100%; 
  max-width: 300px; 
  text-align: center;
}

.formulario h2 {
  margin-bottom: 10px;
}

.formulario p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.formulario .logo {
  margin-bottom: 20px;
}

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

.formulario label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  color: #333;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.formulario button {
  background-color: #d68d06;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}

.formulario button:hover {
  background-color: #da5a2b;
}





/* FOOTER */


footer {
  background-color: #343a40;
  color: #fff;
  text-align: center;
  padding: 2em;
  margin-block-end: 0;
}

.navigate ul li a{
  color: white;
}

footer .footer-content {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
    gap: 1em;
}

.creators, .navigate, .social-media{
  text-align: center;
}





footer .creators, footer .navigate, footer .social-media {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

footer .social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer .footer-bottom {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

footer .partners {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}







/* Media queries */
@media (min-width: 62em) {
  /* MENU*/
  .menu_movile {
    display: none;
  }



  
}

@media (max-width: 62em) {

   /* MENU*/
  .menu_general {
    display: none;
  }

  .menu_movile {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    position: fixed;
    background-color: hsl(187, 100%, 90%);
    top: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    visibility: hidden; 
    opacity: 0; 
    transition: visibility 0s, opacity 0.5s; 
  }

  .menu_movile.visible {
    opacity: 1;
    visibility: visible;
  }

  .menuvisible {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    width: 100%;
    margin-bottom: auto;
        margin-top: 2em;
    
  }

  .menu_movile a {
    color: rgb(0, 0, 0);
  }

  .cerrar_menu, .abrir_menu {
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }

  .abrir_menu, .cerrar_menu {
    display: block;
  }

nav ul li{
  padding-bottom: 1em;
  
}



/*HISTORIAL - APORTA--------------------------------*/

.container-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  flex-direction: column;
}

.cta-content-2 {
  flex: 1;
}

.container-3 {
  display: flex;
  flex-direction: column;
}













 /*CONTACTO - FORMULARIO*/

 .formula {
  flex-direction: row; 
}

.formulario {
  max-width: 40em;
}

.formula video {
  width: 100%; 
 margin-top: 0;
 }
  


}
