@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@500&family=Noto+Sans+Display:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Display', sans-serif;
}

body {
    color: #f2f2f2;
    background-color: #2c2c2c;
    min-height: 100vh;
    display: grid;
}



a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

/*HEADER---------------------------*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #7f40f3;
    border-color: #d1d1d1;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9980;
    overflow: hidden;
    box-shadow: 0 4px 2px hsl(0 0% 0% / 0.25);
    position: sticky;
    top: 0;
    
   
}



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

/* caja que "limita" al logo y al menu */
header .contenedor {
    display: flex;
    /* caja flexible */
    justify-content: space-between;
}

#logo {
    display: flex;
    /* caja flexible */
    align-items: center;
    /* hijos centrados en la vertical */
    /* sale del fondo pero no parece */
    position: relative;
    /* capa superior, arriba de todo */
    z-index: 9999;
}

/* etiqueta img, pero SÓLO el logo */
#logo img {
    width: 4em;
    margin: -1em .75em -1em 0;
}

#logo h3 {
    /* tipografía del logo */
    font-family: 'Noto Sans Display', sans-serif;
    line-height: 1em;
    margin: 0;
    text-align: left;
}

#logo h3 span {
    display: block;
    font-family: 'Noto Sans Display', sans-serif;
}


.menu-btn {
    background: #7f40f3;
    padding: .75rem;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease-out;

}

.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: hsl(0 0% 90%);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}

.menuVisible .menu-btn .btn-linea {
    transform: rotate(180deg);
}

.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);
}

/*MOBILE ----------------------------------*/
@media screen and (min-width: 40em) {


    /* 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,
    header .menuVisible ul {
        /* caja flexible para menu horizontal*/
        display: flex;
        /* separación entre sus elementos */
        gap: .25em;

        /* para que esté en capa superior pero que no parezca */
        position: relative;

        /* elimina desplazamiento */
        translate: 0;

        /* elimina fondo */
        background-color: unset;
    }

    /* items de lista  que contienen los vínculos del menu */
    header nav ul li {
        min-width: 4em;
        /* que no midan menos de: */
    }

    /* vínculos del menu principal */
    header nav ul li a {

        color: white;
        font-size: 1rem;
        width: auto;
        padding: .25em 1em;
        text-align: center;
        display: block;
        /* para que sean "cajas" */
        margin-block-end: unset;
        border-block-end: unset;
        position: sticky;
        top: 0;
        z-index: 8000;
    }

    /* cuando el cursor se posiciona sobre los vínculos */
    header nav ul li a:hover {

        color: #7f40f3;
        border-block-end: unset;
    }
}

nav ul {
    background-color: #7f40f3;
    display: grid;
    place-items: center;
    place-content: center;
    position: fixed;
    inset: 0;
    z-index: 8000;
    translate: 100%;
    transition: all .6s ease;
}

.menuVisible ul {
    background-color: #7f40f3;
    transition: all .4s ease;
    translate: 0;
}

nav ul li a {
    border-bottom: solid 3px hsl(0 0% 100% / 0.1);
    color: white;
    display: block;
    font-size: 1.5rem;
    margin-block-end: .5rem;
    width: min(70vw, 20rem);
    text-align: center;

    padding: .5rem;
    text-decoration: none;
}

nav ul li a:hover {
    border-bottom: solid 3px hsl(0 0% 100% / 0.5);
    transition: all .3s;
}

.actividades .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1400px;
    margin: auto;
    color: white;
}

.sobrenosotros {
    display: flex;
    flex-direction: column;
    padding: 1em 1em;
    text-align: center;
}

.contenedor p {
    background-color: #2c2c2c;
    margin: none;
    padding: 15px;
}



.desktop {
    width: 100%;
    height: auto
}

.mobile {
    display: none;
}

h1,
h2,
h3 {
    text-align: center;
    text-decoration: none;
}



/*FOOTER---------------------------*/

footer {
    color: #f2f2f2;
    ;
    background-color: #7f40f3;
    font-size: 0.8rem;
    padding: 0.5rem;
    text-align: left;
}

footer p {
    margin-top: 0.6rem;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 14px;
    padding: 1rem;
}



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

video {
    width: 100%;
    height: auto;
}


video {
    width: 100%;
    height: auto;
}

