/* GENERAL */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Jost", sans-serif;
    color: #05380b;
    background-color: #F2CCCB;
    padding-top: 70px;
}

/* NAVBAR */
.menu-principal {
    background-color: #F2CCCB;
    box-shadow: 0 4px 10px rgb(82, 82, 82);
    padding: 0;
}

.logo-nav {
    width: 55px;
}

.nav-link {
    color: black;
    font-size: 15px;
    padding: 18px 24px !important;
}

.nav-link.active,
.nav-link:hover {
    color: #e71f46 !important;
}

.nav-link.active {
    font-size: 20px;
}

.redes-nav .nav-link {
    color: #e71f46;
    font-weight: bold;
    font-size: 20px;

}

.redes-nav .nav-link,
.redes-footer a {
    display: inline-block;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

/*PÁGINA MOTION GRAPHICS*/

/* HERO */
.motion-hero {
    background-color: #F2CCCB;
    padding: 120px 20px 70px;
}

.motion-hero h1 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.motion-hero p {
    color: #05380b;
    font-size: 18px;
    margin-bottom: 0;
}

/* SECCIÓN VIDEO */
.motion-video-section {
    background-color: white;
    padding: 35px 20px 80px;
}

/* VIDEO LOCAL */
.motion-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    background-color: black;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

/* VIDEO YOUTUBE */
.motion-youtube-card {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: black;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

.motion-youtube-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* HOVER */
.motion-video,
.motion-youtube-card {
    transition: transform .35s ease, filter .35s ease;
}

.motion-video:hover,
.motion-youtube-card:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, .22));
}

/* ANIMACIÓN */
.motion-hero,
.motion-video,
.motion-youtube-card {
    animation: aparecerMotion .8s ease both;
}

/* FOOTER */
.footer-principal {
    background-color: #F2CCCB;
    padding: 55px 0;
}

.footer-principal h2 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 48px;
    margin-bottom: 0;
}

.logo-footer {
    width: 80px;
    display: block;
    margin: 0 auto;
}

.footer-principal p {
    color: black;
    font-size: 20px;
    margin-bottom: 8px;
}

.redes-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.redes-footer a {
    color: #e71f46;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
}

@keyframes aparecerMotion {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991.98px) {

    .motion-hero {
        padding: 100px 20px 60px;
    }

    .motion-hero h1 {
        font-size: 44px;
    }

    .motion-hero p {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {

    .motion-hero {
        padding: 85px 20px 50px;
    }

    .motion-hero h1 {
        font-size: 36px;
    }

    .motion-hero p {
        font-size: 15px;
    }

    .motion-video-section {
        padding: 25px 20px 60px;
    }

    .motion-video,
    .motion-youtube-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .footer-principal {
        text-align: center;
    }

    .footer-principal .row {
        text-align: center;
    }

    .footer-principal .text-md-start,
    .footer-principal .text-md-end {
        text-align: center !important;
    }

    .redes-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        margin-top: 10px;
    }

    .redes-footer a {
        margin: 0;
    }
}