* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;

}

::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}


body {
    background-color: rgb(231, 231, 231);
    width: 100%;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
}

#nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.5s ease, color 0.5s ease;
    height: 50px;
}

.nav-container {
    padding: 0;
    margin: 0;
}

ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    color: black;
    text-decoration: none;
}

li {
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.nav-container .links {
    display: flex;
}

.li {
    font-size: 1.2rem;
    color: black;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: background-color 0.5s ease, color 0.5s ease;
    padding: 10px;
}

#tema {
    position: relative;
    width: 30px;
    height: 30px;
}

#modo {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#mododark {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: opacity 0.5s ease, scale 0.5s ease;
}

/* Estilo do botão hamburguer */
.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: none;
    z-index: 1001;
    margin: 15px;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

/* Animação do hambúrguer para X */
#burger-toggle:checked+.burger span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 13px;
}

#burger-toggle:checked+.burger span:nth-of-type(2) {
    opacity: 0;
}

#burger-toggle:checked+.burger span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 13px;
}

#testando {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#imagem {
    width: 65%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: black 0 0 50px;
    transition: box-shadow 0.5s ease, color 0.5s ease;
    background-size: cover;
    position: relative;
    margin-top: 5px;
}


#image {
    transition: opacity 0.5s ease, scale 0.5s ease;
    height: 100%;
    background-size: cover;
    display: block;
}


.main-container #imagem img {
    width: 100%;
}


.content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    width: 100%;
    gap: 10px;
}

.content h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
    margin-bottom: 10px;
}

h5 {
    position: relative;
    color: white;
    top: 10px;
    margin: 0px;
}

.content,
.main-container {
    color: black;
    min-height: 100px;
    margin-top: 60px;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-left: 20px;
    margin-top: 80px;
}

.info p {
    margin-top: 20px;
    font-size: 1rem;
}


/*botão cinza */
.button-container {
    display: flex;
    align-items: center;
    margin-top: 80px;
    margin-left: 100px;
}

.button {
    background-color: transparent;
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
    border: 1px solid #888;
    text-decoration: none;
    color: black;

}


/* .button:hover {
    color: blue;
    border-color: blue;
} */

.line {
    height: 1px;
    width: 300px;
    background-color: #888;
    margin-left: 10px;
    transition: background-color 0.5s ease;
}

/* .button:hover+.line {
    background-color: red;
} */

/*botão cinza */


#footer {
    width: 80%;
    margin-top: 120px;
}

#sociais {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.circulo {
    width: 50px;
    height: 50px;
    border: 2px solid black;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 1s ease, color 1s ease;
}

.redesocial {
    width: 25px;
    height: 25px;
}

.redesocial:hover {
    transform: scale(1.10);
}

h1,
h2,
h3,
p {
    color: black;
    transition: all 0.5s;
}

#texto {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 1.2rem;
}


.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container2 {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.button2 {
    background-color: transparent;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
    border: 1px solid #888;
    text-decoration: none;
    color: black;
}


.line2 {
    height: 1px;
    width: 75px;
    background-color: #888;
    margin-right: 5px;
    transition: background-color 0.5s ease;
}

#button-containerid {
    margin-top: 125px;
}

#buttonid {
    padding: 8px 8px;
    font-size: 11px;
}

#partedehabilidades {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

#textohabilidade {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-weight: bold;
    transition: color 0.5s ease;
}

#habilidades {
    position: relative;
    margin: 0px auto;
    width: 60%;
    max-width: 1000px;
}

#skill {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.borda {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    border-radius: 5px;
    width: 7.5rem;
    height: 7.5rem;
    transition: all 0.5s;
    border: 1px solid black;
    transition: border-color 1s ease, color 1s ease;
}

.skills {
    height: 3rem;
    width: 3rem;
}

.skills:hover {
    transform: scale(1.10);
}

.nome {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: black;
}

