/* configs */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

:root {
    --cor-amarelo: #f6ff5c;
    --cor-azul: #6752ff;
    --cor-azul-escuro: #062020;
    --cor-verde: #7dff4f;
    --cor-branco: #ffffff;
    --cor-preto: #000000;
    --transition: .5s;
}

a {
    text-decoration: none;
}

/* header */

.header {

    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-block: 1rem;
    background-color: var(--cor-amarelo);

    img {
        height: 70px;
    }

    /* menu hambúrguer */
    .header__hamburger {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .header__menu {

        a {
            margin-inline: 30px;
            color: var(--cor-preto);
            font-size: 20px;
            font-weight: 200;
            transition: var(--transition);
        }

        a:hover {
            color: var(--cor-azul);
            font-size: 22px;
        }
    }
}

@media screen and (max-width: 1100px) {

    .header {

        .header__menu {

            a {
                margin-inline: 15px;
            }

            a:hover {
                font-size: 23px;
            }
        }
    }
}

@media screen and (max-width: 800px) {

    .header {
        padding-inline: 30px;
        justify-content: space-between;

        img {

            height: 40px;
        }

        .header__menu {
            position: absolute;
            top: 30px;
            right: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--cor-amarelo);
            display: none;
            z-index: 1;
            margin-top: 40px;
        }

        .header__menu a {
            padding: 10px 0;
            text-align: center;
            font-size: 20px;
        }

        .header__menu.open {
            display: flex;
            animation: fadeIn 0.3s ease-in-out;
        }

        .header__hamburger {
            color: var(--cor-preto);
            display: block;
        }
    }

}

/* Animação Fade-In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* fim header */


/* hero */

.home__hero {
    width: 100%;

    .hero_img {
        width: 100%;
        object-fit: cover;
        object-position: 50% 100%;
    }

    .img2 {
        display: none;
    }

}

@media screen and (max-width: 800px) {

    .home__hero {
        .img1 {
            display: none;
        }

        .img2 {
            display: block;
        }
    }
}

/* fim hero */


/* palavras */

.palavras {
    width: 100%;
    display: flex;
    justify-content: center;

    .conectar {
        background-color: var(--cor-azul-escuro);
    }

    .fortalecer {
        background-color: var(--cor-azul);
    }

    .impactar {
        background-color: var(--cor-verde);
    }

    .quadrado {
        width: 35%;
        margin-top: -10px;
        height: 600px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 130px;
        padding-left: 55px;

        h2 {
            font-weight: 100;
            color: var(--cor-branco);
            font-size: 85px;
        }

        h2.cor-preto,
        p.cor-preto {
            color: var(--cor-preto);
        }

        p {
            color: var(--cor-branco);
            width: 70%;
            font-size: 22px;
            font-weight: 100;
        }
    }
}

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

    .palavras {
        flex-wrap: wrap;
        gap: 20px;

        .quadrado {
            width: 48%;
            height: 500px;
            justify-content: center;
            padding-top: 0;
        }
    }
}

@media (max-width: 1024px) {
    .palavras {
        flex-direction: column;
        align-items: center;

        .quadrado {
            width: 80%;
            height: 450px;

            h2 {
                font-size: 70px;
            }

            p {
                font-size: 20px;
            }
        }
    }
}

@media (max-width: 768px) {
    .palavras {

        .quadrado {
            width: 90%;
            height: 400px;

            h2 {
                font-size: 60px;
            }

            p {
                font-size: 18px;
            }
        }
    }
}

@media (max-width: 480px) {
    .palavras {

        .quadrado {
            width: 100%;
            height: 350px;

            h2 {
                font-size: 50px;
            }

            p {
                font-size: 16px;
            }
        }
    }
}

/* fim palavras */


