@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@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');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

body {
    background-color: #131313;
    color: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.secao {
    padding: 100px 50px;
    margin-left: 30px;
}

.effect {
    position: relative;
    display: inline-block;
    top: -3px;
}

.effect::after {
    content: "|"; 
    margin-left: 3px;
    opacity: 0;
    font-size: 24px;
    color: #3557f2;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.img-apresentacao {
    width: 450px;
    height: 450px;
    margin-right: 30px;
}

.conteudo-sobre p {
    margin-bottom: 20px;
    color: #c3c3c3;
    width: 590px;
}

.conteudo {
    max-width: 100%;
}

.svg-click {
    vertical-align: middle;
    margin: -5px 0px 0px 3px;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    margin: 0px 50px;
    align-items: center;
    border-bottom: 1px solid rgb(195 195 195 / 30%);
}

ul {
    gap: 50px;
    display: flex;
    list-style: none;
    font-size: 18px;
    align-items: center;
    animation: slideIn 0.8s ease-out;
}

.principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    min-height: 85vh;
    margin: 0px auto;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 30px;
    animation: fadeIn 1s ease-out;
}

.principal h2 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.principal span {
    color: #3557f2;
}

.titulo-pagina {
    font-size: 48px;
    color: #3557f2;
    font-weight: 700;
    font-style: italic;
}

.titulo-big {
    font-size: 60px;
    font-style: italic;
}

.principal p {
    font-size: 22px;
    max-width: 500px;
    color: #c3c3c3;
    margin-bottom: 30px;
    margin-left: 0px;
    font-style: italic;
}

.menu {
    color: #c3c3c3;
    position: relative;
    transition: color 0.3s ease;
}

.menu::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3557f2;
    transition: width 0.3s ease;
}

.menu:hover::after {
    width: 100%;
}

.botao {
    background-color: #3557f2;
    color: white;
    font-size: 20px;
    padding: 18px 30px;
    border-radius: 12px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: pulseButton 2s infinite ease-in-out;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(53, 87, 242, 0.4);
}

.titulo-secao {
    font-size: 42px;
    margin-bottom: 60px;
    position: relative;
    animation: slideIn 0.8s ease-out;
}

.titulo-secao::after {
    content: '';
    position: absolute;
    left: 0;
    background-color: #3557f2;    
    width: 90px;
    height: 4px;
    bottom: -8px;
    border-radius: 5px;
}

.grade-projetos {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 500px));
    gap: 30px;
    animation: slideIn 0.6s ease-out;
}

.img-projeto {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 20px 20px 0px 0px;
}

.card-projeto {
    background-color: #1d1d1d9e;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
    border: 1px solid rgb(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-projeto:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-projeto {
    padding: 20px;
    margin-bottom: 25px;
}

.info-projeto h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
}

.info-projeto p {
    color: #c3c3c3;
    margin-bottom: 18px;
}

.info-projeto a {
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    background: #3557f2;
    padding: 8px 14px;
    border-radius: 7px;
}

.tech-icons {
    display: block;
    margin-bottom: 25px;
}

.sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    max-width: 1350px;
    margin: 0px 100px 0px;
    animation: fadeIn 1s ease-out;
}

.img-sobre {
    background-color: #131313;
    border-radius: 25px;
    height: 400px;
    padding: 10px 10px;
    outline: 1px solid #ffffff36;
}

.conteudo-sobre h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.conteudo-sobre p {
    margin-bottom: 20px;
    color: #c3c3c3;
    line-height: 22px;
}

.habilidades {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 80%;
}

.modulos-curso {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    width: 100%;
}

.tag-habilidades {
    padding: 10px 0px;
    margin-bottom: 10px;
    margin-right: 15px;
    border: none;
    background: none;
    animation: slideIn 0.5s ease-out;
}

.modulos-curso-devclub {
    background-color: rgb(77, 124, 254, 0.2);
    padding: 10px 10px;
    border-radius: 8px;
    font-size: 16px;
    color: #3557f2;
    margin-bottom: 10px;
    margin-right: 10px;
    border: none;
}

