@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&family=Unbounded:wght@200..900&display=swap');

body {
    background-color: #006CCF;
    background-image: url('../img/bg.jpg');
}

p {
    font-family: 'Stack Sans Headline', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #292929;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Unbounded', cursive;
}

header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 142px;
    text-transform: uppercase;
    line-height: 90%;
    font-weight: 800;
    color: #fff;
}

h2 {
    font-size: 42px;
    text-transform: uppercase;
    line-height: 90%;
    font-weight: 800;
    color: #fff;
    margin-bottom: 80px;
}

h3 {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 96%;
    font-weight: 800;
    color: #0f0f0f;
    margin-bottom: 20px;
}

.zindex-1 {
    z-index: 1;
    position: relative;
    margin-bottom: -130px;
}

.zindex-2 {
    z-index: 3;
    position: relative;
}

.card {
    border-radius: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
}

.w90 {
    width: 90%;
    margin: 0 auto;
}

.capivara {
    position: absolute;
    top: 380px;
    left: 0%;

    z-index: 3;

    animation: capivara 5s ease-in-out infinite;
}

.capivara img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    transform: rotate(10deg);
    border-radius: 100%;
}

@keyframes capivara {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.ponte {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    z-index: 3;
    animation: ponte 25s ease-in-out infinite;

}

.ponte img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transform: rotate(10deg) scale(1);
}

@keyframes ponte {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cultura {
    position: absolute;
    top: 14%;
    right: 10%;
    width: 290px;
    z-index: 0;
    animation: cultura 25s ease-in-out infinite;
}

.cultura img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transform: rotate(-10deg) scale(1);
}

@keyframes cultura {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}


.euamo1,
.euamo2 {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 190px;
    z-index: 3;
    border-radius: 15px;
    animation: euamo1 20s ease-in-out infinite;
}

.euamo1 img,
.euamo2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(10deg) scale(1);
}

.euamo2 {
    top: 20%;
    left: 21%;
    width: 190px;
}

.euamo2 img {
    transform: rotate(343deg) scale(1);
    border-radius: 50%;
}

@keyframes euamo1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 95s linear infinite;
    font-size: 162px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-family: "Unbounded";
    font-weight: 900;
    font-style: normal;
    color: #fff;
}

@keyframes marquee {

    /* Início da animação: move o texto para a direita (fora da tela) */
    0% {
        transform: translateX(0);
    }

    /* Fim da animação: move o texto para a esquerda (fora da tela) */
    100% {
        /* O valor exato de -100% empurra o elemento para fora da sua própria largura */
        transform: translateX(-100%);
    }
}

.marquee-container {
    overflow-x: hidden;
    width: 100%;
}

.box {
    background-color: #fff;
    border-radius: 15px;
    /* padding: 40px; */
    overflow: hidden;
    min-height: 450px;
    flex-direction: row;
    box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.1);
}

.fs-18 {
    font-size: 18px;
    white-space: pre-line;
}

.py {
    padding: 80px 40px;
}

iframe {
    border-radius: 15px;
}
.box-content {
    height: 450px;
}
@media (max-width: 1440px) {
    h1 {
        font-size: 120px;
        text-transform: uppercase;
        line-height: 90%;
        font-weight: 800;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .min-200 {
        height: 320px;
    }

    .box-content {
        flex-direction: column;
        height: 600px;
    }

    .py {
        padding: 50px 30px;
    }

    h2 {
        font-size: 26px;

    }

    h1 {
        font-size: 32px;
        text-transform: uppercase;
        line-height: 50px;
        font-weight: 800;
        color: #fff;
    }

    .ponte {
        position: absolute;
        top: 18%;
        left: 29%;
        width: 260px;
        z-index: 3;
        animation: ponte 25s ease-in-out infinite;
    }

    .ponte img {
        width: 40%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
        transform: rotate(10deg) scale(1);
    }

    .capivara {
        position: absolute;
        top: 305px;
        left: -37%;
        z-index: 3;
        animation: capivara 5s ease-in-out infinite;
    }

    .capivara img {
        width: 56%;
        height: 100%;
        object-fit: contain;
        transform: rotate(10deg);
        border-radius: 100%;
    }

    .cultura {
        position: absolute;
        top: 47%;
        right: 3%;
        width: 230px;
        z-index: 0;
        animation: cultura 25s ease-in-out infinite;
    }

    .cultura img {
        width: 60%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
        transform: rotate(-10deg) scale(1);
    }

    .euamo1 img,
    .euamo2 img {
        width: 70%;
        height: 100%;
        object-fit: contain;
        transform: rotate(10deg) scale(1);
    }

    .euamo2 {
        top: 14%;
        left: 2%;
        width: 131px;
    }

    header {

        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 270px 0;
    }

    .navbar-brand img {
        width: 180px;
        height: 100%;
        object-fit: contain;
    }

    .w90 {
        width: 100%;

    }

    .marquee-text {
        white-space: nowrap;
        display: inline-block;
        animation: marquee 95s linear infinite;
        font-size: 82px;
        text-transform: uppercase;
        letter-spacing: -0.05em;
        font-family: "Unbounded";
        font-weight: 900;
        font-style: normal;
        color: #fff;
    }
}