#textoprojeto {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-weight: bold;
    transition: color 0.5s ease;
}


.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;

}

.legenda {
    margin-top: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Poppins', 'Arial', sans-serif;

}


/* Modal */

/* Estilizando o fundo do modal */
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.925);
    border-radius: 10px;
    overflow-x: hidden;
}

/* Conteúdo do modal */
.modal-content {
    bottom: 10px;
    top: 10px;
    position: relative;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgb(203, 184, 184);
    box-sizing: border-box;
    width: 65%;
    max-height: 100%;
    height: auto;
    word-wrap: break-word;
    overflow-y: auto;
    text-align: center;
}

/* Imagem dentro do modal */
.modalimagem {
    padding-top: 3%;
    width: 92%;
    border-radius: 10px;
}

/* Texto abaixo da imagem */
.modalText {
    text-align: center;
    position: relative;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 2rem;
    color: rgb(206, 206, 206);
}

/* Botão de fechar */
.fecharmodal {
    position: absolute;
    top: 3%;
    right: 3%;
    background: white;
    color: black;
    font-size: 1.5rem;
    padding: 3px 6px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

button:hover {
    background: darkred;
}

.glide__arrow--left {
    left: 3rem;
}


.glide {
    display: none;
}

.cards {
    width: 90%;
    border-radius: 10px;
    border: 1px solid black;
    cursor: pointer;
}

.cards:hover {
    transform: scale(1.05);
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.curriculo {
    color: black;
    border: 0.1rem solid black;
    padding: 0.75rem 1.25rem;
    border-radius: 1.25rem;
    text-decoration: none;
    font-family: 'Georgia';
    font-size: 1rem;
    transition: all 0.5s;
}

.curriculo:hover {
    background-color: rgb(146, 130, 130);
}

.link {
    border: 0px;
    margin: 0px;
    height: 25px;
    width: 25px;
}

#sociais2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}


.fatec-footer {
    color: #fff;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#linhafooter {
    margin: 20px auto 10px;
    border: 0;
    height: 2px;
    background-color: #000000;
    width: 100%;
}

#logofatec {
    transition: all 0.5s;
    filter: invert(1);

}

#copyright {
    font-size: 1rem;
    color: #000000;
}

#contatotexto {
    color: #000000;
    display: flex;
    justify-content: center;
}

#temapaginainical {
    display: none;
}

/*  Modal  */

#projetos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.container {
    display: flex;
    justify-content: center;
    width: calc(31% - 20px);
}

.image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.modal-trigger-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal-trigger-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.imgdentrodomodal {
    margin-top: 5%;
    width: 94%;
}

.modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 60%;
    width: 100%;
    text-align: center;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
    position: relative;
}


