* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #171717;
    background: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 120px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e5e5e5;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 32px;
}

.name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.role {
    font-size: 16px;
    color: #737373;
    font-weight: 400;
    margin-bottom: 12px;
}

.location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #525252;
    margin-bottom: 32px;
    margin-top: 8px;
    padding: 8px 16px;
    background: #FFF5E5;
    border-radius: 20px;
    font-weight: 400;
}

.location svg {
    color: #737373;
    flex-shrink: 0;
}

.bio {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    color: #525252;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-button-whatsapp {
    background-color: #B8F5C3;
    color: #0F5132;
}

.contact-button-whatsapp:hover {
    background-color: #A0E8B0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 245, 195, 0.4);
}

.contact-button-email {
    background-color: #B8D5F5;
    color: #0D47A1;
}

.contact-button-email:hover {
    background-color: #A0C8F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 213, 245, 0.4);
}

/* Experience Section */
.section {
    margin-bottom: 120px;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #171717;
    margin-bottom: 48px;
}

.experience-item {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #f5f5f5;
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.company {
    font-size: 18px;
    font-weight: 400;
    color: #171717;
}

.company a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.company a:hover {
    opacity: 0.7;
}

.period {
    font-size: 13px;
    color: #a3a3a3;
    font-weight: 400;
}

.position {
    font-size: 14px;
    color: #525252;
    margin-bottom: 12px;
}

.description {
    font-size: 14px;
    color: #737373;
    line-height: 1.8;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 48px;
}

.project-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s ease;
}

.project-card:hover {
    opacity: 0.7;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.project-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #171717;
}

.project-description {
    font-size: 13px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 12px;
}

.project-tech {
    font-size: 12px;
    color: #a3a3a3;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 80px;
    border-top: 1px solid #e5e5e5;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 14px;
    color: #171717;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #525252;
}

.copyright {
    font-size: 13px;
    color: #a3a3a3;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 48px 20px;
    }

    .header {
        margin-bottom: 80px;
        padding-bottom: 60px;
    }

    .name {
        font-size: 28px;
    }

    .section {
        margin-bottom: 80px;
    }

    .experience-header {
        flex-direction: column;
        gap: 4px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .contact-links {
        flex-direction: column;
        gap: 16px;
    }

    .contact-buttons {
        gap: 12px;
    }

    .contact-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}
