/* GLOBAL --------------------------------------------------------------- */
.hero-home{
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    padding-top: 130px;
}
.hero-home h2{
    overflow: hidden;
}
.hero-home h2 span{
    color: var(--red-base);
}
.hero-home .welcome, .hero-home .about{
    width: 100%;
    position: absolute;
    top: calc(50% + 65px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    gap: 300px;
    align-items: center;
}
.hero-home .media{
    width: 30%;
    height: auto;
    aspect-ratio: 1650 / 1200;
}
.hero-home video, .hero-home img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-home .text-content{
    width: calc(70% - 300px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-home .arrows{
    position: absolute;
    height: 200px;
    top: calc(50% + 65px);
    left: calc(50% - 110px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-home .arrows > *{
    padding-top: 30px;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
}
.hero-home .arrows > * .label{
    text-transform: uppercase;
}
.hero-home .arrow-down{
    padding-top: unset;
    padding-bottom: 30px;
    opacity: 1;
    pointer-events: all;
}
.hero-home .arrows > *::before{
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 7.0437L6.99993 2.00003L2 7.0437' stroke='%23FFFCF5' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-home .arrow-down::before{
    top: unset;
    bottom: 0px;
    transform: translateX(-50%) rotate(180deg);
}
.hero-home .button{
    position: absolute;
    bottom: 0px;
    right: 0px;
    cursor: pointer;
    text-decoration: none;
    padding: 15px 30px;
    transform: translateY(100%);
    overflow: hidden;
    border: 1px solid transparent;
}
.hero-home .button .button-ribbon{
    background-color: var(--red-base);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(100%);
    z-index: -1;
}
.hero-home .button p{
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ---------------------------------------------------------------------- */

/* <1440px (+100px car 50px de padding) --------------------------------- */
@media screen and (max-width: 1540px){
    .hero-home .button{
        right: 50px;
    }
}
/* ---------------------------------------------------------------------- */