/* bdk vertical */
.bdk-vertical {
    display: flex;
    overflow: hidden;

    aside {
        img.bdk-vertical__img {
            height: 1000px;
        }
    }

    .bdk-horizontal,
    .banner-azul-mobile {

        display: none;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .bdk-vertical__texto {
        margin-left: 360px;
        margin-top: 60px;

        p {
            font-weight: 200;
            font-size: 22px;
            width: 80%;
            margin-bottom: 20px;
        }

        img {
            height: 400px;

        }
    }
}

@media (max-width: 1800px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 900px;
            }
        }

        .bdk-vertical__texto {

            img {
                height: 300px;
            }
        }
    }
}

@media (max-width: 1500px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 850px;
            }
        }

        .bdk-vertical__texto {
            margin-left: 200px;

            p {
                width: 90%;
            }

            img {
                height: 250px;
            }
        }
    }
}

@media (max-width: 1400px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 700px;
            }
        }

        .bdk-vertical__texto {
            margin-left: 150px;

            p {
                width: 90%;
            }
        }
    }
}

@media (max-width: 1200px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 600px;
            }
        }

        .bdk-vertical__texto {
            margin-left: 100px;

            p {
                width: 90%;
            }

            img {
                display: none;
            }
        }
    }
}

@media (max-width: 1000px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 450px;
            }
        }

        .bdk-vertical__texto {
            margin-left: 100px;

            p {
                width: 90%;
            }
        }
    }
}

@media (max-width: 1000px) {

    .bdk-vertical {

        aside {
            img.bdk-vertical__img {
                height: 350px;
            }
        }

        .bdk-vertical__texto {
            margin-left: 75px;

            p {
                width: 90%;
            }
        }
    }
}

@media (max-width: 700px) {

    .bdk-vertical {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;

        aside {
            display: none;
        }

        img.bdk-horizontal,
        img.banner-azul-mobile {
            display: block;
            width: fit-content;
            height: 150px;
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }

        .bdk-vertical__texto {

            p {
                width: 85%;
            }
        }

    }
}

@media (max-width: 520px) {

    .bdk-vertical {

        img.bdk-horizontal {
            height: 100px;
        }

        .bdk-vertical__texto {
            margin-top: 30px;
            margin-left: 0;

            p {
                margin: 0 auto;
                width: 90%;
                text-align: center;
                margin-bottom: 25px;
                font-size: 18px;
            }
        }
    }
}

@media (max-width: 360px) {

    .bdk-vertical {

        img.bdk-horizontal {
            height: 75px;
        }
    }

}

/* fim bdk vertical */


/* historia */
.historia {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 75px;

    .quadrado {
        width: 35%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-inline: 50px;
        margin-bottom: 35px;

        img.historia-profile {
            height: 270px;
        }

        h2 {
            font-size: 75px;
            font-weight: 100;
        }

        span {
            font-weight: 700;
            color: var(--cor-verde);
        }

        strong.cor-preto {
            color: var(--cor-preto);
        }

        p {
            font-weight: 200;
            font-size: 18px;
        }
    }
}

@media (max-width: 1400px) {
    .historia {
        flex-direction: column;
        align-items: center;
        margin: 35px auto;

        .quadrado {
            width: 80%;
            margin-inline: 0;
            text-align: center;
            align-items: center;

            h2 {
                font-size: 100px;
            }
        }
    }
}

@media (max-width: 1024px) {

    .historia {
        width: 90%;

        .quadrado {
            width: 90%;
            margin-bottom: 20px;
        }
    }
}

@media (max-width: 768px) {
    .historia {
        width: 95%;

        .quadrado {
            width: 95%;

            h2 {
                font-size: 80px;
            }

            img.historia-profile {
                height: 220px;
            }
        }
    }
}

@media (max-width: 480px) {
    .historia {

        .quadrado {

            h2 {
                font-size: 65px;
            }

            img.historia-profile {
                height: 200px;
            }
        }

    }
}

/* fim historia */