.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-texto {
    padding: 20px;
    line-height: 1.6;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-texto h2 {
    color: #000000;
    font-size: 1.4rem;
    margin-top: 1%;
    border-bottom: 2px solid #000000;
    padding-bottom: 6px;
    font-weight: 600;
}

.modal-texto h2:first-child {
    margin-top: 0;
    font-size: 1.6rem;
    color: #000000;
    border-bottom: 2px solid #000000;
}

.modal-texto p {
    margin-bottom: 16px;
    text-align: justify;
    font-size: 1rem;
    color: #000000;
}


.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.caption-box {
    background-color: none;
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.caption-title {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.caption-subtitle {
    font-size: 16px;
    color: #000000;
}



/* Celulares */
@media (max-width: 580px) {


    /* Ajustes no container de projetos */
    #projetos {
        gap: 15px;
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
    }

    /* Container individual de cada projeto */
    .container {
        width: 100%;
        max-width: 350px;
    }

    /* Ajustes no modal */
    .modal {
        max-width: 90%;
        width: 90%;
        margin: 20px;
        border-radius: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Imagem dentro do modal */
    .imgdentrodomodal {
        margin-top: 2%;
        width: 95%;
    }

    /* Texto do modal */
    .modal-texto {
        padding: 15px;
        text-align: left;
    }

    .modal-texto h2 {
        font-size: 1.3rem;
        margin-top: 15px;
    }


    .modal-texto h2:first-child {
        font-size: 1.3rem;
        margin-top: 0;
    }

    .modal-texto p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    /* Botão de fechar */
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 30px;
        padding: 5px;
    }

    /* Caption box */
    .caption-box {
        padding: 10px 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .caption-title {
        font-size: 16px;
    }

    .caption-subtitle {
        font-size: 14px;
    }

    /* Ajustes na imagem trigger */
    .modal-trigger-image {
        border-radius: 15px;
        width: 100%
    }

    .modal-trigger-image:hover {
        transform: translateY(-2px) scale(1.01);
    }


    #temapaginainical {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        left: 10px;
        cursor: pointer;
    }

    #modo2 {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    #mododark2 {
        width: 30px;
        height: 30px;
        cursor: pointer;
        transition: opacity 0.5s ease, scale 0.5s ease;
    }

    .burger {
        display: block;
        position: absolute;
        right: 10px;
        margin-right: 0;

    }

    .li {
        font-size: 1.5rem;
    }

    #menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: rgb(231, 231, 231);
        z-index: 1000;
        gap: 30px;
        padding: 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    #burger-toggle:checked~#menu {
        opacity: 1;
        pointer-events: auto;
    }

    .mododarkpaginainicial {
        position: fixed;
        top: 15px;
        left: 10px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    .mododarkdentrodohamburguer {
        display: none;
    }

    /* Coloca a img do modo dark para cima */
    #menu li#tema {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    /* Coloca a img do modo dark para cima */

    #mododark,
    #modo {
        width: 35px;
        height: 35px;
        cursor: pointer;
    }

    h1 {
        margin: 0;
    }

    #nav {
        height: 0px;
    }

    #testando {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
    }

    .info {
        display: block;
        margin: 0px;
    }

    .buttons {
        display: none;
    }


    .content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .info {
        display: flex;
    }

    .content,
    .main-container {
        margin-top: 0;
    }

    .content h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 2%;
    }

    #texto {
        margin: 0;
        padding: 2%;
        text-align: center;
    }


    #ajustarcurriculo {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1
    }

    #footer {
        order: 0;
        margin-top: 3%;
    }

    .curriculo {
        margin-top: 10%;

    }

    .button-container {
        display: none;
    }

    #textohabilidade {
        margin-top: 15%;
        margin-bottom: 7%;

    }

    #partedehabilidades {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }

    #habilidades {
        margin: 0;
        width: 90%;
    }

    #textoprojeto {
        margin-top: 7%;
        margin-bottom: 7%;
    }

    #projetos {
        display: none;
        flex-direction: column;
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .glide {
        display: block;
    }

    .glide__slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glide__arrow:hover {
        background: none;
    }

    .cards {
        width: 90%;
    }

    .fatec-footer {
        padding: 10px 10px;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #contatotexto {
        margin-top: 7%;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;

    }


    #copyright {
        order: 2;
    }

    #copyright2 {
        display: none;

    }

    #linhafooter {
        display: none;
    }

}



