

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

#portadaCapaGradiente{
    position: relative;
    display: grid;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--color-azul) 0%, #034178c4 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: 100%;
    align-items: center;
    text-align: center;
    gap: 10px;
}

#portadaTextContainer > h1{
    color: #ffffff;
}

#portadaTextContainer > button{
   width: 150px;
    height: 50px;
    background-color: #ffffff;
    color: var(--color-azul);
    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: var(--color-azul);
    color: #ffffff;
    border: 2px solid #ffffff;
}

#portadaCollageContainer{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
        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)
    );
}   
#portadaCollage {
    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)
    ); */
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}
 #portadaCollage > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