.botoes-contato {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.botao-contato {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 500;
    min-width: 160px;
    text-decoration: none;
    color: white;
    justify-content: center;
}

.whatsapp {
    background-color: #25d366;
    box-shadow: 0px 0px 15px #25d366;
}

.email {
    background-color: #ea4335;
    box-shadow: 0px 0px 15px #ea4335;
}

.linkedin {
    background-color: #0077b5;
    box-shadow: 0px 0px 15px #0077b5;
}

.github {
    background-color: #333;
    box-shadow: 0px 0px 15px #333;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 30px 5%;
    gap: 50px;
    font-size: 14px;
    margin-left: 50px;
    margin-right: 50px;
    color: #c3c3c3;
    font-weight: 300;
    border-top: 1px solid rgb(195 195 195 / 30%);
}

.efeito-cursor {
    transition: transform 0.5s ease-in-out;
}

.efeito-cursor:hover {
    transform: translateY(-5px);
}

.efeito-menu {
    transition: transform 0.4s ease-in-out;
}

.efeito-menu:hover {
    transform: translateY(-3px);
}

bdi {
    font-size: 60px;
}

h2 bdi::after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 4px;
    background-color: #3557f2;
    border-radius: 5px;
    vertical-align: bottom;
    position: relative;
    right: 100px;
    bottom: 0px;
}

img {
    max-width: 100%;
    height: auto;
}

.link-menu {
    background-color: #3557f2;
    color: #ffffff;
    padding: 15px 15px;
    border-radius: 10px;
}

.destaque {
    font-size: 24px;
    font-weight: 600;
}

.facul {
    font-size: 24px;
}

b {
    font-weight: 600;
    font-size: 60px;
}

.aluno-devclub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-around;
    padding: 30px 30px;
    margin-right: 215px;
    margin-left: 215px;
    border-radius: 25px;
    border: 1px solid rgb(255 255 255 / 15%);
    margin-top: 115px;
    margin-bottom: 100px;
    gap: 6px;
}

.descricao-aluno-devclub {
    color: #3557f2;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Orbitron', sans-serif;
}

.texto-aluno-devclub {
    color: #c3c3c3;
    font-size: 17px;
    font-weight: 300;
    text-align: left;
    line-height: 1.5em;
}

.img-aluno-devclub {
    border-radius: 25px;
    outline: 1px solid rgb(255 255 255 / 15%);
    padding: 10px 10px;
}

.devclub-modulos {
    color: #3557f2;
    font-size: 20px;
    font-style: italic;
}

.efeito-cursor-fundo-azul:hover {
    background-color: #3557f2;
    color: white;
}

.secao-contato {
    padding: 50px 45px;
    background-color: #1d1d1d;
    border-radius: 20px;
    margin: 115px auto 0px;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
    border: 1px solid rgb(255, 255, 255, 0.1)
}

.container-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    max-width: 100%;
}

.info-contato h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-contato p {
    color: #c3c3c3;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 14px;
}

.dados-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-contato {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-contato svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.item-contato span {
    color: #c3c3c3;
    font-size: 14px;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campo-form label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
}

.campo-form input,
.campo-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #3557f2;
    background-color: #131313;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: #3557f2;
}

.campo-form textarea {
    height: 75px;
    resize: none;
}

.botao-enviar {
    background-color: #3557f2;
    color: white;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
}

.footer-text {
    width: 300px;
    margin-left: 16px;
}