/* s360 */
.s360 {
    width: 100%;
    min-height: 100vh;
    background-image: url(../assets/background-s360.png);
    background-size: cover;
    background-position: center;
    padding: 40px 20px;

    .titulo__s360 {
        display: flex;
        align-items: center;
        justify-content: space-around;
        text-align: center;
        flex-wrap: wrap;
        gap: 20px;

        h2 {
            font-weight: 100;
            color: var(--cor-amarelo);
            font-size: 85px;

            span {
                font-weight: 600;
            }
        }

        p {
            color: var(--cor-branco);
            font-size: 25px;
            font-weight: 600;
        }
    }

    .list__s360 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;

        .item__s360 {
            width: 40%;
            padding-block: 15px;
            text-align: center;

            h2 {
                color: var(--cor-branco);
                font-weight: 100;
                font-size: 40px;
            }

            p {
                color: var(--cor-amarelo);
                font-weight: 400;
                font-size: 15px;
            }

            p.cor-verde {
                color: var(--cor-verde);
            }
        }
    }

    /* Responsivo */
    @media (max-width: 1024px) {
        .titulo__s360 {
            flex-direction: column;
            text-align: center;

            h2 {
                font-size: 60px;
            }

            p {
                font-size: 20px;
            }
        }

        .list__s360 {
            flex-direction: column;
            align-items: center;

            .item__s360 {
                width: 80%;
            }
        }
    }

    @media (max-width: 768px) {
        .titulo__s360 {
            h2 {
                font-size: 50px;
            }

            p {
                font-size: 18px;
            }
        }

        .list__s360 {
            .item__s360 {
                width: 100%;

                h2 {
                    font-size: 30px;
                }

                p {
                    font-size: 14px;
                }
            }
        }
    }
}

/* experiência */
.experiencia {
    padding: 40px 20px;

    h2 {
        font-size: 75px;
        font-weight: 100;
        color: var(--cor-azul);
        margin-left: 70px;
    }

    span {
        font-weight: 700;
        color: var(--cor-azul);
    }

    h3 {
        color: var(--cor-azul);
        font-size: 2rem;
        margin-top: 20px;
        margin-left: 70px;
    }

    p {
        margin-left: 70px;
        width: 65%;
        font-size: 20px;
        margin-top: 10px;
    }

    /* Grid de Projetos */
    .projetos {
        display: flex;
        justify-content: center;
        gap: 100px;
        flex-wrap: wrap;

        .projeto {
            position: relative;
            width: 400px;
            height: 400px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }

        .projeto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

        .projeto:hover img {
            transform: scale(1.1);
        }
    }
}


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

    .experiencia {
        h2 {
            text-align: center;
            margin-left: 0;
            margin-bottom: 30px;
        }

        h3 {
            text-align: center;
            margin-left: 0;
            margin-bottom: 30px;
        }

        p {
            text-align: center;
            margin-left: 0;
            margin: 0 auto;
            width: 80%;
        }
    }
}

@media (max-width: 1024px) {

    .experiencia {

        .h3 {
            font-size: 1.8rem;
            margin-left: 30px;
        }
        
        p {
            font-size: 18px;
            width: 90%;
        }
    }
}

@media (max-width: 768px) {

    .experiencia {
        h2 {
            font-size: 60px;
        }

        h3 {
            font-size: 1.5rem;
            margin-left: 0;
            text-align: center;
        }

        .projetos {
            flex-direction: column;
            align-items: center;
        }
    }
}

@media (max-width: 638px) {

    .experiencia {
        .projetos {
            .projeto {
                width: 350px;
                height: 350px;
            }
        }
    }

}


/* footer */
.rodape {
    background-color: #F5F5F5;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Título */
.rodape h2 {
    font-size: 65px;
    font-weight: 100;
    margin-bottom: 15px;
}

.rodape h2 span {
    font-weight: 700;
    color: #131D23;
}

/* Informações de contato */
.info-contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Nome e email */
.dados {
    font-size: 18px;
    font-weight: 200;
}

.dados strong {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}

/* Telefones */
.telefones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.telefone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.telefone img {
    width: 20px;
}

/* Botão */
.btn-contato {
    border: 2px solid #5A49F8;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    color: #5A49F8;
    transition: 0.3s;
}

.btn-contato:hover {
    background-color: #5A49F8;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .info-contato {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-contato {
        margin-top: 10px;
    }

    .container {

        h2 {
            text-align: center;
        }
    }
}

/* fim footer */