@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,700;1,700&display=swap');

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

}

/*
reglas generales y para celular*/

body {
    font-family: 'Archivo', sans-serif;
    background-color: ghostwhite;

}

main {
    padding: 1em;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

li {
    list-style: none;
    color: dimgray;
}

header {
    background-color: lightgreen;
}

footer {
    background-color: #a3a0a0;

}

/*iconos*/
.material-icons {
    padding-right: .25em;
}

h3,
h5 {
    display: flex;
    align-items: center;
}

.contenedora {
    max-width: 60em;
    margin: 0 auto;
    padding: 1em;

}

h1,
h2 {
    color: forestgreen;
    margin-top: .5em;
    margin-bottom: .5em;
}

h3 {
    color: darkslategray
}

p {
    color: dimgray;
    margin-top: .5em;
    margin-bottom: .5em;
}

.boton {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    border-radius: 3em;
    background-color: forestgreen;
    color: white;
    padding: .5em;
    justify-content: center;
    text-align: center;
    margin-bottom: 1em;


}

.boton:hover {
    background-color: darkseagreen;
}

input {
    border: solid 2px darkseagreen;
    border-radius: 2em;
    background-color: white;
    color: darkgreen;
    padding-left: .5em;
    padding-right: .5em;
}

label {
    color: forestgreen;
    font-weight: 600;
    padding-right: .25em;
    padding-bottom: .25em;
    display: flex;
    flex-wrap: wrap;
}

/* ------------------------------
HEADER
---------------------------------
*/
header .contenedora {
    /*caja flexible*/
    display: flex;
    /* elementos extremos eje principal */
    justify-content: space-between;
    /*elementos eje secundario*/
    align-items: center;
    flex-wrap: wrap;
}

header .contenedora img {
    height: 3em;

}

#icomenu {
    height: 2em;
    margin-left: 2em;
}

/*menu*/

header nav {

    font-weight: 600;



}

header nav ul {

    list-style-type: none;


}

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

}

header nav a:hover {

    color: whitesmoke;
    border-bottom: solid 2px whitesmoke;
}

/*boton que llama al menu*/
#abrehamburguesa {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
    /*caja flexible*/
    display: flex;
    position: relative;
    z-index: 9999;

}

#abrehamburguesa:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: forestgreen;
}

#abrehamburguesa i {
    padding: 0;
    /*centrado en la horizontal y vertical */
    margin: auto;
}

/*el menu en si*/
header nav ul {
    background-color: rgba(0, 0, 0, 0.5);
    /* el menu sale y se oculta a la derecha*/
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 50%;
    padding-top: 6em;
    transition: all .5s ease;
    z-index: 9000;

}

.visible {
    /*menu se corre izquierda*/
    left: 50%;
    transition: all .25s ease;
}

/* ------------------- INICIO------------------ */
/* primero */
.web li {
    padding-bottom: 0.5em;
}

.web ul li::before {
    content: "\2022";
    color: dimgray;
    display: inline-block;
    padding-right: 2px;
    font-size: 30px;
    line-height: 20px;
    vertical-align: -5px;
    width: 15px;
}

/*------------ JORNADAs de INICIO ---------------*/
.jornadasinicio {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: center;
    padding: 1em;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
}

.jornadasinicio h5 {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0.5em;
    color: darkseagreen;
    justify-content: center;
    text-align: flex;
    font-size: 20px;

}

.jornadasinicio p li {
    text-align: center;
}

.jornadasinicio article p {
    color: darkgray;
    font-size: 18px;
    text-align: center;
    margin-bottom: 10%;
}

.jornadasinicio img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 5em;
    padding: 1em;

}

.jornadasinicio li {

    color: darkgray;
    font-size: 18px;
    text-align: center;

}

.jornadasinicio a {
    text-decoration: none;
    color: darkgray;
    border-bottom: 2px solid darkgray;
}

.jornadasinicio a:hover {
    border-bottom: 2px solid darkseagreen;
    color: darkseagreen;
}

.jornadasinicio article {
    margin-top: 3%;
}

/*------------ JORNADAS de AGENDA ---------------*/
.jornadas {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: center;
    padding: 1em;
}

#articulo1 {
    text-align: center;
}

/* recolectar*/
iframe {
    width: 100%;
    height: 50vh;
}

