/* Botón de descarga de CV */
.cv-download {
  background: #232323;
  color: #fff !important;
  padding: 8px 18px 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  margin-bottom: 10px;
}
.cv-download:hover, .cv-download:focus {
  background: #e63946;
  color: #fff;
  box-shadow: 0 4px 16px #0002;
  outline: none;
}
.cv-download-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
  filter: drop-shadow(0 1px 2px #0002);
  display: inline-block;
  margin: 0;
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a1b;
    color: #e0e0e0;
    line-height: 1.6;
}
header {
    background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
    color: #fff;
    padding: 2rem 0 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
header .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0f7fa;
}
nav {
    margin-top: 1rem;
}
nav a {
    color: #e0f7fa;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #fff;
    text-decoration: underline;
}
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.section {
    margin-bottom: 2.5rem;
    background: #232526;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 2rem;
    color: #e0e0e0;
    transition: box-shadow 0.18s, transform 0.18s;
}
.section h2 {
    color: #3ec6e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.section-hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    z-index: 2;
}
.item {
    background: #181a1b;
    border-radius: 8px;
    padding: 1.2rem 1rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: box-shadow 0.18s, transform 0.18s;
}
.item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}
.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.skills-list li {
    background: #2a2d2e;
    color: #3ec6e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1rem;
}
footer {
    background: #232526;
    color: #b0b0b0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}
.email-link {
  color: #3ec6e0;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}
.email-link:hover {
  color: #fff;
  background: #3ec6e0;
  border-radius: 4px;
  padding: 0 4px;
}
.education-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.education-logo {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.education-title {
  margin-bottom: 2px;
}
.education-university {
  font-size: 1.05rem;
}
.education-cedula {
  color: #222;
  background: #e0e0e0;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.98rem;
  display: inline-block;
  margin-top: 4px;
}
.experience-item {
  margin-bottom: 1.5rem;
}
.experience-title {
  margin-bottom: 0.3em;
}
.experience-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.experience-logo {
  height: 44px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.experience-company {
  font-size: 1.08rem;
}
.experience-list {
  margin-left: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.index-skills-list li {
  background: #232526;
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.1rem;
  margin: 0.2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, color 0.18s;
}
.index-skills-list li:hover {
  background: #3ec6e0;
  color: #181a1b;
  transform: scale(1.07);
}

.section {
  /* ...otros estilos... */
  opacity: 0;
  transform: translateX(-60px);
  transition: box-shadow 0.18s, transform 0.18s, opacity 0.6s, background 0.18s;
}
.section.section-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s cubic-bezier(.4,1.3,.6,1), transform 0.6s cubic-bezier(.4,1.3,.6,1);
}
@media (max-width: 600px) {
    main, header .container {
        padding: 0 0.5rem;
    }
    .section {
        padding: 1rem;
    }
    nav a {
        margin: 0 0.5rem;
    }
}
