/* Importar fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Montserrat:wght@400;700&display=swap');

/* Colores Base */
:root {
    --primary-text-color: #333;
    --secondary-text-color: #555;
    --light-grey: #f4f4f4;
    --medium-grey: #e0e0e0;
    --dark-grey: #343a40; /* Para el header principal */
    --accent-color: #8c8c8c; /* Color de las líneas y puntos */
    --sidebar-bg: #f9f9f9; /* Color de fondo de la barra lateral */
    --progress-bg: #d0d0d0; /* Color de fondo de la barra de progreso */
    --progress-fill: #8c8c8c; /* Color de relleno de la barra de progreso */
}

/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-grey);
    color: var(--primary-text-color);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1080px; 
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden; 
}

/* Botón para exportar */
#exportar-pdf {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #6a6a6a; /* Color del botón */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}

#exportar-pdf:hover {
    background-color: #505050;
}

/* Encabezado - Imagen 1 */
.header {
    background-color: var(--dark-grey);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.header-logo {
    top: 15px;
    left: 20px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    color: var(--accent-color);
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0 5px;
    font-size: 2.8em; /* Ajustado para mayor impacto */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header .subtitle {
    margin: 0 0 25px;
    font-weight: 400;
    font-size: 1.1em;
    position: relative;
    padding: 0 20px; /* Espacio para las líneas laterales */
}

.header .subtitle::before,
.header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px; /* Longitud de la línea */
    height: 1px;
    background-color: var(--accent-color);
}

.header .subtitle::before {
    left: 0;
    transform: translateY(-50%);
}

.header .subtitle::after {
    right: 0;
    transform: translateY(-50%);
}


.header-contacto {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Espacio entre los datos de contacto */
    font-size: 0.9em;
    color: var(--light-grey);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    position: relative;
}

.contact-item p {
    margin: 0;
}

.contact-item i {
    color: var(--light-grey);
    margin-right: 8px;
    font-size: 1.1em;
}

/* Divisores en el header-contacto */
.contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px; /* Mitad de gap */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%; /* Altura del divisor */
    background-color: rgba(255,255,255,0.2);
}


/* Diseño de dos columnas para el contenido principal */
.content-wrapper {
    display: grid;
    grid-template-columns: 35% 65%; /* Ancho de la barra lateral vs contenido principal */
    gap: 0px; /* No hay gap, la separación es con padding */
    border-top: 1px solid var(--medium-grey); /* Línea divisoria si se desea */
}

.sidebar {
    background-color: var(--sidebar-bg);
    padding: 30px 25px;
    border-right: 1px solid var(--medium-grey); /* Línea divisoria visual */
}

.main-content {
    padding: 30px 40px;
}

/* Foto de Perfil */
.profile-pic-container {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color); /* Borde alrededor de la foto */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Secciones de la barra lateral */
.seccion-sidebar {
    margin-bottom: 30px;
}

.seccion-sidebar h3 {
    text-transform: uppercase;
    font-size: 1.1em;
    color: var(--primary-text-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--medium-grey); /* Línea debajo del título */
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

.seccion-sidebar p {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    margin-bottom: 10px;
}

/* Habilidades y Barras de Progreso */
.skill-item {
    margin-bottom: 15px;
}

.skill-item p {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--primary-text-color);
}

.progress-bar {
    background-color: var(--progress-bg);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    background-color: var(--progress-fill);
    height: 100%;
    border-radius: 4px;
}

/* Secciones del contenido principal */
.seccion {
    margin-bottom: 40px;
}

.seccion h2 {
    text-transform: uppercase;
    font-size: 1.4em;
    color: var(--primary-text-color);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--medium-grey);
    padding-bottom: 10px;
    letter-spacing: 1px;
}

