/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 400;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffdd57;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #6a11cb;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2rem;
}

h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Proyectos */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

/* Habilidades */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.skill {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Botón de descarga */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 40px;
}

.job-pill {
    color: #6a11cb;
    font-weight: 700;
}

/* Estilos para la sección de experiencia */
/* .experience {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
} */

.experience h2 {
    color: #6a11cb;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.job {
    margin-bottom: 30px;
}

.job h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.job .date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.job .company {
    color: #555;
    font-size: 1rem;
    margin-bottom: 10px;
}

.job .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.technologies span {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #6a11cb;
}