.titulo-seccion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    font-family: 'Montserrat', sans-serif;
    padding: 0 15%;
    box-sizing: border-box;
}
.conoce {
    margin-bottom: 0%;
    font-size: 6em;
    font-weight: 400;
    font-style: normal;
}
.nuestros {
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: 6em;
    font-weight: 400;
    font-style: italic;
}
.catalogo {
    height: 6em;
    display: flex;
    align-items: center;
    gap: 40px;
}
.catalogo svg {
    fill: #000;
    transition: transform 0.3s ease;
    width: 4em;
    height: 4em;
}
.catalogo:hover svg {
    transform: translateY(5px);
}
.catalogo h2 {
    font-size: 6em;
    font-weight: 700;
    font-style: Bold;
}
.descarga {
    margin-top: 2em;
    margin-bottom: 4em;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    font-size: 1.5em;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.descarga:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}
/* ---- Responsive para la sección del titulo ---- */
@media (max-width: 900px) {
    .titulo-seccion {
        padding: 0 5%;
    }
    .conoce {
        font-size: 2.5em;
    }
    .nuestros {
        font-size: 2.5em;
    }
    .catalogo {
        height: 2.5em;
        gap: 10px;
    }
    .catalogo svg {
        width: 2em;
        height: 2em;
    }
    .catalogo h2 {
        font-size: 2.5em;
    }
}