* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #1d1f21;
    color: #fff;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: #e0e0e0;
}
h2{text-align:center}

a {
    color: #fff;
    text-decoration: none;
}

button, .button {
    background-color:var(--cor03);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Seção de Apresentação */
.intro{height:100vh;display:flex;justify-content:center;align-items:center;text-align:center;
    background:url('../base/img/fundo.jpg') no-repeat center center/cover fixed;margin-top:-5px}.intro::before{
    content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:#000b;
    transition:opacity 2s ease-in-out;z-index:1;opacity:1}.intro.fade-in::before{opacity:0.7}
.intro-content{position:relative;z-index:2;height:0px;overflow:hidden;animation:byin 1s forwards}
@keyframes byin {0%{border-bottom:10px solid #fff;height:0px;width:0%}
    50%{height:0px;width:100%;border-bottom:10px solid #fff}
    100%{border-bottom:0 solid #fff0;width:100%;height:300px}
}
.intro h1 {
    font-size: 50px;
    color: #fff;
}
.intro p {
    font-size: 20px;
    margin: 20px 0;
}

.skills {margin-top:-56px;
    padding:100px 0;
    background-color: #282c34;
}

.skill-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.skill-item {
    width:30%;
    margin-bottom:20px;
    background-color:#212630;
    padding:10px;
    border-radius:20px;
    border:1px solid #fff1;
    box-shadow: 0 4px 15px #0000001a;
}

.skill-item p{color:#fff9}

.progress-bar {
    width: 100%;
    border:1px solid #fff1;
    background-color: #282c34;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar div {
    height:20px;text-align:center;color:#fff9;
    background:linear-gradient(#08f, #228);
    border-radius:25px;
}

.portfolio {
    padding: 50px 0;
}

.portfolio .grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.portfolio-item {
    width: 45%;
    background-color: #333;
    padding: 20px;
    border-radius:20px;
    text-align: center;
    margin-bottom: 20px;
}

.portfolio-item img {
    width:100%;
    height:200px;
    border-radius:10px;
    margin-bottom:10px;
    object-fit:cover;
}
.portfolio .containerr{text-align:center;width:100%}
.portfolio .containerr a {
    display: inline-block;
    background: linear-gradient(#333, #252525);
    padding: 20px;border: #8696a0 solid 2px;
    border-radius: 10px;
    align-items: center;
    color: #8696a0;
    font-weight: bold;
}
.portfolio .containerr a img {
    width:20px;
    margin-bottom:-5px;
}

/* Seção de Estatísticas */
.stats {
    padding: 50px 0;
    background-color: #333;
}

.stat-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    width: 45%;
    background:linear-gradient(#08f, #228);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 30px;
}

.stat-item p {
    margin-top: 10px;
}

/* Seção de Curiosidades com Ícones */
.fun-facts {
    padding: 50px 0;
}

.facts-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fact-item {
    width: 30%;
    background-color: #282c34;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.fact-item img {
    max-width: 50px;
    margin-bottom: 10px;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .skills {margin-top:-64px
    }
    .skill-item, .portfolio-item, .stat-item, .fact-item {
        width:100%
    }
    .intro h1 {
        font-size:40px
    }
    .intro p {
        font-size:18px
    }
}
