@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --cor-background: #070918;
    --cor-verde-agua: #00ff9f;
    --cor-fonte-branca: #fff;

    --fonte-principal: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-background);
    font-family: var(--fonte-principal);
    height: 100vh;
}

.flex {
    display: flex;
}

.interface {
    max-width: 100%;
    margin: 0 4%;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

h2.titulo {
    color: var(--cor-fonte-branca);
    font-size: 34px;
    text-align: center;
}

h2.titulo span {
    color: var(--cor-verde-agua);
}

.logotipo {
    margin: 0 -10%;
    width: 150px;
    height: auto;
}

.vitorFoto {
    width: 450px;
    height: auto;
    border-radius: 30%;
    box-shadow: 0 0 50px -5px #11ffa0;
}

.btn__contato button {
    background: linear-gradient(135deg, #00ff9f, #00d6b3);
    /* verde neon com variação */
    color: black;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn__contato button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.btn__contato button:hover::before {
    left: 125%;
}

.btn__contato button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 159, 0.5);
}


/* ESTILO DO CABECALHO */
header {
    padding: 0px 2%;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #aeaeae;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

header nav.menu__desktop a:hover {
    color: var(--cor-fonte-branca);
    transform: scale(1.05);
    font-weight: 500;
}

header nav ul {
    list-style-type: none;
}

header nav.menu__desktop ul li {
    display: inline-block;
    padding: 0 40px;
}

/* ESTILO DO MENU MOBILE */
.btn__abrir__menu i {
    color: var(--cor-verde-agua);
    font-size: 40px;
    display: none;
}

.menu__mobile {
    background-color: var(--cor-background);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 0%;
    overflow: hidden;
    transition: 0.3s;
}

.menu__mobile.abrir__menu {
    width: 70%;
}

.menu__mobile.abrir__menu~.overlay__menu {
    display: block;
}

.menu__mobile .btn__fechar {
    padding: 20px 5%;
}

.menu__mobile .btn__fechar i {
    color: var(--cor-verde-agua);
    font-size: 40px;
}

.menu__mobile .btn__fechar i:hover {
    cursor: pointer;
}

.menu__mobile nav ul {
    text-align: right;
}

.menu__mobile nav ul li a {
    color: var(--cor-fonte-branca);
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block
}

.menu__mobile nav ul li a:hover {
    background-color: var(--cor-verde-agua);
    color: var(--cor-background);
}

.overlay__menu {
    background-color: #000000ca;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    display: none;
    transition: .2s;
}



/* ESTILO DO TOPO DO SITE */
section.topo__do__site {
    padding: 40px 4%;
}

section.topo__do__site .flex {
    align-items: center;
    gap: 90px;

}

.topo__do__site .txt__topo__site h1 {
    color: var(--cor-fonte-branca);
    font-size: 45px;
    text-transform: uppercase;
    line-height: 50px;
}

.topo__do__site h1 strong {
    color: var(--cor-verde-agua);
}

.topo__do__site .txt__topo__site p {
    color: var(--cor-fonte-branca);
    margin: 40px 0;
}

.topo__do__site .img__topo__site img {
    position: relative;
    animation: flutuar 2.5s ease-in-out infinite alternate;
}

@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

.topo__do__site .btn__contato {
    display: flex;
    justify-content: space-between;
}

/* ESTILO ESPECIALIDADES */
section.especialidades {
    padding: 80px 4%;
}

section.especialidades .flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;    
}

.wrap {
    flex-wrap: wrap;
}

.especialidades__box img {
    width: 70px;
    height: auto;
}

.especialidades__box {
    color: var(--cor-fonte-branca);
    width: 30%;
    padding: 20px;
    margin-top: 25px;
    transition: 0.2s;
    border-radius: 25px;
}

.especialidades .especialidades__box:hover {
    box-shadow: 0 0 15px white;
    transform: scale(1.05);
}

.especialidades .especialidades__box h3 {
    font-size: 28px;
    margin: 15px 0;
}

.frameworks {
    margin-top: 100px;
}

/* ESTILO DO SOBRE */
section.sobre {
    padding: 80px 4%;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt__sobre {
    color: var(--cor-fonte-branca);

}

.sobre .txt__sobre h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 500;
}

.sobre .txt__sobre h2 span {
    color: var(--cor-verde-agua);
    display: block;
    line-height: 40px;
    font-weight: 600;
}

.sobre .txt__sobre p {
    margin: 20px 0;
    text-align: justify;
}

.btn__social i {
    color: var(--cor-background);
}

.btn__social button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00ff9f, #00d6b3);
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.3);
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.2s;
}

.btn__social button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 159, 0.5);
}

.imagemVitor {
    width: auto;
    height: 550px;
    border-radius: 10px;
}

/* ESTILO DO PORTFÓLIO */
section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff12;
}

section.portfolio .flex {
    margin-top: 60px;
    justify-content: space-around;
}

