
body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

body.page-intro,
body.page-intro::before,
body.page-intro::after {
    background: none !important;
}

body.page-intro .app-container {
    background: none !important;
}

.intro-page {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #173a87 0%,
            #0b2763 40%,
            #041847 100%
        );

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}

.intro-page::before {

    content: '';

    position: absolute;

    width: 1200px;
    height: 1200px;

    right: -400px;
    top: -250px;

    border:
        120px solid
        rgba(
            255,
            255,
            255,
            .03
        );

    transform:
        rotate(45deg);

    pointer-events: none;
}

.intro-page::after {

    content: '';

    position: absolute;

    width: 800px;
    height: 800px;

    left: -300px;
    top: 150px;

    border:
        80px solid
        rgba(
            255,
            255,
            255,
            .02
        );

    transform:
        rotate(45deg);

    pointer-events: none;
}

.intro-bg {

    position: absolute;

    inset: -20%;

    background:

        radial-gradient(
            circle at 20% 20%,
            rgba(0,180,255,.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 30%,
            rgba(0,120,255,.15),
            transparent 40%
        ),

        radial-gradient(
            circle at 50% 80%,
            rgba(0,220,255,.12),
            transparent 35%
        );

    animation:
        introBackgroundMove
        12s ease-in-out infinite alternate;

    filter:
        blur(20px);

    pointer-events: none;

    z-index: 0;
}

@keyframes introBackgroundMove {

    0% {
        transform:
            translate3d(-6%, -5%, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(5%, 4%, 0)
            scale(1.10);
    }

    100% {
        transform:
            translate3d(-4%, 6%, 0)
            scale(1.14);
    }
}

.intro-content {

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
     min-height: calc(
        100vh - 120px
    );
    padding-bottom: 120px;
}

.intro-logo img {

    width: 320px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 25px
            rgba(
                0,
                0,
                0,
                .25
            )
        );
}

.intro-slogan {

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

    font-size: 1.4rem;

    text-align: center;
}

.intro-card {

    position: relative;

    width: clamp(
        700px,
        60vw,
        950px
    );

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 28px;

    border:
        4px solid
        rgba(
            0,
            162,
            255,
            .85
        );

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            .35
        );

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.intro-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 30px 70px
        rgba(
            0,
            162,
            255,
            .35 );
}

.intro-card-image {

    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.intro-card-overlay {

    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 40px;
    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(
                0,
                0,
                0,
                .65
            ) 100%
        );
}

.intro-card-subtitle {

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

    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 1.1rem;
}

.intro-card-title {

    color: #FFF;

    font-family:
        var(--font-display);

    font-size:
        clamp(
            2.6rem,
            4vw,
            4.8rem
        );

    font-weight: 400;

    margin: 0;
}

.intro-card-arrow {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    border:
        2px solid
        rgba(
            0,
            162,
            255,
            .8
        );

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 16px;

    color: #00a2ff;

    background:
        rgba(
            0,
            0,
            0,
            .35
        );
}

.intro-footer {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 24px;

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

    z-index: 2;
}

.intro-socials {

    display: flex;

    gap: 18px;
}

.intro-socials a {

    color: #00a2ff;

    font-size: 1.8rem;

    transition:
        transform .2s ease;
}

.intro-socials a:hover {

    transform:
        scale(1.1);
}

.intro-card-wrapper {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.intro-card-caption {
    position: relative;
    margin: 0;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size:
        clamp(
            1.2rem,
            1.8vw,
            2.6rem
        );

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .03em;

    text-align: center;

    text-shadow:
        0 6px 20px
        rgba(
            0,
            0,
            0,
            .35
        );
}

.intro-page::before {

    content: '';

    position: absolute;

    width: 1200px;
    height: 1200px;

    right: -350px;
    top: -250px;

    border:
        120px solid
        rgba(
            255,
            255,
            255,
            .03
        );

    transform:
        rotate(45deg);

    pointer-events: none;

    animation:
        sercaFloat1
        16s ease-in-out infinite;    
}

.intro-page::after {

    content: '';

    position: absolute;

    width: 800px;
    height: 800px;

    left: -300px;
    top: 200px;

    border:
        80px solid
        rgba(
            255,
            255,
            255,
            .02
        );

    transform:
        rotate(45deg);

    pointer-events: none;

    animation:
        sercaFloat2
        20s ease-in-out infinite;    
}

@keyframes sercaFloat1 {

    0% {

        transform:
            rotate(45deg)
            translateX(0);
    }

    50% {

        transform:
            rotate(45deg)
            translateX(-40px);
    }

    100% {

        transform:
            rotate(45deg)
            translateX(0);
    }
}

@keyframes sercaFloat2 {

    0% {

        transform:
            rotate(45deg)
            translateY(0);
    }

    50% {

        transform:
            rotate(45deg)
            translateY(35px);
    }

    100% {

        transform:
            rotate(45deg)
            translateY(0);
    }
}

body.page-intro {

    background:
        #0b2763 !important;
}

body.page-intro .intro-page {

    background:
        linear-gradient(
            180deg,
            #173a87 0%,
            #0b2763 45%,
            #041847 100%
        ) !important;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

    .intro-content {

        padding:
            40px 24px 120px;
    }

    .intro-logo img {

        width: 220px;
    }

    .intro-slogan {

        font-size: 1.1rem;
    }

    .intro-card {

        width: min(
            90vw,
            800px
        );
    }

    .intro-card-caption {

        font-size:
            clamp(
                1.8rem,
                4vw,
                3rem
            );
    }

    .intro-footer {

        gap: 24px;

        font-size: .95rem;
    }

    .intro-socials {

        gap: 18px;
    }

    .intro-socials a {

        font-size: 1.5rem;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .intro-content {

        padding:
            30px 20px 110px;

        gap: 20px;
    }

    .intro-logo img {

        width: 180px;
    }

    .intro-slogan {

        font-size: .95rem;

        text-align: center;
    }

    .intro-card {

        width: 92vw;

        border-radius: 18px;
    }

    .intro-card-caption {

        font-size:
            clamp(
                1rem,
                7vw,
                2rem
            );

        line-height: 1.1;

        padding:
            0 12px;
    }

    .intro-footer {

        left: 50%;

        transform:
            translateX(-50%);

        flex-direction: column;

        gap: 14px;

        text-align: center;

        width: 100%;
    }

    .intro-socials {

        gap: 16px;
    }

    .intro-socials a {

        font-size: 1.6rem;
    }

    .intro-page::before {

        width: 700px;
        height: 700px;

        right: -300px;
        top: -150px;

        border-width: 60px;
    }

    .intro-page::after {

        width: 500px;
        height: 500px;

        left: -200px;
        top: 250px;

        border-width: 40px;
    }
}

/* ==========================================
   MOBILE PEQUENO
========================================== */

@media (max-width: 480px) {

    .intro-logo img {

        width: 150px;
    }

    .intro-slogan {

        font-size: .9rem;
    }

    .intro-card {

        width: 94vw;
    }

    .intro-card-caption {

        font-size:
            clamp(
                1rem,
                6vw,
                1.2rem
            );
    }

    .intro-footer {

        font-size: .85rem;
    }

    .intro-socials a {

        font-size: 1.4rem;
    }
}