/* Tipografía y fondo */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f4f6fa;
  color: #222;
  margin: 0;
  min-height: 100vh;
}

/* Contenedor principal */
.cv-container {
  max-width: 850px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 40px 30px;
}

@media (max-width: 600px) {
  .cv-container {
    padding: 20px 12px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Header */
.cv-header {
  text-align: center;
  margin-bottom: 36px;
}
.cv-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 12px 0;
}
.cv-header .subtitle {
  color: #3b82f6;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.cv-header .info {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cv-header .links a {
  color: #2563eb;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}
.cv-header .links a:hover {
  text-decoration: underline;
}

/* Foto de perfil */
.profile-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #3b82f6;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.profile-image:hover {
  transform: scale(1.05);
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Secciones */
.cv-section {
  margin-bottom: 32px;
}
.cv-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 18px;
}
.cv-section ul, .cv-section p, .cv-section div {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cv-section ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
.cv-section ul li:before {
  content: '•';
  color: #3b82f6;
  position: absolute;
  left: 0;
}

/* Timeline */
.timeline {
  float: right;
  color: #64748b;
  font-weight: 400;
}

/* Habilidades */
.skills li {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 6px 6px 6px 0;
  font-size: 0.95rem;
}

/* Proyectos */
.cv-proyectos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cv-proyecto-card {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 18px 16px;
  flex: 1 1 300px;
  min-width: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cv-proyecto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Footer */
.cv-footer {
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 50px;
  padding-bottom: 16px;
}
