.hero {
    background-image: url(img/hero-bg.png);
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    position: relative;
    padding: 60px 60px;

    .contenido-hero {
        position: relative;
        z-index: 2;
        width: 75vw;
        display: flex;
        flex-direction: column;
    }

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(to right, rgba(6, 35, 52, 1), rgba(29, 65, 125, 0.6));*/
        background: linear-gradient(to right, rgba(115, 115, 115, 1), rgba(64, 64, 64, 0.6));
        z-index: 1;
    }

    .video-container {
        position: absolute;
        overflow: hidden;
        box-sizing: border-box;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;

        .video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .titulo-hero {
        font-size: 30px;
        font-weight: 700;
        color: #fff;

        span {
            display: block;
        }
    }

    .subtitulo {
        line-height: 26px;
        color: var(--shade-3);
    }

    .botones {
        display: flex;
        gap: 10px;

        .boton.transparante {
            background: rgba(255, 255, 255, 0.1);

            &.hover {
                background: rgba(255, 255, 255, 0.20);
            }
        }

        @media screen and (max-width: 576px) {
            & {
                flex-direction: column;
                align-items: center;

                .boton & {
                    width: 100%;
                    justify-content: center;
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        & {
            padding: 40px;

            br {
                display: none;
            }

            .contenido-hero {
                width: 100%;
                /* text-align: center; */
            }

            .titulo-hero {
                font-size: 16px;
            }

            .botones {
                justify-content: center;
            }
        }
    }
}