/* Tablet: de 581px até 768px */
@media (min-width: 581px) and (max-width: 768px) {

    #projetos {
        gap: 20px;
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
    }

    /* Container individual de cada projeto */
    .container {
        width: 100%;
        max-width: 400px;
    }

    /* Ajustes no modal */
    .modal {
        max-width: 85%;
        width: 85%;
        margin: 25px;
        border-radius: 15px;
        max-height: 85vh;
        overflow-y: auto;
    }

    /* Imagem dentro do modal */
    .imgdentrodomodal {
        margin-top: 2%;
        width: 95%;
    }

    /* Texto do modal */
    .modal-texto {
        padding: 20px;
        text-align: left;
    }

    .modal-texto h2 {
        font-size: 1.4rem;
        margin-top: 18px;
    }

    .modal-texto h2:first-child {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .modal-texto p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* Botão de fechar */
    .close-btn {
        top: 12px;
        right: 18px;
        font-size: 32px;
        padding: 6px;
    }

    /* Caption box */
    .caption-box {
        padding: 12px 18px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .caption-title {
        font-size: 17px;
    }

    .caption-subtitle {
        font-size: 15px;
    }

    /* Ajustes na imagem trigger */
    .modal-trigger-image {
        border-radius: 15px;
        width: 120%;
    }

    .glide-wrapper {
        position: relative;
    }


    #left {
        left: 20px;
    }

    #right {
        right: 20px;
    }


    .modal-trigger-image:hover {
        transform: translateY(-3px) scale(1.02);
    }

    #temapaginainical {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        left: 20px;
        cursor: pointer;
    }

    #modo2 {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    #mododark2 {
        width: 35px;
        height: 35px;
        cursor: pointer;
        transition: opacity 0.5s ease, scale 0.5s ease;
    }

    .burger {
        display: block;
        position: absolute;
        right: 20px;
        margin-right: 0;

    }

    .li {
        font-size: 2rem;
    }

    #menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: rgb(231, 231, 231);
        z-index: 1000;
        gap: 30px;
        padding: 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    #burger-toggle:checked~#menu {
        opacity: 1;
        pointer-events: auto;
    }

    .mododarkpaginainicial {
        position: fixed;
        top: 15px;
        left: 10px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    .mododarkdentrodohamburguer {
        display: none;
    }

    /* Coloca a img do modo dark para cima */
    #menu li#tema {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    /* Coloca a img do modo dark para cima */

    #mododark,
    #modo {
        width: 35px;
        height: 35px;
        cursor: pointer;
    }

    #h1 {
        margin-top: 1%;
    }

    h1 {
        margin: 0;
    }

    #nav {
        height: 0px;
    }

    #testando {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
    }

    .info {
        display: block;
        margin: 0px;
    }

    #imagem {
        width: 58%;
    }

    .buttons {
        display: none;
    }


    .content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .info {
        display: flex;
    }

    .content,
    .main-container {
        margin-top: 0;
    }

    .content h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 2%;
    }

    #texto {
        margin: 0;
        padding: 2%;
        font-size: 1.5rem;
        text-align: center;
    }

    .circulo {
        height: 3.5rem;
        width: 3.5rem;
    }

    .redesocial {
        height: 1.6rem;
        width: 1.6rem;
    }


    #ajustarcurriculo {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1
    }

    #footer {
        order: 0;
        margin-top: 3%;
    }

    .curriculo {
        margin-top: 15%;

    }

    .button-container {
        display: none;
    }

    #textohabilidade {
        margin-top: 15%;
        margin-bottom: 7%;

    }

    #partedehabilidades {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }

    #habilidades {
        margin: 0;
        width: 90%;
    }

    #textoprojeto {
        margin-top: 7%;
        margin-bottom: 7%;
    }

    #projetos {
        display: none;
        flex-direction: column;
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .glide {
        display: block;
    }

    .glide__slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glide__arrow:hover {
        background: none;
    }

    .fatec-footer {
        padding: 10px 10px;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #contatotexto {
        margin-top: 7%;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;

    }


    #copyright {
        order: 2;
    }

    #copyright2 {
        display: none;

    }

    #linhafooter {
        display: none;
    }

    .glide__arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    #left {
        left: 12px;
    }

    #rigth {
        right: 12px;
    }


}

