/* =========================================================
   VIDEOS-0001A
   HERO + PRESENTACIÓN
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.videos-hero {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    color: #ffffff;
}


.videos-hero__background {
    position: absolute;

    inset: 0;

    background-image:
        url('/assets/img/videos/hero-video.jpg');

    background-size: cover;

    background-position: center center;
}


.videos-hero__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 15, 9, 0.82) 0%,
            rgba(5, 15, 9, 0.58) 47%,
            rgba(5, 15, 9, 0.22) 100%
        );
}


/* =========================================================
   NAVEGACIÓN
   ========================================================= */

.videos-nav {
    position: relative;

    z-index: 10;

    width: min(1240px, calc(100% - 70px));

    height: 120px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.videos-nav__logo img {
    display: block;

    width: 220px;
    height: auto;
}


.videos-nav__menu {
    display: flex;

    align-items: center;

    gap: 27px;
}


.videos-nav__menu a {
    position: relative;

    min-height: 52px;

    display: flex;

    align-items: center;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}


.videos-nav__menu a::after {
    content: '';

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #d5ad6b;

    transform: scaleX(0);

    transition:
        transform 0.25s ease;
}


.videos-nav__menu a:hover::after,
.videos-nav__menu a.active::after {
    transform: scaleX(1);
}


/* =========================================================
   CONTENIDO HERO
   ========================================================= */

.videos-hero__content {
    position: relative;

    z-index: 5;

    width: min(1240px, calc(100% - 70px));

    margin: 70px auto 0;
}


.videos-hero__eyebrow {
    margin-bottom: 17px;

    color: #d9b477;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.videos-hero__content h1 {
    max-width: 780px;

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 61px;
    line-height: 1.06;

    font-weight: 500;

    letter-spacing: -1px;
}


.videos-hero__content p {
    max-width: 650px;

    margin: 24px 0 0;

    font-size: 17px;
    line-height: 1.65;
}


.videos-hero__button {
    display: inline-flex;

    min-height: 54px;

    margin-top: 29px;

    padding: 0 27px;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #d5ad6b;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.videos-hero__button:hover {
    background: #c69b58;

    transform: translateY(-1px);
}


/* =========================================================
   PRESENTACIÓN
   ========================================================= */

.videos-presentacion {
    padding: 95px 35px;

    background: #ffffff;
}


.videos-presentacion__container {
    width: min(1240px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   TEXTO PRESENTACIÓN
   ========================================================= */

.videos-presentacion__eyebrow {
    margin-bottom: 11px;

    color: #bb965d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.videos-presentacion__contenido h2 {
    max-width: 530px;

    margin: 0 0 25px;

    color: #24351f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 45px;
    line-height: 1.1;

    font-weight: 500;
}


.videos-presentacion__contenido p {
    max-width: 560px;

    margin:
        0 0 17px;

    color: #60625d;

    font-size: 16px;
    line-height: 1.75;
}


.videos-presentacion__contenido
.videos-presentacion__destacado {
    margin-top: 24px;

    padding-left: 19px;

    border-left:
        2px solid #c9a361;

    color: #34432f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 18px;
    line-height: 1.55;
}


/* =========================================================
   IMAGEN PRESENTACIÓN
   ========================================================= */

.videos-presentacion__imagen {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 7px;

    box-shadow:
        0 14px 38px rgba(25, 35, 22, 0.10);
}


.videos-presentacion__imagen img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1.55 / 1;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.videos-presentacion__imagen:hover img {
    transform: scale(1.025);
}


/* =========================================================
   NOTEBOOK
   ========================================================= */

@media (max-width: 1150px) {

    .videos-nav {
        width:
            calc(100% - 40px);
    }


    .videos-nav__logo img {
        width: 190px;
    }


    .videos-nav__menu {
        gap: 16px;
    }


    .videos-nav__menu a {
        font-size: 11px;
    }


    .videos-hero__content {
        width:
            calc(100% - 60px);
    }


    .videos-presentacion__container {
        gap: 45px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .videos-hero {
        min-height: 660px;
    }


    .videos-nav {
        height: auto;

        padding-top: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .videos-nav__menu {
        width: 100%;

        flex-wrap: wrap;

        gap:
            5px 20px;
    }


    .videos-hero__content {
        margin-top: 75px;
    }


    .videos-hero__content h1 {
        font-size: 49px;
    }


    .videos-presentacion {
        padding:
            75px 25px;
    }


    .videos-presentacion__container {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

        gap: 35px;
    }


    .videos-presentacion__contenido h2 {
        font-size: 37px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .videos-hero {
        min-height: 680px;
    }


    .videos-hero__background {
        background-position:
            56% center;
    }


    .videos-hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(5, 15, 9, 0.48) 0%,
                rgba(5, 15, 9, 0.62) 48%,
                rgba(5, 15, 9, 0.88) 100%
            );
    }


    .videos-nav {
        width:
            calc(100% - 35px);
    }


    .videos-nav__logo img {
        width: 170px;
    }


    .videos-nav__menu {
        gap:
            5px 14px;
    }


    .videos-nav__menu a {
        min-height: 32px;

        font-size: 10px;
    }


    .videos-hero__content {
        width:
            calc(100% - 40px);

        margin-top: 70px;
    }


    .videos-hero__eyebrow {
        font-size: 10px;
    }


    .videos-hero__content h1 {
        font-size: 40px;
        line-height: 1.08;
    }


    .videos-hero__content p {
        font-size: 15px;
    }


    /* PRESENTACIÓN */

    .videos-presentacion {
        padding:
            60px 20px
            65px;
    }


    .videos-presentacion__container {
        display: flex;

        flex-direction: column;

        gap: 38px;

        align-items: stretch;
    }


    .videos-presentacion__contenido h2 {
        font-size: 35px;
    }


    .videos-presentacion__contenido p {
        font-size: 15px;
        line-height: 1.7;
    }


    .videos-presentacion__contenido
    .videos-presentacion__destacado {
        font-size: 17px;
    }


    .videos-presentacion__imagen img {
        aspect-ratio:
            1.45 / 1;
    }

}


