* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f8f9f4; /* Beige muy claro */
    color: #333;
    line-height: 1.6;
    padding: 15px;
}

/* --- Encabezado --- */
header {
    text-align: center;
    margin-bottom: 25px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6aa273; /* Verde suave */
    margin-bottom: 10px;
}

h1 {
    font-size: 1.6rem;
    color: #2e3d2f; /* Verde oscuro */
}

h2 {
    font-size: 1rem;
    color: #6aa273; /* Verde suave */
    margin-top: 5px;
}

/* --- Secciones --- */
section {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

h3 {
    margin-bottom: 8px;
    color: #2e3d2f;
    border-bottom: 2px solid #6aa273;
    padding-bottom: 4px;
    font-size: 1.1rem;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* --- Experiencia --- */
.job h4 {
    font-size: 1rem;
    color: #6aa273;
}

.job span {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 4px;
}

.job p {
    font-size: 0.9rem;
}

/* --- Botones --- */
.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #6aa273; /* Verde suave */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4f8059; /* Verde más oscuro */
}

/* --- Responsive --- */
@media (min-width: 768px) {
    body {
        max-width: 800px;
        margin: 0 auto;
    }

    header {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    header .avatar {
        margin-bottom: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}