@media (min-width: 769px) and (max-width: 1023px) {

    #projetos {
        gap: 20px;
    }

    .container {
        display: flex;
        justify-content: center;
        width: calc(33% - 20px);
    }

    .caption-title {
        font-size: 1rem;
        font-weight: bold;
        color: #000000;
    }

    .modal-texto p {
        margin-bottom: 1%;
        text-align: justify;
        font-size: 1.2rem;
        color: #000000;
    }

    .modal-texto h2 {
        margin-top: 2%;
    }

    #temapaginainical {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        left: 30px;
        cursor: pointer;
    }

    #modo2 {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    #mododark2 {
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: opacity 0.5s ease, scale 0.5s ease;
    }

    .burger {
        display: block;
        position: absolute;
        right: 30px;
        margin-right: 0;
    }

    .li {
        font-size: 2rem;
    }

    #menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: rgb(231, 231, 231);
        z-index: 1000;
        gap: 30px;
        padding: 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    #burger-toggle:checked~#menu {
        opacity: 1;
        pointer-events: auto;
    }

    .mododarkpaginainicial {
        position: fixed;
        top: 15px;
        left: 3px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    .mododarkdentrodohamburguer {
        display: none;
    }

    /* Coloca a img do modo dark para cima */
    #menu li#tema {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    /* Coloca a img do modo dark para cima */

    #mododark,
    #modo {
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    h1 {
        margin: 0;
    }

    #h1 {
        margin-top: 2%;
    }

    .circulo {
        width: 3.7rem;
        height: 3.7rem;
        border: 2px solid black;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: border-color 1s ease, color 1s ease;
    }

    .redesocial {
        width: 1.7rem;
        height: 1.7rem;
    }

    #nav {
        height: 0px;
    }

    #testando {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
    }

    .info {
        display: flex;
        margin: 0px;
    }


    .buttons {
        display: none;
    }

    #imagem {
        width: 60%;
    }


    .content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .content,
    .main-container {
        margin-top: 0;
    }

    .content h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 2%;
        font-size: 2rem;
    }

    #texto {
        margin: 0;
        padding: 2%;
        text-align: center;
        font-size: 1.7rem;
    }


    #ajustarcurriculo {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
    }

    #footer {
        order: 0;
        margin-top: 4%;
    }

    .curriculo {
        margin-top: 20%;

    }

    .button-container {
        display: none;
    }

    #textohabilidade {
        margin-top: 10%;
        margin-bottom: 7%;

    }

    #partedehabilidades {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }

    #habilidades {
        margin: 0;
        width: 100%;
    }

    #textoprojeto {
        margin-top: 10%;
        margin-bottom: 7%;
    }

    .cards {
        width: 100%;
    }


    .fatec-footer {
        padding: 10px 10px;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #contatotexto {
        margin-top: 7%;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;

    }

}

#copyright {
    order: 2;
}

#copyright2 {
    display: none;

}

#linhafooter {
    display: none;
}

.glide__arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

#left {
    left: 15px;
}

#rigth {
    right: 15px;
}


@media (min-width: 1024px) and (max-width: 1279px) {

    #nav {
        background-color: rgb(231, 231, 231);

    }

    .mododarkpaginainicial {
        display: none;
    }

    ul {
        background-color: rgb(231, 231, 231);
        transition: background-color 0.5s ease, color 0.5s ease;
    }

    .content,
    .main-container {
        margin-top: 5%;
    }

    .info {
        margin-left: 1%;
        margin-top: 10%;
    }

    #imagem {
        width: 75%;
        height: 95%;
        margin-left: 1%;
    }

    #testando {
        margin-top: 10%;
        flex-wrap: nowrap;
        justify-content: start;
        align-items: start;
    }

    .line {
        width: 150px;
    }

    .line2 {
        width: 50px;
    }

    #texto {
        margin-left: 10px;
    }

    #footer {
        margin-top: 15%;
    }


    .button-container2 {
        margin-right: 10px;
    }

    .buttons {
        margin-top: 15%;
    }

    #partedehabilidades {
        height: 60vh;
    }

    #habilidades {
        width: 100%;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #contatotexto {
        margin-top: 2%;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 60%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;

    }

    #copyright {
        order: 2;
    }

    #copyright2 {
        display: none;

    }

    #linhafooter {
        display: none;
    }

    .modal-texto p {
        margin-bottom: 1%;
        text-align: justify;
        font-size: 1.3rem;
        color: #000000;
    }

    .modal-texto h2 {
        margin-top: 2%;
    }
}

