html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    background-image: url("/My-Landing-Page/img/img_teste.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

.secao-principal {
    min-height: 90vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    padding-left: 10%;
    position: relative;
}
.main-content {
    width: auto;
    max-width: 800px;
    margin-right: auto;
    padding-left: 50px;
}
.main-content h2 {
    font-size: 2em;
    font-weight: 200;
    margin: 0;
    padding-left: 8px;
    padding-bottom: 17px;
}
.main-content h1 {
    font-size: 7em;
    font-weight: 700;
    margin: 0;
    line-height: 0.6;
}
.main-content h3 {
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 0.2em;
    padding-left: 8px;
}
.social-icons {
    position: absolute;
    bottom: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 17px;
    font-size: 1.5em;
    z-index: 999;
    right: 70px;
}
.social-icons a {
    color: #fff;
    transition: color 0.2s ease, transform 0.5s ease;
}
.social-icons a:hover {
    color: #818e90;
    transform: translateY(-5px);
}
.secao-conteudo {
    min-height: 100vh;
    padding: 0 50px 50px 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
header {
    position: fixed;
    padding-top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    z-index: 1000;
}
.lista ul {
    list-style: none;
    padding-top: 20px;
    padding-right: 100px;
    display: flex;
    gap: 80px;
    font-weight: 350;
}
.lista a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}
.lista a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: width 0.3s ease;
}
.lista a:hover::after {
    width: 100%;
}
.minha.foto {
    width: 250px;
    border-radius: 200px;
    margin-top: 20px;
}

.sobre-mim-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-top: 10px;
    padding-left: 20px;
}

.sobre-mim-texto {
    flex: 1;
    max-width: 60%;
    text-align: justify;
    padding-top: 35px;
}

.sobre-mim-foto {
    flex: 1;
    max-width: 40%;
    text-align: center;
}

.sobre-mim-foto img {
    max-width: 100%;
    height: 350px;
    border-radius: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .sobre-mim-conteudo {
        flex-direction: column;
        align-items: center;
    }

    .sobre-mim-texto, .sobre-mim-foto {
        max-width: 100%;
    }
}

.trabalhos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 100px;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
}

.card-trabalho {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-trabalho:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.card-image {
    background-color: rgba(255, 255, 255, 0.15);
    height: 150px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-style: italic;
    font-size: 0.9em;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 8px;
}

.card-trabalho h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.card-trabalho p {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-tecnologias {
    margin: 10px 0 20px 0;
}

.card-tecnologias span {
    display: inline-block;
    background-color: #818e90;
    color: #000;
    font-size: 0.75em;
    padding: 4px 8px;
    border-radius: 5px;
    margin: 3px;
    font-weight: 500;
}

.btn-projeto {
    display: inline-block;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-projeto:hover {
    background-color: #818e90;
}

@media (max-width: 768px) {
    .card-trabalho {
        width: 100%;
        max-width: 400px;
    }
}

.secao-conteudo h2 {
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    display: none;
}

.contato-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2em;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contato-item i {
    font-size: 1.5em;
    color: #818e90;
    min-width: 30px;
    text-align: center;
}

.contato-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contato-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contato-item a:hover {
    color: #818e90;
}

.btn-cv{
display:inline-block;
margin-top:25px;
padding:12px 30px;
border:2px solid white;
color:white;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:0.3s;
}

.btn-cv:hover{
background:white;
color:black;
}

.skills-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1000px;
margin-top:60px;
}

.skill{
background-color:rgba(255,255,255,0.1);
padding:25px;
border-radius:10px;
transition:0.3s;
}

.skill:hover{
transform:translateY(-5px);
background-color:rgba(255,255,255,0.2);
}

.skills-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.skill {
    text-align: center;
}

.skill-icons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-icons i {
    font-size: 45px;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.skill-icons i:hover {
    transform: scale(1.2);
    filter: brightness(1.3);
}

