/* static\css\home\catalogos\catalogos-portada.css */

.catalogos-portada {
    position: relative;
    width: 100%;
    height: 40vh; /* Ajusta la altura según sea necesario */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0% 55%, /* punto inferior izquiedo */
    5% 80%, 25% 65%, 45% 80%, 65% 65%, 95% 80%, /* puntas del poligo, se le pueden sumar o restar */
    100% 100%, 100% 0%, 0% 0%);  /* punto inferior derecho x-y ; punto superior derecho; punto superior izquierdo */

}


.catalogos-portada img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: opacity(0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.catalogos-portada h2 {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: calc(2.5rem + 1vw);
    z-index: -1;
    letter-spacing: 0.5em; /* Ajusta el espaciado entre letras según sea necesario */
}
