* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
}

.secaoAnimar {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-left: 1px;
    line-height: 1.5;
    align-items: center;
}

.subtitle {
    font-size: 2em;
}

.paragrafo {

    font-size: 1.2em;
}

/* HERO */
.hero {
    height: 65vh;
    background: url("4k-programming-background-a9q71z7kd0581lgo.jpg") no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.container {
    position: relative;
    z-index: 2;
}

.caixa {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
}

/* SEÇÕES */
.secao {
    padding: 4em 1em;
    max-width: 60em;
    margin: auto;
}

/* CARDS */
.card {
    background: #137000;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* SKILLS */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills span {
    background: #01a10f;
    color: black;
    padding: 8px 12px;
    border-radius: 8px;
}

/* ANIMAÇÃO BASE */
.animar {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animar.ativo {
    opacity: 1;
    transform: translateY(0);
}

/* DIREÇÃO */
.esquerda {
    transform: translateX(-50px);
}

.direita {
    transform: translateX(50px);
}

.animar.ativo.esquerda,
.animar.ativo.direita {
    transform: translateX(0);
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .caixa {
        padding: 20px;
    }
}

.Imagem1 {
    width: 31em;
    height: 20em;
    max-width: 55em;
}

.Video {
    width: 31em;
    height: 20em;
    max-width: 55em;
}

.Video2 {
    width: 31em;
    height: 20em;
    max-width: 55em;
}

.Imagee {
    width: 10em;
    position: fixed;
    /* ou fixed */
    z-index: 9999;
    opacity: 100;
    border: 2px;
    border-radius: 10px;
    border-color: aqua;
}



@media (max-width: 500px) {
    .Video {
        width: 290px;
        height: auto;
    }

    .Video2 {
        width: 290px;
        height: auto;
    }

    .Imagem1 {
        width: 290px;
        height: auto;
    }

    .Imagee {
        width: 1px;
    }

    .secao {
        width: 360px;

    }

    .hero {
        width: 350px;
        height: 65vh;
        background: url("4k-programming-background-a9q71z7kd0581lgo.jpg");
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .overlay {
        position: absolute;
        width: 400px;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    #ani {
        position: relative;
        display: flex;
        top: 700px;
        width: 150px;
        height: auto;
    }

    .secaoAnimar {
        display: flex;
        flex-direction: column;
        margin-top: 6px;
        width: 360px;
        margin-left: 20px;
        line-height: 1.5;
    }

    .subtitle {
        font-size: 2em;
    }

    .paragrafo {

        font-size: 1em;
    }
}