#video h1 {
    padding-top: 1.5em;
    color: #fbce79;
    font-size: 22px;
    margin: 0 1.5em;
}


.actividades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
    gap: 1.25em;
    padding: 1em;
    text-align: right;
}




#final {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(1rem, 100%), 1fr));
    text-align: center;
    padding: 1em;
    gap: 1em;
    margin: auto;
    color: #f2f2f2;
}

#final .registrarse {
    background-color: #fbce79;
    padding: 2em;
    margin: 1em;
}

.registrarse h2 {
    color: #2c2c2c;
}

#final button {
    font-size: 1em;
    font-weight: bold;
    padding: .5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #2c2c2c;
    color: white;
    margin: 2em;
}

#final button:hover {
    background-color: #5f21d1;
}



.nosotros {
    text-align: center;

}

.quienessomos {
    text-align: left;
    font-size: 1em;
}

.nosotros h2 {
    text-align: center;
    padding: 1em;
    padding-top: 1.5em;

}

#nosotros p {
    display: grid;
    text-align: center;
    padding: 2em;
    padding-top: 0;

}

/*ACTIVIDADES---------------------------*/

.actividadesPuente figure {
    margin: 1em;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

.actividadesPuente img {
    width: 100%;
}

.actividadesPuente figcaption {
    background-color: hsla(0, 0%, 0%, 0.548);
    color: rgb(255, 255, 255);
    padding: .5em;
    font-weight: 500;
}

.actividadesPuente figure:hover figcaption {
    background-color: #7f40f3;
    transition: all .1s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-items: left;
    place-content: left;
}

.actividadesPuente figcaption span {
    font-size: .80em;
    color: white;
    text-transform: none;
}

.actividades h2 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    background-color: #6f6f6f;
    margin: 1em;
}

.act {
    padding-top: 2em;
}

.actividad button:hover {
    background-color: #5f21d1;
}

.actividad button {
    font-size: 1em;
    font-weight: bold;
    padding: .5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #fa9c10;
    color: white;
    margin: 2em;


}

.contenedoractividades {
    display: flex;
    flex-direction: row;
}

.actividad h3 {
    padding: 1.5em;
}

/*GALERIA---------------------------*/



.galeria:hover {
    bottom: 100%;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
    gap: 1.25em;
    padding: 0.5em;

}

