/* Animación de hover para tarjetas de educación */
.edu-item {
    transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s;
    cursor: pointer;
}
.edu-item.edu-hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    z-index: 2;
}
.edu-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #232526;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-bottom: 0;
    position: relative;
}
.edu-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(62,198,224,0.10);
    margin-right: 0.5rem;
    overflow: hidden;
}
.edu-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.edu-content {
    flex: 1;
}
.edu-item h2 {
    color: #3ec6e0;
    margin-bottom: 0.3rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.edu-details {
    margin-top: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.98rem;
    color: #b0b0b0;
}
.edu-cedula {
    background: #e3f2fd;
    color: #113366;
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 0.97rem;
    margin-left: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.edu-languages .edu-content {
    width: 100%;
}
.lang-list {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.7rem;
    flex-wrap: wrap;
}
.lang-card {
    background: #181a1b;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(62,198,224,0.10);
    padding: 1rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
    max-width: 180px;
}
.lang-title {
    font-weight: 600;
    color: #3ec6e0;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.08rem;
}
.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    margin-right: 0.3em;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.lang-level {
    color: #e0e0e0;
    font-size: 1.01rem;
    margin-top: 0.2em;
}
@media (max-width: 700px) {
    .edu-item {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .edu-icon {
        margin-bottom: 0.7rem;
        margin-right: 0;
    }
    .lang-list {
        flex-direction: column;
        gap: 0.7rem;
    }
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a1b;
    color: #e0e0e0;
    margin: 0;
    min-height: 100vh;
}
.edu-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);
}
.edu-header nav {
    margin-top: 1rem;
}
.edu-header nav a {
    color: #e0f7fa;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.edu-header nav a:hover {
    color: #fff;
    text-decoration: underline;
}
.edu-main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.edu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.edu-item {
    background: #232526;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 2rem;
}
.edu-item h2 {
    color: #005bea;
    margin-bottom: 0.5rem;
}
.edu-item span {
    font-size: 0.95rem;
    color: #b0b0b0;
}
.edu-footer {
    background: #232526;
    color: #b0b0b0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}
@media (max-width: 600px) {
    .edu-main {
        padding: 1rem 0.5rem;
    }
    .edu-header nav a {
        margin: 0 0.5rem;
    }
    .edu-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;
}