.no-scroll {
    overflow: hidden;
}

h2,
h3,
p,
a,
figcaption {
    font-family: Helvetica, Arial, sans-serif;


}

.link-in-bio {

    width: 100%;
    min-height: 900px;
    height: 100dvh;
    background: url(/img/bio/fondo.png);
    background-size: cover;
    /* hace que la imagen cubra toda la ventana */
    background-position: center;
    /* centra la imagen */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;



}

.redes svg {
    width: 48px;
    height: 48px;
    margin-right: 20px;
}

.redes a {
    text-decoration: none;
    color: white;
}

.perfil {
    margin-top: 50px;
    width: 300px;
    height: 300px;
}

.perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.redes {
    width: 400px;
    height: 90px;
    background: #782b57a6;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.firma {
    width: 300px;
}



body {
    /* background: black; */
}

header {
    width: 100%;
    height: 25dvh;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header>a {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 2rem;
    color: black;
    text-decoration: none;

}

header ul li {
    list-style: none;

}

header ul li a {
    text-decoration: none;
    text-transform: uppercase;
}

nav {
    /* margin-left: auto */
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    margin-left: 20px;

}

.ham-menu span,
.ham-menu2 span {
    width: 50px;
    height: 6px;
    /* margin: 10px; */
    position: absolute;
    top: 50%;
    background: black;
    display: block;
    border-radius: 3px;
    transition: .3s ease;
}

.ham-menu,
.ham-menu2 {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    /* padding: margin; */

}




.ham-menu span:nth-child(1),
.ham-menu2 span:nth-child(1) {
    top: 10%;
}

.ham-menu span:nth-child(2),
.ham-menu2 .ham-menu span:nth-child(2) {
    top: 45%;
}

.ham-menu span:nth-child(3),
.ham-menu2 span:nth-child(3) {
    top: 80%;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
    background: black;
}

.ham-menu2 span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
    background: white;
}

.ham-menu.active span:nth-child(2),
.ham-menu2 span:nth-child(2) {
    opacity: 0;
}


.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
    background: black;
}

.ham-menu2 span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
    background: white;
}


.options-menu.active a {
    color: white;
    font-weight: bold;
}

.options-menu {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;

    top: 0;
    right: -100%;
    gap: 60px 0;
    margin: 25dvh 0 0 0;
    padding: 100px 0 0 0;
    position: fixed;
    list-style: none;
    /* background: #c6c7c963; */
    z-index: 1;
    transition: .3s;
    overflow-y: auto;
    pointer-events: all;
}



.options-menu li a {
    text-decoration: none;
    font-size: 2rem;
    color: black;
}

.options-menu.active {
    right: 0%;
    margin-top: 25dvh;
    background: rgb(104, 98, 98);

}


.slider {
    width: 100%;
    height: 75dvh;
    overflow-y: hidden;
    overflow-x: scroll;
    /* scroll-snap-type: x mandatory; */
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.slider-contenedor {
    width: 100%;
    height: 100%;
    display: flex;
}

.slider-contenedor figure {
    width: 100%;
    flex: 0 0 auto;
}

.slider-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* scroll-snap-align: start; */
}


footer {
    width: 100%;
    height: 100px;
    margin-top: 100px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    /* max-width: 600px;  */
}

.footer-title div {
    width: 80%;
    /* max-width: 700px; */
    height: 0px;
    border-top: 2px solid black;
}




.work {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.work-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.work-title p {
    margin: 0 60px;
    font-size: 2rem;
}

.work-title div {
    width: 30%;
    height: 0;
    border-bottom: 1px solid black;
}

.work-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 30px 40px;
    flex-wrap: wrap;
    padding: 0 20px;

}



.work-container figure {
    width: 318px;
    height: 400px;
    overflow: hidden;
}

.work-container figure img {
    width: 100%;
    height: 318px;
    object-fit: cover;
    margin-bottom: 0px;
    transition: .3s all ease-in-out;
}

.work-container figcaption {
    font-size: 1.5rem;
}

#viewBox.active {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 12;
    background: rgba(44, 44, 44, 0.795);
}

.close-x {
    position: absolute;
    top: 40px;
    right: 39px;
    font-size: 2rem;
}

#viewBox {
    display: none;
}

#fullImage {
    width: auto;
    max-width: 80dvw;
    height: auto;
    max-height: 80dvh;
    object-fit: cover;
}

.work-line {
    width: 100%;
    border-top: 2px solid black;
    margin-bottom: 60px;
    max-width: 900px;
}

.statement {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.statement h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.statement-content {
    max-width: 700px;
}

.statement p {
    margin-bottom: 40px;
    font-size: 1.3rem;
    text-align: justify;
}

.options-menu li {
    transition: all .3s ease-in-out;
}

.options-menu li:hover {
    transform: scale(1.1);
}

.work img {
    cursor: pointer;
}

.work figure {
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.work figure:hover {
    transform: scale(1.1);
    /* margin: 0 10px; */
}



@media screen and (min-width: 1000px) {
    body {
        background: white;
    }

    .ham-menu {
        display: none;
    }

    nav {
        width: fit-content;
    }

    header>a {
        font-size: 2.5rem;
    }

    .options-menu {

        height: 100px;
        position: static;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;

    }

    .options-menu li a {
        font-size: 1.2rem;

    }

    nav {
        background: white;
    }

}