body {
    font-family: "Be Vietnam Pro", sans-serif;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 40px;
    box-sizing: border-box;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.nav-left {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-left h1 {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0;
    color: #333;
    transition: opacity 0.3s ease;
}

.logo-link:hover h1 {
    opacity: 0.7;
}

.nav-link {
    font-size: 0.9em;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 10px;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e2476f;
}

.nav-link.active {
    color: #e2476f;
    font-weight: 700;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contenedor-principal {
    display: flex;
    min-height: calc(100vh - 90px);
    padding: 0;
    margin: 0;
    padding-top: 80px;
    box-sizing: border-box;
}

.columna-izquierda {
    width: 45%;
    padding: 0 40px 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-name {
    font-size: 5.5em;
    line-height: 0.9em;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #333;
    text-transform: uppercase;
}

.hero-intro {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.hero-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    max-width: 350px;
}

.hero-description1 {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    max-width: 450px;
}

.hero-description2 {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    max-width: 550px;
}

.columna-derecha {
    width: 55%;
    padding: 60px 40px 0 40px;
    position: relative;
    min-height: 600px;
    box-sizing: border-box;
    overflow: hidden;
}

.trabajo {
    width: 320px;
    height: auto;
    position: absolute;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    object-fit: cover;
    transition:
        transform 0.3s ease,
        z-index 0.3s ease;
}

.trabajo.azimut {
    top: 20px;
    left: 130px;
    transform: rotate(4deg);
    z-index: 5;
    width: 260px;
}
.trabajo.bioco {
    top: 20px;
    left: 380px;
    transform: rotate(-8deg);
    z-index: 4;
    width: 230px;
}
.trabajo.chileenpalito {
    top: 230px;
    left: 60px;
    transform: rotate(-3deg);
    z-index: 6;
    width: 310px;
}
.trabajo.kavod {
    top: 240px;
    left: 360px;
    transform: rotate(6deg);
    z-index: 7;
    width: 280px;
}

.trabajo:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.2);
}

.foto-about {
    max-width: 500px;
    width: 55%;
    height: auto;
    object-fit: contain;
    margin-left: 60px;
    padding-bottom: 60px;
}

.columna-derecha-texto {
    width: 55%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-height: 1200px;
}

.email-link {
    color: #e2476f;
    text-decoration: none;
    font-weight: 600;
}

.link-social {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.link-social {
    display: block;
}

.link-social:hover {
    color: #e2476f;
}

.copyright-text {
    margin-top: 40px;
    font-size: 0.8em;
    color: #333;
}

.contenedor-principal.trabajos-header {
    display: block;
    min-height: auto;
    padding: 0;
    margin: 0;
    padding-top: 100px;
}

.pag-trabajo {
    text-align: center;
}

.pag-trabajo h1 {
    margin: 0;
    font-weight: 900;
    font-size: clamp(4rem, 13vw, 20rem);
    line-height: 0.8;
    text-align: center;
    color: #333;
    padding: 0 10px;
}

.trabajos-lista {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 5rem 1rem 4rem;
    flex-wrap: wrap;
}

.trabajos-lista a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    transition:
        opacity 0.2s,
        transform 0.15s;
}

.trabajos-lista a:hover {
    opacity: 0.6;
    transform: translateY(-3px);
    color: #e2476f;
}

.columna-derecha1 {
    width: 55%;
    padding: 30px 40px 0 40px;
    position: relative;
    min-height: 500px;
    box-sizing: border-box;
}

.carrusel-contenedor {
    margin-top: 100px;
    width: 95%;
    height: 70%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carrusel-galeria {
    display: flex;
    height: 100%;
}

.carrusel-imagen {
    flex-shrink: 0;
    width: auto;
    height: auto;
    object-fit: contain;
    scroll-snap-align: start;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.contenedor-principal1 {
    display: flex;
    min-height: calc(100vh - 90px);
    padding: 0;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.hero-name1 {
    font-size: 4em;
    line-height: 0.9em;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #333;
    text-transform: uppercase;
}
