.exp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 2.2rem;
    align-items: stretch;
}
.exp-item {
    min-height: 100%;
}
.exp-item {
    background: #232526;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    padding: 2.2rem 2rem 1.7rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: box-shadow 0.2s, transform 0.2s, opacity 0.7s cubic-bezier(.4,1.4,.6,1), transform 0.7s cubic-bezier(.4,1.4,.6,1);
    border: 2px solid transparent;
}
.exp-item.exp-current {
    background: linear-gradient(120deg, #005bea 0%, #3ec6e0 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(62,198,224,0.18);
    border: 2px solid #3ec6e0;
}
.exp-item.exp-current h2,
.exp-item.exp-current a,
.exp-item.exp-current span,
.exp-item.exp-current .exp-tasks {
    color: #fff !important;
}
.exp-item.exp-current .exp-logo {
    background: #fff;
    border: 2px solid #3ec6e0;
}
@media (max-width: 900px) {
    .exp-list {
        grid-template-columns: 1fr;
    }
}
.exp-item.in-view {
    opacity: 1;
    transform: none;
    transition-delay: var(--delay, 0s);
}
.exp-item:hover {
    box-shadow: 0 8px 32px rgba(62,198,224,0.18);
    transform: translateY(-4px) scale(1.02);
}
.exp-header-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.7rem;
}
.exp-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(62,198,224,0.10);
    padding: 6px;
}
.exp-header-row h2 {
    color: #3ec6e0;
    margin: 0 0 0.2em 0;
    font-size: 1.18rem;
    font-weight: 700;
}
.exp-header-row span, .exp-header-row a {
    font-size: 0.98rem;
    color: #b0b0b0;
    text-decoration: none;
}
.exp-header-row a:hover {
    text-decoration: underline;
    color: #3ec6e0;
}
.exp-tasks {
    margin: 0.7em 0 0 0;
    padding-left: 1.2em;
    color: #e0e0e0;
    font-size: 1.01rem;
    line-height: 1.7;
}
@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 700px) {
    .exp-item {
        padding: 1.1rem 0.5rem 1rem 0.5rem;
    }
    .exp-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .exp-logo {
        width: 40px;
        height: 40px;
        padding: 3px;
    }
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a1b;
    color: #e0e0e0;
    margin: 0;
    min-height: 100vh;
}
.exp-header {
    background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.exp-header nav {
    margin-top: 1rem;
}
.exp-header nav a {
    color: #e0f7fa;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.exp-header nav a:hover {
    color: #fff;
    text-decoration: underline;
}
.exp-main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.exp-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.exp-item {
    background: #232526;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 2rem;
}
.exp-item h2 {
    color: #3ec6e0;
    margin-bottom: 0.5rem;
}
.exp-item span {
    font-size: 0.95rem;
    color: #b0b0b0;
}
.exp-footer {
    background: #232526;
    color: #b0b0b0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}
@media (max-width: 600px) {
    .exp-main {
        padding: 1rem 0.5rem;
    }
    .exp-header nav a {
        margin: 0 0.5rem;
    }
    .exp-item {
        padding: 1rem;
    }
}
/* 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;
}