.galeria figure {
    aspect-ratio: 2;
    position: relative;
    overflow: hidden;
    margin: 10px 20px;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

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

.galeria figcaption {
    background-color: hsla(0, 0%, 0%, 0.548);
    padding: .5em;
    inset: 0;
    color: white;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    transform: translateY(calc(100% - 2em));
    transition: all .6s ease;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

.galeria figure:hover figcaption {
    background-color: #7f40f3;
    transition: all .1s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-items: left;
    place-content: left;
}

.galeria figcaption span {
    font-size: .80em;
    color: white;
    text-transform: none;
    display: block;
    text-transform: none;
}

.galeria figure:hover figcaption {
    background-color: #7f40f3;
    transition: all .3s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    padding-inline: 1em;
}



/*NOSOTROS ----------------------------------*/

.sobrenosotros {
    display: flex;
    text-align: center;
    padding: 1em;
    margin: 1em;
}

.so .integrantes {
    width: 100%;
    padding: 0.5em 0;
}

.carta {
    box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
    padding: 2em;
    color: rgb(255, 255, 255);
    margin: 10px 10px;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

.carta .img-contenedor {
    width: 10em;
    height: 10em;
    padding: 0.5em;
    margin: 0 auto 2em auto;
}

.carta img {
    width: 100%;
}

.carta h3 {
    font-weight: 500;
    
}

.titulo {
    text-align: left;
    font-size: 1em;
    padding: 1em;
}

.texto p {
    padding: 1em;
    margin: 1em;
}

.caminito h4 {
    color: #fa9c10;
    padding-top: 1em;
}

.caminito p {
    background-color: #fbce79;
    padding: 1.5em;
    color: #2c2c2c;
    margin-top: 1em;
}

.puentetransbordadornicoclasavellaneda h4 {
    color: #faa810;
    padding-top: 1em;
}

.puentetransbordadornicoclasavellaneda p {
    background-color: #fbce79;
    padding: 1.5em;
    color: #2c2c2c;
    margin-top: 1em;
}

.fundacion h4 {
    color: #fa9c10;
    padding-top: 1em;
}

.fundacion p {
    background-color: #fbce79;
    padding: 1.5em;
    color: #2c2c2c;
    margin-top: 1em;
}

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

.actividad {
    aspect-ratio: 2;
    position: relative;
    margin: 10px 20px;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

.actividad p {
    padding-left: 2em;
    padding-right: 2em;
    text-align: center;
}


/*INSTITUCIONAL ----------------------------------*/

.fotosinstitucional:hover {
    bottom: 100%;
}

.fotosinstitucional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
    gap: 1.25em;
    padding: 0.5em;

}

.fotosinstitucional figure {
    aspect-ratio: 2;
    position: relative;
    overflow: hidden;
    margin: 10px 20px;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

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

.fotosinstitucional figcaption {
    background-color: hsla(0, 0%, 0%, 0.548);
    padding: .5em;
    inset: 0;
    color: white;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    transform: translateY(calc(100% - 2em));
    transition: all .6s ease;
    box-shadow: 0 2px 4px 0 #7f40f3;
    background-color: #2c2c2c;
    border-color: #7f40f3;
}

.fotosinstitucional figure:hover figcaption {
    background-color: #7f40f3;
    transition: all .1s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-items: left;
    place-content: left;
}

.fotosinstitucional figcaption span {
    font-size: .80em;
    color: white;
    text-transform: none;
    display: block;
    font-weight: lighter;
    text-transform: none;
    padding: 1em 0;

}

.fotosinstitucional figcaption button {
    font-size: 1em;
    font-weight: bold;
    padding: 0.5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #fa9c10;
    color: white;
}


button {
    font-size: 1em;
    font-weight: bold;
    padding: .5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #fa9c10;
    color: white;
    margin: 1em;


}

.texto h2 {
    padding: 0.5em;
    background-color: #6f6f6f;
    margin: 1em;
}

.titulo h2 {
    padding: 0.5em 0;
    background-color: #6f6f6f;
    margin-bottom: 1em;
}

.texto h4 {
    margin: 1.5em;
}

.texto h3 {
    background-color: #6f6f6f;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin: 0.5em;
}



.fotosinstitucional figure:hover figcaption {
    background-color: #7f40f3;
    transition: all .3s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    padding-inline: 1em;
}

/*FORMULARIO ----------------------------------*/

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1em;
}

input,
textarea {
    padding: 12px 25px;

    margin-bottom: 1em;
    outline: none;
}

.Registrarse input {
    font-size: 1em;
    font-weight: bold;
    padding: .5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #fa9c10;
    color: white;
    text-align: center;
}


.formulario h1 {
    margin-top: 1em;
    text-align: left;
}

.formulario img {
    width: 30%;
}

.enviar {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.enviar input {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1em;
    padding: 12px 25px;
    margin-bottom: 1em;
    outline: none;
    background-color: #fa9c10;
    color: white;
}

.form-txt {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.form-txt a {
    color: #fa9c10;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

form {
    margin: 2em;
    text-align: left;
}

form p {
    font-size: 16px;
}

.boton button {
    font-size: 1em;
    font-weight: bold;
    padding: .5em;
    box-shadow: 2px 2px 3px #2c2c2c;
    background-color: #fa9c10;
    color: white;
    margin: 1.5em;
}


.titulo h4 {
    font-size: bold;
    margin-bottom: 1em;
}

.participa h1 {
    padding-left: 1em;
    color: #fbce79;
    font-size: 22px;
    text-align: left;
}


.piefoto p {
    padding: 1em;
}



/*COMOLLEGAR ----------------------------------*/

iframe {
    width: 100%;
}

.comollegar h2 {
    padding: 0.5em;
    background-color: #6f6f6f;
}

.comollegar h3 {
    font-size: bold;
    padding-bottom: 1em ;
    margin-bottom: 1em;
    text-align: left;
    
}

.comollegar h4 {
    color: #fbce79;
}

.comollegar {
    text-align: left;
    font-size: 1em;
    margin: 1em;
    padding: 1em;
}

.comollegar p {
    padding: 1em 0;
}


