/*HERO*/
section.hero-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 6.356rem;
    place-items: center;
    background-color: var(--arena-secundario);
}

section.hero-section div:first-child, section.hero-section div:first-child{
    width: 100%;
}

section.hero-section div:first-child{
    width: 100%;
    background-image: url(../img/arbol.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 34vh;
}


section.hero-section div:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

section.hero-section div:last-child figure{
    text-align: center;
    margin: 0;
}

section.hero-section div:last-child figure > figcaption{
    font-weight: bold;
    font-size: 2rem;
}

@media (width <= 768px){
    section.hero-section{
    grid-template-columns: 1fr;
    margin-top: 6.356rem;
    place-items: center;
    }   

    section.hero-section div:first-child{
        width: 100%;
        padding: 20vh;
    }

    section.hero-section div:last-child{
        width: 100%;
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }
} 
/*FIN HERO*/

/*Resource*/
section.resource-section{
    background-color: var(--verde-primario);
    color: var(--arena-secundario);
    padding: 1.25rem 1.5rem;
}

section.resource-section p:last-child{
    font-weight: bold;
    padding: 2rem;
    color: var(--verde-primario);
    background-color: var(--arena-secundario);
}
/*FIN RECURSOS*/