@media screen and (max-width: 767px) {
    .principal {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .img-apresentacao {
        width: 300px;
        height: 300px;
        margin: 30px 0;
    }

    .grade-projetos {
        grid-template-columns: 1fr;
    }

    .card-projeto {
        width: 100%;
    }

    .sobre {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .img-sobre {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }

    .conteudo-sobre p {
        width: 100%;
    }

    .habilidades {
        justify-content: center;
    }

    .aluno-devclub {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .img-aluno-devclub {
        width: 300px;
        height: 335px;
        margin-bottom: 30px;
    }

    .modulos-curso {
        justify-content: center;
    }

    .botoes-contato {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 20px;
    }

    .botao-contato {
        width: 100%;
    }

    header {
        width: 84.5%;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        margin-left: 32px;
    }

    h2 bdi::after {
        display: none;
    }

    .principal p {
        font-size: 22px;
        max-width: 500px;
        color: #c3c3c3;
        margin-bottom: 20px;
        margin-left: 0px;
        font-style: italic;
    }

    .conteudo-sobre p {
        margin-bottom: 20px;
        color: #c3c3c3;
        text-align: justify;
        width: auto;
    }

    .titulo-secao {
        font-size: 38px;
    }

    bdi {
        font-size: 42px;
        font-weight: 600;
    }

    h1 {
        display: flex;
        justify-content: center;
    }

    ul {
        gap: 20px;
        justify-content: center;
        font-size: 16px;
        align-items: center;
    }

    .titulo-pagina {
        font-size: 42px;
        color: #3557f2;
        font-weight: 700;
        font-style: italic;
        margin: 7px 0px 0px;
    }

    .secao {
        padding: 60px 20px;
        margin-left: 5px;
    }

    .principal h2 {
        font-size: 50px;
        margin-top: 15px;
    }

    .sobre {
        grid-template-columns: 1fr;
        margin: auto;
        display: grid;
        justify-content: center;
    }

    .img-sobre {
        height: auto;
        margin: auto auto 15px auto;
        width: 95%;
        outline: 1px solid #ffffff36;
        padding: 10px 10px;
        border-radius: 25px;
    }

    .conteudo-sobre h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 15px;
    }

    .texto-aluno-devclub {
        color: #c3c3c3;
        font-size: 17px;
        font-weight: 300;
        text-align: justify;
        line-height: 1.5em;
    }

    .habilidades {
        display: flex;
        flex-wrap: wrap;
        margin-top: -10px;
        width: 100%;
        justify-content: center;
        margin-left: -2px;
    }

    .grade-projetos {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .img-aluno-devclub {
        border-radius: 20px;
        outline: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        margin: 0px auto 10px;
        width: 98%;
    }

    .aluno-devclub {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: space-around;
        padding: 30px 20px;
        margin-right: 15px;
        margin-left: 15px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .descricao-aluno-devclub {
        color: #3557f2;
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 300;
        text-align: center;
    }

    .modulos-curso {
        flex-wrap: wrap;
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 5px;
    }

    .modulos-curso-devclub {
        background-color: rgb(77, 124, 254, 0.2);
        padding: 10px 10px;
        border-radius: 8px;
        font-size: 18px;
        color: #3557f2;
        margin-bottom: 10px;
        margin-right: 10px;
        border: none;
    }

    .devclub-modulos {
        color: #3557f2;
        font-size: 20px;
        font-style: italic;
        justify-content: center;
        display: flex;
        margin-top: 5px;
    }

    .tag-habilidades {
        padding: 4px 10px;
        margin-bottom: 10px;
        margin-right: 0px;
        border: none;
        background: none;
    }

    .card-projeto {
        background-color: #1d1d1d9e;
        border-radius: 20px;
        overflow: hidden;
        width: 100%;
    }

    .principal {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        padding: 50px;
        min-height: 55vh;
        margin: 0px auto;
        text-align: center;
    }

    .botao {
        background-color: #3557f2;
        color: white;
        font-size: 20px;
        padding: 15px 30px;
        border-radius: 12px;
        display: inline-block;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .botoes-contato {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-content: center;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

    footer {
        display: flex;
        justify-content: space-around;
        padding: 30px 0%;
        gap: 50px;
        font-size: 15px;
        align-items: center;
        width: 84.5%;
        margin-left: 32px;
    }

    .titulo-big {
        font-size: 52px;
        font-style: italic;
        margin-bottom: 20px;
    }

    .link-menu {
        background-color: #3557f2;
        color: #ffffff;
        padding: 12px 12px;
        border-radius: 10px;
        display: inline;
        font-weight: 800;
    }

    .principal span {
        color: #3557f2;
    }

    b {
        font-weight: 600;
        font-size: 42px;
    }

    .img-apresentacao {
        display: none;
    }

    .footer-text {
        width: 300px;
        margin-left: 16px;
    }

    .secao-contato {
        padding: 40px 20px;
        margin: 50px 15px 50px;
    }

    .container-contato {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        align-items: start;
        max-width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .principal h2 {
        font-size: 60px;
    }

    .img-apresentacao {
        width: 350px;
        height: 350px;
    }

    .grade-projetos {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre {
        gap: 30px;
    }

    .img-sobre {
        width: 350px;
        height: 350px;
    }

    .aluno-devclub {
        gap: 30px;
    }

    .img-aluno-devclub {
        width: 350px;
        height: 350px;
    }

    .secao-contato {
        margin: 115px auto 100px;
    }
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
    .aluno-devclub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: space-around;
        padding: 35px 35px;
        margin-right: 60px;
        margin-left: 60px;
        border-radius: 25px;
        border: 1px solid rgb(255 255 255 / 15%);
        margin-top: 115px;
        margin-bottom: 100px;
        gap: 25px;
    }

    .sobre {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: center;
        max-width: 850px;
        margin: auto;
    }

    .secao {
        padding: 100px 0;
        padding-left: 50px;
        margin-left: 0px;
        padding-right: 50px;
    }

    .principal {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px;
        min-height: 85vh;
        margin: 0px auto;
        padding-left: 50px;
        padding-right: 50px;
        margin-left: 0px;
    }

    .card-projeto {
        background-color: #1d1d1d9e;
        border-radius: 20px;
        overflow: hidden;
        width: 100%;
    }

    .grade-projetos {
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 500px));
        gap: 30px 25px;
    }

    .img-apresentacao {
        width: 450px;
        height: auto;
        margin-right: 0px;
    }

    header {
        display: grid;
        padding: 30px;
        margin-left: 35px;
        margin-right: 35px;
        align-items: center;
        border-bottom: 1px solid rgb(195 195 195 / 30%);
        text-align: center;
        justify-content: center;
        gap: 25px 0px;
    }

    footer {
        display: flex;
        justify-content: space-around;
        padding: 30px 5%;
        gap: 50px;
        font-size: 15px;
        margin-left: 35px;
        margin-right: 35px;
        color: #c3c3c3;
        font-weight: 300;
        border-top: 1px solid rgb(195 195 195 / 30%);
    }

    .conteudo-sobre {
        width: auto;
    }

    .conteudo-sobre p {
        margin-bottom: 20px;
        color: #c3c3c3;
    }

    .img-sobre {
        background-color: #131313;
        border-radius: 25px;
        height: 400px;
        padding: 10px 10px;
        outline: 1px solid #ffffff36;
        display: block;
        margin: auto;
    }

    .conteudo-sobre h2 {
        margin-bottom: 20px;
        font-size: 30px;
        text-align: center;
    }

    .habilidades {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .secao {
        padding: 100px 0;
        padding-left: 50px;
        margin-left: 15px;
        padding-right: 50px;
    }

    .principal {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px;
        min-height: 85vh;
        margin: 0px auto;
        padding-left: 50px;
        padding-right: 50px;
        margin-left: 15px;
    }

    .aluno-devclub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: space-around;
        padding: 30px 30px;
        margin-right: 130px;
        margin-left: 130px;
        border-radius: 25px;
        border: 1px solid rgb(255 255 255 / 15%);
        margin-top: 115px;
        margin-bottom: 100px;
        gap: 0px;
    }

    .img-apresentacao {
        width: 425px;
        height: auto;
        margin-right: 15px;
    }

    .sobre {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        align-items: center;
        max-width: 1350px;
        margin: 0px 35px 0px;
    }

    .principal h2 {
        font-size: 65px;
        line-height: 1;
        margin-bottom: 20px;
        letter-spacing: -3px;
    }

    .modulos-curso-devclub {
        background-color: rgb(77, 124, 254, 0.2);
        padding: 10px 8px;
        border-radius: 8px;
        font-size: 16px;
        color: #3557f2;
        margin-bottom: 10px;
        margin-right: 8px;
        border: none;
    }

    header {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        margin-left: 35px;
        margin-right: 35px;
        align-items: center;
        border-bottom: 1px solid rgb(195 195 195 / 30%);
    }

    footer {
        display: flex;
        justify-content: space-around;
        padding: 30px 5%;
        gap: 50px;
        font-size: 14px;
        margin-left: 35px;
        margin-right: 35px;
        color: #c3c3c3;
        font-weight: 300;
        border-top: 1px solid rgb(195 195 195 / 30%);
    }

    .grade-projetos {
        display: grid;
        grid-template-columns: repeat(3, minmax(300px, 500px));
        gap: 5px;
    }

    .card-projeto {
        background-color: #1d1d1d9e;
        border-radius: 20px;
        overflow: hidden;
        width: 95%;
    }

    .texto-aluno-devclub {
        color: #c3c3c3;
        font-size: 17px;
        font-weight: 300;
        text-align: left;
        line-height: 1.5em;
        width: 418px;
    }

    .img-aluno-devclub {
        border-radius: 25px;
        outline: 1px solid rgb(255 255 255 / 15%);
        padding: 10px 10px;
        margin-left: 10px;
    }

    .secao-contato {
        margin: 115px auto 0px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}