.colectivos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 100%;
    margin-top: 0.6em;
    list-style: none;
}

.colectivos li {
    text-transform: uppercase;
    background-color: darkseagreen;
    padding: .5em;
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    border-radius: .50em;
    margin-left: .4em;

    margin-bottom: .3em;
}

/* ------------------COLABORAR--------------- */


.materiales img {
    height: 15em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;

}

.materiales div {
    background: beige;
    margin: .3em;
    padding: 1em;
    width: 100%;
    border-radius: .90em;
    display: flex;
    flex-direction: column;



}

.materiales div > *:not(p) {
    display: block;
    text-align: center;
    margin: 0 auto;
}


.materiales {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1em;
}




.materiales div h4 {
    margin-top: .5em;
    color: forestgreen;
    font-size: 19px;
    text-align: center;
    margin-bottom: .5em;
}


.materiales div label {
    margin-bottom: .7em;
    color: dimgray;
    display: block;


}

.materiales button {
    font-size: 13px;

}

.retiro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-flow: wrap;
    padding: 1em;
    margin: 2em 0 2em 0;
    width: 100%;

}





/*----------------- OTRAS CONSULTAS ------------------*/

#vermas,
#vermas2 {
    background-color: beige;
    color: #444;
    cursor: pointer;
    padding: 18px;
    margin-bottom: 1em;
    width: 100%;
    text-align: left;
    border-radius: .90em;

}

#vermas:hover {
    background-color: #ccc;
}

#vermas2:hover {
    background-color: #ccc;
}

#panel {
    padding: 0.7em;
    min-height: 9em;
    max-height: 14em;
    background-color: white;
    text-align: left;
    display: none;
    line-height: 20px;
    margin-bottom: 1em;
}

#panel ul li::before {
    content: "\2022";
    color: darkgray;
    display: inline-block;
    padding-right: 2px;
    font-size: 20px;
    line-height: 20px;
    vertical-align: -2px;
    width: 15px;
}

#panel2 {
    padding: 0.5em;
    min-height: 4em;
    max-height: 16em;
    background-color: white;
    text-align: left;
    display: none;
    line-height: 20px;
    justify-content: center;
}

/*---------------- FOOTER ----------------------*/
footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.menufooter {
    padding-left: 0.8em;
    width: 100%;
    margin-top: 2em;
    list-style: none;
    text-decoration: none;
}

.menufooter li a {
    font-size: 1em;
    line-height: 1.8em;
    margin-bottom: 2em;

    color: white;
    list-style: none;
    text-decoration: none;
}

.redes {
    list-style: none;
    display: flex;

}

.redes img {

    height: 3em;
    padding: 0.5em;
}

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

footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
}

footer nav ul li {
    min-width: 8em;
    margin: 0;
}

footer nav ul li a {


    font-weight: bolder;
    padding: .1em;
    text-align: center;
    display: block;

}

footer nav ul li a:hover {
    border-bottom: 1px solid white;

}

/* navegador 560px de ancho*/
@media (min-width: 35em) {
    #abrehamburguesa {
        display: none;
    }

    header nav ul {
        display: flex;
        flex-wrap: wrap;
        background: none;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        padding-top: 0;
    }

    header nav ul.visible {
        left: auto;
    }

    .materiales div {

        width: 45%;

    }
}

/* ------------- VIDEO DE CONOCENOS -------------- */
.videoresponsive {
    position: relative;
    margin: 0 auto;
    height: 0;
    padding-bottom: 56.25%;
}

.videoresponsive iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}

/* ------------------CONTACTO--------------- */
.contactos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    max-width: 35em;
}

.contactos section {
    padding: 20em;
}

.subscribite {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    max-width: 35em;
}

.subscribite .boton {
    margin-top: 1em;
}

.contactos img {
    height: 3em;
    margin-bottom: -.5em;
 
}
.contactos ul li{
 margin-bottom: 1em;   
}
.contactos ul li a {
    color: dimgray;
    text-decoration: none;
}

.contactos ul li a:hover {
    color: forestgreen;

}


/* -----------------CUENTA--------------------- */


form ul {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}


.cuenta form ul li {
    margin-top: 1em;
    margin-bottom: 1em;

}

