

#portadaContainer {
    width: 100%;
    height: 100%;
}

/* imagen de portada */
#portadaImgContainer {
    width: 100%;
    height: 100%;
        clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 4vw),
        95% calc(100% - 3.5vw),
        85% calc(100% - 2vw),
        65% calc(100% - 1vw),
        35% calc(100% - 1.5vw),
        15% calc(100% - 2.5vw),
        5% calc(100% - 3vw),
        0 calc(100% - 3vw)
    );
}

#portadaImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* capa transparente en portada */
#portadaCapaGradiente{
    position: relative;
    display: grid;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ca0356 0%, #ca0356b7 40%, #ffffff00 100%);
    top: -100%;
    left: 0%;
           clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 4vw),
        95% calc(100% - 3.5vw),
        85% calc(100% - 2vw),
        65% calc(100% - 1vw),
        35% calc(100% - 1.5vw),
        15% calc(100% - 2.5vw),
        5% calc(100% - 3vw),
        0 calc(100% - 3vw)
    );
}

#portadaTextContainer{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 70%;
    left: 20%;
    text-align: start;
    gap: 10px;
}

#portadaTextContainer > h1{
    color: #ffffff;
}

#portadaTextContainer > h2{
    font-family: 'Ananda', sans-serif;
    font-weight: 100;                                            
    color: #ffffff;
}

#portadaTextContainer > p{
    color: #ffffff;
    width: 50%;
        text-align: justify
    }

#portadaTextContainer > button{
   width: 150px;
    height: 50px;
    background-color: #ffffff;
    color: #ca0356;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

#portadaTextContainer > button:hover{
    background-color: #ca0356;
    color: #ffffff;
    border: 2px solid #ffffff;
}