#marca .hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-bottom: 6rem;
}

#marca .hero h1 {
    font-size: 3em;
}
#marca .hero .wrapper {
    max-width: 650px;
}

#marca .hero .hero-description {
    font-size: 1.3em;
    margin-top: 1rem;
}

#marca .hero .brand-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

#marca .hero .brand-categories svg {
    width: 17px;
    height: 15px;
    margin-top: 3px;
}

#marca .hero .brand-categories li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}


#marca .hero .brand-categories a {
    color: #fff;
    text-decoration: none;
}


#marca .acerca-de {
    margin-bottom: 6rem;
}

#marca .proyectos {
    margin-bottom: 6rem;
}

/* Acerca de */

#marca .acerca-de .about-content {
    display: flex;
    flex-direction: column-reverse;
}

#marca .acerca-de .about-content-text-logo {
    margin: 2rem auto;
}

#marca .acerca-de .about-content-text-logo img {
    width: 180px;
    height: auto;   
}

#marca .acerca-de .about-content-image {
}

#marca .acerca-de .about-content-image img {
    border-radius: 5px;
}

#marca .acerca-de .about-content-text {
    text-align: center;
}

#marca .acerca-de .about-content-text h2 {
    font-size: 2.3em;
    margin-bottom: 0.5rem;
}

#marca .acerca-de .about-content-text .subtitle {
    font-size: 1.4em;
    margin: 0.5rem 0 1rem;
}

/* Catálogo */

#marca .catalogo {
    padding: 4rem 0;
    margin-bottom: 6rem;
}

#marca .catalogo .catalogo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#marca .catalogo .catalogo-content-icon {
    width: 35px;
    height: 35px;
}

#marca .catalogo .catalogo-content-text {
    font-size: 1.5em;
}

/* Más sobre */

#marca .mas-sobre {
    padding: 1rem 0;
    margin-bottom: 6rem;
}

#marca .mas-sobre .mas-sobre-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#marca .mas-sobre .mas-sobre-content h2 {
    font-size: 2em;
    margin-bottom: 0.5rem;
}

#marca .mas-sobre .mas-sobre-subtitulo {
    font-size: 1.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#marca .mas-sobre .mas-sobre-content-text {
    font-size: 1.2em;
}

/* Slider */
#marca .swiper {
    width: 100%;
    height: 250px;
    margin: auto;
}

#marca .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

#marca .swiper-slide img {
    width: 100%;        
    height: 100%;
    object-fit: cover;
}



@media only screen and (min-width:768px) {

    #marca .acerca-de .about-content {
        display: flex;
        flex-grow: 1;
        flex-direction: row;
        gap: 3rem;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }


    #marca .acerca-de .about-content-image {
        width: 50%;
    }


    #marca .acerca-de .about-content-text {
        width: 50%;
    }

    #marca .acerca-de .about-content-text {
        text-align: right;
    }


}

@media only screen and (min-width:480px) {

    #marca .catalogo .catalogo-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    #marca .catalogo .catalogo-content-text {
        font-size: 2em;
    }
    

}