.cuenta {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;


}

.cuenta form ul {

    padding-right: 2em;
    padding-left: 2em;
}

/*------------- MI CUENTA ------------------*/

.persona ul li {
    padding-top: 1em;
}

.persona {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    max-width: 25em;
}

.persona div ul {
    padding-right: 3em;


}

.persona div h4 {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1em;
    margin-top: .5em;
    color: forestgreen;
    font-size: 19px;
    text-align: left;
    margin-bottom: .5em;

}

.persona a {
    margin-top: .7em;
    font-size: 13px;
    max-width: 11em;
}

#boton1 {
    max-width: 7em;

}

/*------------------HISTORIAL------------- */
.historial {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    box-shadow: 0 0 5px darkgray;
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;

}

.historial h1 {
    width: 100%;
}

.donacionhistorial {
    flex-wrap: wrap;
    flex-direction: row;
    width: 19em;
    padding: .5em;
    justify-content: space-between;
    margin-bottom: 1em;
}

.historial .boton {
    margin-left: .5em;

}

.historial a {
    font-size: 13px;
    position: relative;
    left: 5em;
    top: 2em;

}









/* -----------------COMPRA------------------- */
.final h1 {

    color: forestgreen;
    margin-top: .5em;
    margin-bottom: .5em;
}


.final ol li {
    margin-top: .3em;
    padding-left: .2em;

}

.opciones p {
    margin-top: .3em;
    margin-bottom: 1em;
    padding-top: .5em;

}

.opciones a {
    padding: .3em;
    border-radius: 2em;
    margin: 3em;
    max-width: 5em;
    font-size: 13px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    text-decoration: none;

}



/* ------------------AGENDA HORARIOS--------------- */

.contenedoradias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 1em;
    overflow: hidden;
}

.item {
    width: 20em;
    height: 13em;
    margin: 1em;
    padding: 1em;
    float: left;
    box-shadow: 0 4px 0 forestgreen;
    text-align: center;
    align-content: center;
    justify-content: center;
    line-height: 20px;
}

.item h3 {
    display: block;
    font-size: x-large;
}

.item img {
    max-width: 25%;
    margin: 0.5em;
}

/* ------------------CONOCENOS--------------- */
.holaconocenos {
    line-height: 20px;
}

.organizamos {
    line-height: 20px;
}

.objetivo li {
    padding-bottom: 0.5em;
}

.objetivo ul li::before {
    content: "\2022";
    color: forestgreen;
    display: inline-block;
    padding-right: 2px;
    font-size: 45px;
    line-height: 20px;
    vertical-align: -10px;
    width: 15px;
}

/* ------------------RESPONSIVE CONOCENOS--------------- */
.imgobjetivo {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 20em;
    padding-top: 0.5em;
}

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

.slider {
    display: block;
    max-width: 60em;
    min-width: 20em;
    max-height: 30em;
    min-height: 10em;
    border-radius: 10px;
    overflow: hidden;
    background-color: aqua;
}

.slides {
    width: 300em;
    height: 30em;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 1.5s;
}

.slide img {
    width: 100%;
}

/* css for manual slide navigation*/
.navigation-manual {
    position: absolute;
    max-width: 60em;
    min-width: 10em;
    margin-top: 27em;
    display: flex;
    padding: 1em;
    justify-content: space-between;
    align-items: center;

}

.manual-btn {
    border: 2px solid forestgreen;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.1s;
    margin-left: 0.5px;
}

.manual-btn:not(:last-child) {
    margin-right: 30px;
}

.manual-btn:hover {
    background: forestgreen;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -60em;
}

#radio3:checked ~ .first {
    margin-left: -120em;
}

#radio4:checked ~ .first {
    margin-left: -180em;
}

#radio5:checked ~ .first {
    margin-left: -240em;
}
/* ----- GALERIA CONOCENOS ------ */
.gallery-container{
    width: 100%;
    margin-top: 5px auto;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    grid-template-rows: repeat(2,300px);
}

.gallery-container .gallery-card{overflow: hidden};

.gallery-container .gallery-card a{
    width: 100%;
    height:100%;
}
.gallery-container .gallery-card a > img{
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-container .gallery-card a > img:hover{
    transform: scale(1.2) rotate(0deg);
}
