/* curriculo.css - Estilos específicos para la página de currículo */

.curriculo {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.curriculo-header {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1e90ff;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: #aaa;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e90ff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #0d7ed6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
}

.contact-item i {
    color: #1e90ff;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1e90ff;
}

.curriculo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.curriculo-section {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 1.5rem;
    color: #1e90ff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.experience-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.exp-company h3 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.company-name {
    color: #aaa;
    font-style: italic;
}

.exp-date {
    background: #1e90ff;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.exp-description {
    color: #ccc;
    padding-left: 1.5rem;
}

.exp-description li {
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.skill-category {
    background: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.skill-category h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #1e90ff;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.certification-item {
    background: #000;
    padding: 1.5rem;
    border-radius: 8px;
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-header h3 {
    color: #fff;
    font-size: 1.2rem;
}

.cert-date {
    color: #1e90ff;
    font-weight: 500;
}

.cert-description {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cert-link {
    color: #1e90ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.cert-link:hover {
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #000;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.project-card p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: #333;
    color: #ccc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .curriculo-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    
    .exp-header {
        flex-direction: column;
    }
    
    .cert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}