/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fff5f7, #ffffff);
    color: #333;
}

/* Cabeçalho */
header {
    background-color: #ff85a1;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

header .nav-links a:hover {
    color: #ffccdc;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 100px auto 0;
    gap: 20px;
}

.about-content {
    max-width: 50%;
    animation: fadeIn 1s ease-in-out;
}

.about-title {
    font-size: 2.5em;
    color: #d43857;
}

.about-description {
    font-size: 1.1em;
    margin: 20px 0;
    line-height: 1.6;
}

.cta-button {
    padding: 10px 20px;
    background-color: #ff85a1;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    transform: scale(1.1);
    background-color: #ff5a6c;
}

.about-image img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 1s ease-in-out;
}

/* Skills Section */
.skills {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 2em;
    color: #d43857;
    margin-bottom: 30px;
}

.skills-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.skill {
    text-align: center;
}

.progress-bar {
    background-color: #ffe5ec;
    height: 20px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    background-color: #ff85a1;
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #ff85a1;
    color: #fff;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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