
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

h2
{
    margin-bottom: 10px;
}
/* Nuevo estilo para el contenedor de la foto */
.profile-photo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo para el abstract */
.abstract {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    text-align: center;
    font-size: 1.1em;
    color: #444;
    line-height: 1.8;
}

.name {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* Resto de los estilos originales... */
.social-links {
    margin: 20px 0;
}

.social-links a {
    text-decoration: none;
    font-weight: 400;
    color: #0e48c4;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.social-links a:hover {
    text-decoration: underline;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    background-color: white;
    padding: 20px;
}

.tab-button {
    padding: 10px 20px;
    font-size: 1.1em;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab-button:hover {
    color: #1a1a1a;
}

.tab-button.active {
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: white;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

.experience-item, .publication-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.education-item, .publication-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.deucation-item:last-child, .publication-item:last-child {
    border-bottom: none;
}

.date {
    color: #666;
    font-style: italic;
    margin-bottom: 5px;
}

.title {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 10px;
}

.link {
    color: #0066cc;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .name {
        font-size: 2em;
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .tab-button {
        font-size: 1em;
        padding: 8px 16px;
    }
}