/* Estilo de la línea de tiempo (Experiencia y Educación) */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--medium-grey); /* Línea vertical */
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-dot {
    position: absolute;
    left: -7px; /* Ajuste para que el punto esté en la línea */
    top: 5px;
    width: 14px;
    height: 14px;
    background-color: #fff; /* Color del punto central */
    border: 2px solid var(--accent-color); /* Borde del punto */
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    margin-left: 20px; /* Espacio para la línea y el punto */
}

.timeline-date {
    font-size: 0.85em;
    color: var(--secondary-text-color);
    margin-bottom: 5px;
    display: block;
}

.timeline-item h3 { /* Título del puesto / grado */
    margin: 0 0 5px;
    color: var(--primary-text-color);
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
}

.timeline-item .company { /* Nombre de la empresa / institución */
    margin: 0 0 5px;
    color: var(--secondary-text-color);
    font-size: 1em;
    font-weight: 600;
}

.timeline-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    font-size: 0.9em;
    color: var(--secondary-text-color);
}

.timeline-content ul li {
    margin-bottom: 5px;
}

/* Referencias */
.references-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas para referencias */
    gap: 30px;
    margin-top: 20px;
}

.reference-item {
    background-color: var(--sidebar-bg); /* Un ligero fondo para diferenciarlas */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--medium-grey);
}

.reference-item h3 {
    margin: 0 0 5px;
    color: var(--primary-text-color);
    font-size: 1em;
    text-transform: uppercase;
}

.reference-item p {
    margin: 0 0 5px;
    color: var(--secondary-text-color);
    font-size: 0.9em;
}

.reference-item i {
    color: var(--primary-text-color); /* Íconos dentro de referencias */
    margin-right: 5px;
}

/* Ocultar elementos para la impresión si fuera necesario, aunque html2pdf lo maneja bien */
@media print {
    #exportar-pdf {
        display: none;
    }
    body {
        padding: 0;
        margin: 0;
        background-color: white;
    }
    .container {
        box-shadow: none;
        border-radius: 0;
    }
}

/* ============================================== */
/* == ESTILOS PARA LA PÁGINA DE CERTIFICADOS == */
/* ============================================== */

/* Estilos de la página de certificados (solo se aplican en certificados.html) */
.certificados-page {
    background-color: #f0f0f0;
    padding: 0;
}

.cert-container {
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.cert-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--medium-grey);
    padding-bottom: 20px;
}

.cert-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-text-color);
    margin-bottom: 5px;
}

.back-link {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link i {
    margin-right: 5px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-item {
    border: 1px solid var(--medium-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.cert-item:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.cert-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark-grey);
    padding: 10px 15px 5px;
    margin: 0;
}

.cert-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
    border-top: 1px solid var(--light-grey);
}

.cert-meta {
    font-size: 0.9em;
    color: var(--secondary-text-color);
    padding: 0 15px 10px;
    margin: 0;
}

/* ============================================== */
/* == ESTILOS PARA EL ENLACE RÁPIDO EN INDEX.HTML == */
/* ============================================== */

.enlaces-rapidos-cv {
    margin-top: 15px;
}

.enlace-item-cv {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-text-color);
    background-color: var(--sidebar-bg);
    transition: background-color 0.3s;
}

.enlace-item-cv:hover {
    background-color: var(--medium-grey);
}

.enlace-item-cv i:first-child {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-right: 15px;
}

.enlace-item-cv p {
    flex-grow: 1;
    margin: 0;
}

.enlace-item-cv p strong {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
}

.enlace-item-cv p span {
    font-size: 0.85em;
    color: var(--secondary-text-color);
}

.enlace-item-cv i:last-child {
    font-size: 1.2em;
    color: var(--accent-color);
    margin-left: 15px;
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .cert-container {
        margin: 20px 10px;
        padding: 20px;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .enlace-item-cv {
        flex-direction: column;
        text-align: center;
    }
    .enlace-item-cv i:first-child {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .enlace-item-cv i:last-child {
        margin-top: 10px;
        margin-left: 0;
    }
}