* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'vamos';
    src: url('../assets/fonts/vamos/vamos.otf') format('woff2'),
        url('../assets/fonts/vamos/vamos.otf') format('woff'),
        url('../assets/fonts/vamos/vamos.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: #000016;
}

h1{
    font-family: 'vamos', sans-serif;
}

.voltar {
    position: fixed;
    top: 10px;
    left: 10px;
}

.voltar img{
    transform: rotate(180deg);
    background-color: white;
    border-radius: 50%;
}

.voltar img:hover {
    cursor: pointer;
    transform: rotate(180deg) scale(1.1);
    transition: transform 0.3s ease;
}

.container {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/img/quadriculado\ 1920\ bot.webp'), url('../assets/img/quadriculado\ 1920\ top.webp');
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    background-position: top, bottom;
    height: auto;
}

.textos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 20px auto;
}

.textos img{
    width: 100%;
    padding-bottom: 40px;
}


.textos h1 {
    font-size: 2.5rem;
    color: #eee;
    text-align: center;
    margin-bottom: 20px;
}

.textos p{
    font-family: 'poppins', sans-serif;
    color: #eeeeeef3;
}

.textos ul li{
    font-family: 'poppins', sans-serif;
    color: #eeeeeef3;
    margin-bottom: 10px;
}

.imagens{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.imagens img, video{
    width: 100%;
    height: auto;
    margin: 10px 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 60px 10px;
        background-size: cover, cover;
    }
    .textos {
        width: 90%;
    }
    .textos h1 {
        font-size: 2rem;
    }
    .imagens img, .imagens video {
        width: 80%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .container {
        padding:     50px 8px;
        background-size: cover, cover;
    }
    .textos {
        width: 100%;
        margin: 10px 0;
    }
    .textos h1 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .textos p,
    .textos ul li {
        font-size: 1rem;
        text-align: left;
    }
    .imagens img, .imagens video {
        width: 100%;
    }
}


