* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F6F9;
}

.header {
    border-bottom: 1px solid #5f5e97;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 80px;
    color: #0C7046;
    font-size: 20px;
}

.logo {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #0C7046;
}

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #0C7046;
    font-weight: 400;
    white-space: nowrap;
}

.nav a:hover {
    opacity: 0.8;
}

/* Main Content */
.main {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 24px;
}

/* sobreMi */
.carrera-mia {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding: 0 80px;
    padding-bottom: 16px;
    color: #444365;
}

.intro-section {
    display: flex;
    padding: 0 80px;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 64px;
    padding-bottom: 48px;
    align-self: stretch;
    color: #444365;
}

.intro-text {
    flex: 1;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.intro-aside {
    width: 285px;
    flex-shrink: 0;
    font-family: Inter;
    font-size: 16px;
    font-style: italic;
    font-weight: 100;
    line-height: normal;
}

/* galeríaImágenes */
.galeria-imagenes {
    display: flex;
    gap: 24px;
    padding: 64px 80px;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    background-color: #444365;
}

.image-box {
    overflow: hidden;
    position: relative;
    ;
}

.image-box img {
    width: 100%;
    height: 413px;
    object-fit: cover;
    display: block;
}

.primera-vertical {
    width: 196px;
    height: 100%;
    flex-shrink: 0;
}

.columna-imagenes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 413px;
    width: 327px;
    flex-shrink: 0;
}

.dentro-columna {
    flex: 1;
    height: 100%;
    width: 327px;
}

.principal {
    flex: 1;
    height: 100%;
}

/* educacionExperiencia */
.contenido {
    display: flex;
    gap: 64px;
    padding: 0 80px;
    padding-top: 48px;
}

.columna-educacion {
    display: flex;
    flex-direction: column;
    width: 356px;
    color: #444365;
}

.columna-experiencia {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 700px;
    color: #444365;
}

.datos-educacion {
    display: flex;
    align-items: baseline;
    align-self: stretch;
    flex-direction: row-reverse;
}

.titulo-seccion {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #444365;
    padding-bottom: 16px;
}

.donde-estudie {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.año-estudios {
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

/* Work Categories */
.contenido-experiencia {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.ambito-pega {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #a1a1aa;
}

.ambito-pega.last {
    border-bottom: none;
}

.titulo-ambito {
    font-size: 16px;
    font-weight: 400;
}

.pega {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pega-header {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    font-size: 16px;
    line-height: normal;
}

.pega-nombre {
    font-weight: 600;
    white-space: nowrap;
}

.año {
    flex: 1;
    font-size: 12px;
    font-weight: 300;
}

.pega-descripcion {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding: 80px;
    background-color: #f5f6f9;
}

.footer-nav {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #444365;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    display: block;
}

.footer-email {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 3px;
}

.footer-email span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #444365;
    white-space: nowrap;
}