.img__port {
    width: 360px;
    height: 460px;
    background-color: var(--cor-verde-agua);
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}

.img__port:hover {
    background-position: 0% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d6;
    border-radius: 39.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--cor-fonte-branca);
    opacity: 0;
    transition: 0.3s;
}

.wrap__portfolio {
    flex-wrap: wrap;
    gap: 70px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.botao-projeto {
    text-decoration: none;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ff9f, #00d6b3);
    color: white;
    text-shadow: 0 2px 8px rgb(35, 53, 46), 0 1px 2px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botao-projeto:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 255, 159, 0.5);
}



.overlay:hover {
    opacity: 1;
}

/* ESTILO CONTATO */
section.contato {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff12;
}

section.contato .titulo {
    text-decoration: underline;
    text-underline-offset: 15px;
    color: #898989;
}

.txt__contato {
    color: #898989;
    margin: 2.5rem 14rem;
    text-align: center;
}

.contato p i {
    color: var(--cor-verde-agua);
    font-size: 22px;
    margin-right: 15px;
}

.contato .email {
    color: var(--cor-fonte-branca);
    text-align: center;
    cursor: pointer;
}

.contato .cinza {
    color: #666666;
    margin-top: 35px;
}

.alinhamento__email {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.alinhamento__email button {
    border: none;
    border-radius: 9px;
    font-size: 16px;
    padding: 8px;
    background: linear-gradient(135deg, #00ff9f, #00d6b3);
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.3);
    font-family: var(--fonte-principal);
    color: #070918;
    cursor: pointer;
}

.conectar {
    text-align: center;
    margin-top: 10px;
}

.btn__social__conectar button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00ff9f, #00d6b3);
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.3);
    font-size: 18px;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.2s;
}

/* ESTILO DO RODAPE */
.logotipo__rodape {
    margin: -10% -3%;
}

footer {
    padding: 20px 4%;
    box-shadow: 0 0 40px 10px #ffffff12;
}

footer .flex {
    align-items: center;
    justify-content: space-between;
}

footer .line__footer {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .line__footer p i {
    color: var(--cor-verde-agua);
    font-size: 22px;
}

footer .line__footer,
.line__footer a {
    color: var(--cor-fonte-branca);
    margin: 0 10px;
}

.assinatura {
    font-size: 10px;
}

.borda {
    border-top: 2px solid var(--cor-verde-agua);
    ;
}

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

    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }

    h2.titulo {
        font-size: 34px;
        line-height: 32px;
    }

    .topo__do__site .flex {
        flex-direction: column-reverse;
    }

    /* MENU MOBILE */
    .btn__abrir__menu i {
        display: block;
    }

    /* CABEÇALHO */
    .menu__desktop,
    .btn__contato {
        display: none;
    }

    .btn__contato__mobile{
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    

    /* TOPO DO SITE */
    section.topo__do__site .flex {
        gap: 50px;
    }

    section.topo__do__site {
        padding: 20px 8%;
    }

    .topo__do__site .txt__topo__site h1 {
        font-size: 30px;
    }

    .topo__do__site .img__topo__site img {
        width: 100%;
    }

    /* ESTILO ESPECIALIDADES */
    section.especialidades {
        padding: 40px 8%;
        margin: 50px 0;
    }

    section.especialidades .flex {
        margin-top: 2em;
        gap: 20px;
    }

    .especialidades .especialidades__box {
        box-shadow: 0 0 10px white;
        width: 100%;
        padding: 20px;
    }

    /* SOBRE */
    section.sobre {
        padding: 40px 8%;
        margin: 50px 0;
    }

    .sobre .txt__sobre h2 {
        font-size: 34px;
        line-height: 35px;
        text-align: center;
    }

    .btn__social {
        text-align: center;
    }

    .img__sobre {
        text-align: center;
    }

    .imagemVitor {
        width: 90%;
        height: auto;
    }

    /* PORTFOLIO */
    section.portfolio {
        padding: 80px 8%;
    }

    .img__port {
        width: 100%;
        /* max-width: 360px; SE FICAR ESTICADO EM TELAS GRANDES*/
        margin: 0 auto;
    }

    section.portfolio .flex {
        gap: 50px;
    }

    .botoes-projeto{
        display: flex;
        gap: 25px;
    }

    /* ESTILO CONTATO */
    section.contato {
        padding: 80px 7.5%;
    }

    section.contato .titulo {
        text-decoration: none;
    }

    .txt__contato {
        display: none;
    }

    .alinhamento__email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .alinhamento__email button {
        padding: 5px 10px;
        font-size: 16px;
    }

    .btn__social__conectar button{
        color: var(--cor-background);
    }

    /* RODAPE */
    footer .flex {
        flex-direction: column;
        gap: 10px;
    }

    footer .line__footer {
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }



    footer .line__footer a {
        color: var(--cor-fonte-branca);
        margin: 0 5px;
    }
}