/* --- TEMA OSCURO (POR DEFECTO) --- */
:root {
    --bg-color: #111827;         /* Fondo principal */
    --card-color: #1F2937;       /* Fondo de las tarjetas */
    --text-primary: #F9FAFB;     /* Texto principal y títulos */
    --text-secondary: #D1D5DB;   /* Texto secundario y párrafos */
    --accent-color: #38BDF8;     /* Color de acento (azul brillante) */
    --border-color: #374151;     /* Color para bordes y líneas */
}

/* --- TEMA CLARO --- */
body.light-mode {
    --bg-color: #F9FAFB;
    --card-color: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #374151;
    --accent-color: #0284C7; /* Azul más oscuro para mejor contraste en claro */
    --border-color: #E5E7EB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    margin: 0;
    padding: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- BOTÓN DE CAMBIO DE TEMA (MODIFICADO) --- */
.theme-toggle-btn {
    position: fixed;
    bottom: 20px; /* <-- CAMBIO: Posición inferior */
    right: 20px;
    
    /* Estilos por defecto (para tema oscuro de la página) */
    background-color: #F9FAFB; /* <-- CAMBIO: Fondo del botón blanco */
    color: #111827;            /* <-- CAMBIO: Icono del botón oscuro */
    border: 1px solid #E5E7EB;
    
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Por defecto (tema oscuro), el botón muestra el SOL */
.theme-toggle-btn .fa-sun-o { display: block; }
.theme-toggle-btn .fa-moon-o { display: none; }

/* Cuando la página está en tema claro... */
body.light-mode .theme-toggle-btn {
    background-color: #1F2937; /* <-- CAMBIO: Fondo del botón oscuro */
    color: #F9FAFB;            /* <-- CAMBIO: Icono del botón blanco */
    border: 1px solid #374151;
}

/* ...el botón muestra la LUNA */
body.light-mode .theme-toggle-btn .fa-sun-o { display: none; }
body.light-mode .theme-toggle-btn .fa-moon-o { display: block; }


/* --- CONTENEDOR PRINCIPAL Y LAYOUT --- */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.left-column {
    flex: 1;
    min-width: 300px;
}

.right-column {
    flex: 2;
    min-width: 300px;
}

/* --- TARJETAS (CARD) --- */
.card {
    background-color: var(--card-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, border-color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
    transition: border-color 0.3s;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* --- COLUMNA IZQUIERDA: PERFIL Y HABILIDADES --- */
.profile-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin: 0 auto 20px auto;
    display: block;
}

.profile-card h1 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.contact-info .fa {
    color: var(--accent-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.4em;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.section-title .fa {
    margin-right: 15px;
    color: var(--accent-color);
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: var(--border-color);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

/* --- COLUMNA DERECHA: TIMELINE --- */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid var(--bg-color);
}

.timeline-item h5 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
}

.timeline-date {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.timeline-date .fa {
    margin-right: 8px;
}

.timeline-date .current-tag {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-left: 10px;
    font-weight: bold;
}

.timeline-item p {
    margin: 0;
    line-height: 1.6;
}

.timeline-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
}

.footer .social-icons .fa {
    font-size: 1.8em;
    margin: 0 15px;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons .fa:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* --- Estilos de Impresión --- */
@media print {

  /* --- 1. Definir Variables del Tema Claro --- */
  /* Esta es la clave: forzamos los colores de tu tema claro */
  :root {
    --bg-color: #FFFFFF !important;
    --card-color: #FFFFFF !important;
    --text-primary: #111827 !important;     /* Texto principal (casi negro) */
    --text-secondary: #374151 !important;   /* Texto secundario (gris oscuro) */
    --accent-color: #0284C7 !important;     /* <-- ¡EL AZUL! */
    --border-color: #E5E7EB !important;     /* Borde (gris claro) */
  }

  /* --- 2. Aplicar Colores Base --- */
  /* Ya no forzamos todo a #000 */
  body {
    background: var(--bg-color) !important;
    color: var(--text-secondary) !important; /* Color de párrafo por defecto */
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 9pt !important; /* Mantenemos la reducción de tamaño */
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
  }
  
  /* --- 3. Ocultar Elementos No Deseados --- */
  #theme-toggle, .footer {
    display: none !important;
  }

  /* --- 4. MANTENER Layout de Dos Columnas (Idéntico al anterior) --- */
  .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 15px !important;
  }
  .left-column, .right-column {
    flex: none !important;
    width: auto !important; /* Dejamos que el flex-basis haga su trabajo */
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .left-column { flex-basis: 35% !important; }
  .right-column { flex-basis: 60% !important; }


  /* --- 5. Optimizar Espacio Vertical (Idéntico al anterior) --- */
  @page {
    margin: 1cm;
  }

  .card {
    background: var(--card-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    padding: 12px !important;
    margin-bottom: 12px !important;
    page-break-inside: avoid;
  }

  /* Foto de perfil (ya usa --accent-color, así que cogerá el azul) */
  .profile-card img {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 10px auto !important;
    border-width: 3px !important;
  }

  /* Reducción de fuentes y márgenes */
  h1 { font-size: 16pt !important; }
  h2 { font-size: 13pt !important; }
  h5 { font-size: 11pt !important; }
  h1, h2, h3, h4, h5, p, ul, .contact-info p, .timeline-date {
    margin: 3px 0 !important;
    padding: 0 !important;
  }

  /* Timeline (los puntos y la línea cogerán --accent-color y --border-color) */
  .timeline { padding-left: 20px !important; }
  .timeline-item { margin-bottom: 8px !important; }
  .timeline-item::before {
    left: -28px !important;
    width: 10px !important;
    height: 10px !important;
  }
  .timeline::before {
    left: 0 !important;
    width: 2px !important;
  }

  /* Tags de Habilidades */
  .skills-container { gap: 5px !important; }
  .skill-tag {
    padding: 4px 8px !important;
    font-size: 8pt !important;
    /* Los tags ya usan las variables, cogerán los colores solos */
  }

  /* --- 6. Restaurar Colores de Acento --- */
  
  /* Títulos de sección (ya usan variables, pero por si acaso) */
  .section-title .fa { color: var(--accent-color) !important; }
  .section-title { border-bottom: 2px solid var(--accent-color) !important; }
  
  /* Iconos de contacto */
  .contact-info .fa { color: var(--accent-color) !important; }

  /* Links */
  a, a:visited {
    color: var(--accent-color) !important;
    text-decoration: none !important;
  }
  /* Hacemos que los links de info de contacto parezcan texto normal */
  .contact-info a {
      color: var(--text-secondary) !important;
  }

  /* Tag "Actualmente" */
  .timeline-date .current-tag {
    background-color: var(--accent-color) !important;
    color: #FFFFFF !important; /* Texto blanco sobre fondo azul */
    border: none !important;
    font-size: 7.5pt !important;
    padding: 2px 4px !important;
  }
}