/* HOJA DE ESTILOS-INICIO*/
/* GENERAL */

@font-face {
    font-family: inter18-black;
    src: url(../fonts/Inter_18pt-Black.ttf) format("truetype");
}

@font-face {
    font-family: inter18bold;
    src: url(../fonts/Inter_18pt-Bold.ttf) format("truetype");
}

@font-face {
    font-family: inter18-bolditalic;
    src: url(../fonts/Inter_18pt-BoldItalic.ttf) format("truetype");
}

@font-face {
    font-family: inter18-light;
    src: url(../fonts/Inter_18pt-Light.ttf) format("truetype");
}


@font-face {
    font-family: inter18-medium;
    src: url(../fonts/Inter_18pt-Medium.ttf) format("truetype");
}

@font-face {
    font-family: inter18-mediumitalic;
    src: url(../fonts/Inter_18pt-MediumItalic.ttf) format("truetype");
}

@font-face {
    font-family: publico-bold-italic;
    src: url(../fonts/PublicoHeadlineWeb-BoldItalic.ttf) format("truetype");
}

@font-face {
    font-family: publico-medium-italic;
    src: url(../fonts/PublicoHeadlineWeb-MediumItalic.ttf) format("truetype");
}

/* BODY */
body {
    margin: 0;
    padding-top: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #5965F2;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: inter18bold;
}

p {
    font-family: inter18-medium;
}

/* NAV BAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0 !important;
    background-color: #5965F2;
}

.active {

    font-family: inter18-black !important;
}

.nav-link {

    padding: 60px 30px !important;
    color: #FFFCF6;
}

nav a {
    color: #FFFCF6 !important;
    font-family: inter18-medium !important;
    font-size: 20px !important;
}

.nav-container {
    padding-left: 80px;
    padding-right: 80px;
}

.navbar-brand {
    margin-left: 110px;

}

.navbar-brand img {
    margin-left: -58px;
}

/*---------------------------------------------------------------------------*/
/* HERO */
.hero {
    padding: 20px 10px;
    background-color: #5965F2;
}




/*---------------------------------------------------------------------------*/
/* Motion graphics */



.motion-graphics {

    background: #5965F2;

    padding: 120px 0;
}

/* TITULO */

.motion-title {

    color: #fff;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 10px 20px;
}

/* TEXTO */

.motion-description {

    color: rgba(255, 255, 255, .9);

    font-size: 30px;
    font-family: inter18-light;
    line-height: 1.2;
    margin-bottom: 80px;
}

/* VIDEO CARD */

.video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 30px rgba(25, 37, 166, 0.80);
    transition: .4s;
}

.video-card:hover {

    transform: translateY(-5px);
}

.video-card video {

    width: 100%;

    display: block;

    aspect-ratio: 16/9;

    object-fit: cover;
}

/* BOTON PLAY */

.play-overlay {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .85);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    color: #5965F2;

    transition: .3s;
}

.video-card:hover .play-overlay {

    transform: translate(-50%, -50%) scale(1.15);
}

/* MODAL */

.modal-backdrop.show {

    opacity: .92;
}

.modal-content {

    background: transparent;
}


.modal {
    z-index: 11000;
}

.modal-backdrop {
    z-index: 10999;
}

/* VIDEO GRANDE */

#videoGrande {

    max-height: 85vh;

    object-fit: contain;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);
}

/*---------------------------------------------------------------------------*/

/* FOOTER */

.footer-custom {
    background: #4a4a4d;
    padding: 80px 0;
}

.footer-custom h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: Inter18Bold;
}

.footer-logo {
    width: 120px;
    margin-bottom: 25px;
}

.footer-copy {
    color: #B7BCFF;
    font-size: 20px;
    line-height: 1.4;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 14px;
}

.footer-list a {
    color: #B7BCFF;
    text-decoration: none;
    font-size: 20px;
    transition: .3s;
}

.footer-list a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 55px;
    height: 55px;
    background: #B7BCFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons i {
    color: #4a4a4d;
    font-size: 24px;
}

/* FLECHA */
.flecha {
    position: fixed;
    bottom: 60px !important;
    right: 0 !important;
    display: none;
    z-index: 99999;

}

.flecha img {
    width: 100%;
    transition: all ease 0.3s;
}


.flecha img:hover {
    transform: scale(1.2);
}



/* MEDIA QUERIES*/
/*///////////////////////////////////  1400   /////////////////////////////////////////////////////*/

@media (max-width:1400px) {

    /* TITULO */

    .motion-title {
        font-size: 55px;
        margin-bottom: 20px;
    }

    /* TEXTO */

    .motion-description {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 80px;
    }


    /* 1400 FOOTER */


    .footer-custom {
        padding: 50px 80px;
    }

    .footer-custom h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .footer-copy {
        font-size: 16px;
    }

    .footer-list li {
        margin-bottom: 10px;
    }

    .footer-list a {
        font-size: 16px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons i {
        font-size: 20px;
    }
}


/*///////////////////////////////////  1200  /////////////////////////////////////////////////////*/

@media (max-width:1200px) {
    /* TITULO */

    .motion-title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    /* TEXTO */

    .motion-description {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 80px;
    }

}

/*///////////////////////////////////  992   /////////////////////////////////////////////////////*/

@media (max-width:992px) {


    /* 992 FOOTER */
    .footer-logo {
        width: 50px;
    }

    .footer-custom h3 {
        font-size: 18px;
    }

    .footer-list a,
    .footer-copy {
        font-size: 12px !important;
    }

    .icono-social i {
        font-size: 20px !important;
    }
}

/*///////////////////////////////////  768   /////////////////////////////////////////////////////*/
@media (max-width:768px) {

    /* NAV */
    .navbar {
        padding: 30px 0px !important;
    }

    nav a {
        font-size: 15px !important;
    }


    /* TITULO */

    .motion-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    /* TEXTO */

    .motion-description {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 80px;
    }

    /* FOOTER */

    .footer-logo {
        width: 50px;
    }

    .footer-custom {
        padding: 30px 0 !important;
    }

    .footer-custom h3 {
        font-size: 14px;
        line-height: 1;
    }

    .footer-list li {
        margin-bottom: 10px;
        line-height: 1;
    }

    .footer-list a,
    .footer-copy {
        font-size: 12px !important;

    }

    .social-icons {
        gap: 10px
    }

    .icono-social i {
        font-size: 15px !important;
        line-height: 1;
    }



}


/*///////////////////////////////////  576   ////////////////////////////////////////////*/

@media (max-width:576px) {

    .navbar {
        position: relative;
    }

    /* TITULO */

    .motion-title {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .motion-graphics {

        background: #5965F2;

        padding: 0;
    }

    /* TEXTO */

    .motion-description {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 20px;
    }


    /* FOOTER */
    .footer-custom {
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-custom .col-lg-4,
    .footer-custom .col-lg-2,
    .footer-custom .col-md-6 {
        margin-bottom: 20px;
    }


    .icono-social i {
        font-size: 12px !important;
        line-height: 1;
    }

    .flecha {

        bottom: 10px;
        right: 5px;
        display: block;
        position: fixed;

    }

    .flecha img {
        width: 50%;
    }
}