/* Estilo geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}
    
body {
    background-color: black;
}

.interface{
    max-width: 1280px;
    margin: auto
}

.flex {
    display: flex;
}	

.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #80D8FF;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-contato button:hover {
    box-shadow: 0 0 10px #1ba7e4;
    transform: scale(1.05);
}

h2.titulo {
    font-size: 30px;
    color: #80D8FF;
    margin-bottom: 20px;
}
/* Estilo do cabeçalho */

header {
    padding: 40px 4%;
}

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

header .Menu a {
    color: rgb(151, 151, 151);
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

.Menu a:hover {
    color: #80D8FF;
    transform: scale(1.08);
}

header nav.Menu ul {
    list-style: none;
}

header nav.Menu ul li {
    display: inline-block;
    margin-left: 20px;
}

.logo img {
    width: 100px;
    height: auto;
}

.Menu ul li {
    font-size: 30px;
    margin: 0 30px;
}


/* Estilo do topo do site */
section.Topo-do-site {
    padding: 40px 4%;
}

section.Topo-do-site .flex {
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

.Txt-topo-site h1 {
    color: #ffffff;
    justify-content: center ;
    font-size: 35px;
    line-height: 40px;
}

.Txt-topo-site h1 span {
    color: #80D8FF;
}

.Txt-topo-site p {
    color: #ffffff;
    justify-content: center ;
    font-size: 20px;
    margin: 40px 0;
}

.img-topo-site img {
    width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px #80D8FF;
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}


@keyframes flutuar {
    0%{
        top: 0px;
    }
    100%{
        top: 50px;
    }
}

section.Habilidades {
    color: white;
    padding: 40px 4%;
}

section.Habilidades h1 {
    font-size: 50px;
    margin-bottom: 20px;
    margin-left: 25px;
}

section.Habilidades h2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.badgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  
}

.badgets p {
    text-align: center;
}

.Habilidades .interface .flex {
    align-items: top;
    justify-content: space-between;
    gap: 20px;
}

.Habilidades-box {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px #80D8FF;
    transition: 0.2s;
    gap: 20px;
}


.Habilidades-box:hover {
    transform: scale(1.05);
}

.Habilidades-box img {
    border-radius: 20px;
    margin-bottom: 10px;
}




/* Estilo do Sobre */
section.Sobre {
    color: white;
    padding: 40px 4%;
}

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

.txt-sobre h2 {
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 45px;
    
}

.txt-sobre h2 span {
    color: #80D8FF;
    display: block;
    
}

.txt-sobre p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.img-sobre img {
    width: 500px;
    height: auto;
    border-radius: 20px;
   
}
.icones-contato {
    display: flex;
}

.icones-contato button.btn-normal {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background-color: #80D8FF;
    font-size: 40px;
    cursor: pointer;
    transition: 0.2s;
    margin: 0 5px;
}

.icones-contato button:hover {
        box-shadow: 0 0 10px #1ba7e4;
        transform: scale(1.05);
}

.icones-contato button.btn-curriculo i {
    font-size: 40px;
    margin-right: 10px;
}

.icones-contato button.btn-curriculo {
    width: auto;
    height: 70px;
    border-radius: 20px;
    border: none;
    background-color: #80D8FF;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    margin: 0 5px;
    margin-left: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
}

/*Portifólio*/

section.portifolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #80d9ff3d;
}

section.portifolio .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: top;
    gap: 90px;
}

h2.titulo-port {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 25px;
}

.titulo-port span {
    color: #80D8FF;
}

.titulo-port {
    font-size: 50px;
    margin-bottom: 90px;
    color: #ffffff;
    text-align: center;
}

.borda-port {
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 0 40px 10px #80d9ff3d;
}

.img-port{
    width: 100%;
    height: 460px;
    background-size: cover;
    border-radius: 20px;
    background-position: 100% 0%;
    cursor: pointer;
    transition: background-position 10s;
    position: relative;
    aspect-ratio: 3 / 4;
    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    
}

.overlay:hover {
    opacity: 1;
    transition: 1.5s;
}

.img-port:hover {
    background-position: 100% 100%;
}

.tec-utilizadas-port {
    color: white;
    display: flex;
    flex-direction: column;
}

.tec-utilizadas-port .badgets-port {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
}

.tec-utilizadas-port .badgets-port > *:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
}

.tec-utilizadas-port p {
    text-align:justify;
    margin-top: 8px;
    
}

.tec-utilizadas-port p img {
    border-radius: 20px;
    align-self: center;
}

.tec-utilizadas-port .badgets-port p:nth-child(odd) {
    text-align: right;
    margin-right: 10px;
}

.tec-utilizadas-port .badgets-port p:nth-child(even) {
    text-align: left;
    margin-left: 10px;
}

/*Cursos*/
section.cursos {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #80d9ff3d;
}

section.cursos .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: top;
    gap: 90px;
}

h2.titulo-cursos {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 25px;
}

.titulo-cursos span {
    color: #80D8FF;
}

.titulo-cursos {
    font-size: 50px;
    margin-bottom: 90px;
    color: #ffffff;
    text-align: center;
}

h1.sub-titulo-cursos {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 25px;
}

.sub-titulo-cursos {
    font-size: 50px;
    margin-bottom: 90px;
    color: #ffffff;
    text-align: center;
}

.borda-cursos {
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 0 40px 10px #80d9ff3d;
}

.img-cursos{
    width: 100%;
    height: 460px;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    aspect-ratio: 3 / 4;
    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    
}

.overlay:hover {
    opacity: 1;
    transition: 1.5s;
}

.tec-utilizadas-cursos {
    color: white;
    display: flex;
    flex-direction: column;
}

.tec-utilizadas-cursos .badgets-cursos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
}

.tec-utilizadas-cursos .badgets-cursos > *:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
}

.tec-utilizadas-cursos p {
    text-align:justify;
    margin-top: 8px;
    
}

.tec-utilizadas-cursos p img {
    border-radius: 20px;
    align-self: center;
}

.tec-utilizadas-cursos .badgets-cursos p:nth-child(odd) {
    text-align: right;
    margin-right: 10px;
}

.tec-utilizadas-cursos .badgets-cursos p:nth-child(even) {
    text-align: left;
    margin-left: 10px;
}

/*Formulário*/

section.formulario {
    padding: 80px 4%;
}

.formulario .titulo {
    font-size: 50px;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;

}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

form input {
    width: 100%;
    background-color: rgb(44, 44, 44);
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 20px;
}

form textarea {
    width: 100%;
    background-color: rgb(44, 44, 44);
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 20px;
    resize: none;
    height: 200px;
}

form button {
    padding: 10px 40px;
    font-size: 23px;
    font-weight: 1000;
    background-color: #80D8FF;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 40px;
    transition: 0.2s;
    width: 45%;
    height: 60px;	
    align-self: center;
}

form button:hover {
    box-shadow: 0 0 10px #1ba7e4;
    transform: scale(1.05);
}

footer {
    padding: 40px 4%;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 40px 10px #80d9ff3d;
}

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

.line-footer {
    padding: 20px 0;
}

.logo-footer img {
    width: 80px;
    height: auto;
    transition: 0.2s;
    padding: 0;
    margin: 0;
}

.logo-footer img:hover {
    transform: scale(1.05);
}

.line-footer-borda {
    border-top: #80D8FF 3px solid;
}

.txt-footer {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}

.txt-footer p {
    margin-bottom: 10px;
}

footer a {
    color: #ffffff;
}