@media (min-width: 1280px) and (max-width: 1919px) {

    .mododarkpaginainicial {
        display: none;
    }

    #nav {
        background-color: rgb(231, 231, 231);

    }

    ul {
        background-color: rgb(231, 231, 231);
        transition: background-color 0.5s ease, color 0.5s ease;
    }

    .content,
    .main-container {
        margin-top: 5%;
    }

    .info {
        margin-left: 1%;
        margin-top: 10%;
    }

    #imagem {
        margin-top: 1%;
        width: 68%;
        height: 95%;
        margin-left: 1%;
    }


    #testando {
        flex-wrap: nowrap;
        justify-content: start;
        align-items: start;
    }

    .button-container {
        margin-left: 20%;
    }

    .line {
        width: 20rem;
    }

    .line2 {
        width: 50px;
    }

    #texto {
        margin-left: 10px;
    }

    #footer {
        margin-top: 15%;
    }


    .button-container2 {
        margin-right: 10px;
    }

    .buttons {
        margin-top: 20%;
    }

    .buttons2 {
        padding: 10px 10px;
        border-radius: 20px;
        font-size: 12px;
    }

    #partedehabilidades {
        height: 60vh;
    }

    #habilidades {
        width: 100%;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #contatotexto {
        margin-top: 2%;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 60%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;

    }

    #copyright {
        order: 2;
    }

    #copyright2 {
        display: none;

    }

    #linhafooter {
        display: none;
    }

    .modal-texto p {
        margin-bottom: 1%;
        text-align: justify;
        font-size: 1.3rem;
        color: #000000;
    }

    .modal-texto h2 {
        margin-top: 2%;
    }

}


@media (min-width: 1920px) {

    #nav {
        background-color: rgb(231, 231, 231);

    }

    .mododarkpaginainicial {
        display: none;
    }

    ul {
        background-color: rgb(231, 231, 231);
        transition: background-color 0.5s ease, color 0.5s ease;
    }


    .li {
        font-size: 1.5rem;
    }

    .content,
    .main-container {
        margin-top: 1%;
    }

    .button-container {
        margin-left: 27%;
    }

    .line {
        width: 23rem;
    }

    .info {
        margin-left: 1%;
    }

    #h1 {
        font-size: 2rem;
    }

    #texto {
        font-size: 1.8rem;
    }

    #imagem {
        width: 68%;
        height: 97%;
        margin-left: 1%;

    }

    #testando {
        margin-top: 8%;
        flex-wrap: nowrap;
        justify-content: start;
        align-items: start;
        margin-left: 1%;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 25%;
    }

    .button {
        font-size: 1rem;
        padding: 15px 15px;
    }

    .button2 {
        padding: 15px 15px;
        border-radius: 20px;
        font-size: 1rem;
    }


    #contato {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #partedehabilidades {
        height: 60vh;
    }

    #contatotexto {
        margin-top: 2%;
    }

    #footer {
        top: 10%;
        position: relative;
    }

    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .footer-logo {
        order: 1;
        margin-top: 5%;
        display: grid;
        grid-template-columns: 2fr 2fr;

    }

    #sociais2 {
        margin-left: 10%;
        margin-right: 10%;
        width: 60%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }



    #copyright {
        order: 2;
    }

    #copyright2 {
        display: none;

    }

    #linhafooter {
        display: none;
    }

        .modal-texto p {
    margin-bottom: 1%;
    text-align: justify;
    font-size: 1.5rem;
    color: #000000;
}

.modal-texto h2{
    margin-top: 2%;
}

}