.proyects {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--global-tokens-light-colors-neutral-100);
}

.proyects .frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 4rem 1rem;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: var(--global-tokens-light-colors-neutral-100);
}

.proyects .frame-wrapper {
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
    position: relative;
}

.proyects .div {
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    display: inline-flex;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}


.proyects .div-2 {
    display: flex;
    flex-wrap: wrap;
    max-width: 375px;
    align-items: center;
    gap: 24px 21px;
    position: relative;
}

.proyects .image-container {
    position: relative;
    max-width: 375px;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
     
}

/* Estilos base para todas las imágenes */
.proyects .image {
    /* position: relative; */
    max-width: 375px;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

/* Primera imagen - efecto vertical (scroll hacia abajo) */
.proyects .div-2:first-child .image {
    
    max-width: 375px;
    height: 800px;
    object-fit: cover;
    transform: translateY(0);
}

.proyects .div-2:first-child .image-container:hover .image {
    transform: translateY(-300px);
}

/* Segunda y tercera imagen - efecto horizontal (scroll de izquierda a derecha) */
.proyects .div-2:nth-child(2) .image,
.proyects .div-2:nth-child(3) .image {
    max-width: 375px;
    height: 800px;
    
    /* Altura igual al contenedor para que llenen completamente */
    object-fit: cover;
    object-position: center;
    transform: translateY(0);
}

.proyects .div-2:nth-child(2) .image-container:hover .image,
.proyects .div-2:nth-child(3) .image-container:hover .image {
    transform: translateY(-300px);
}

*/ .proyects .marca {
    position: relative;
    width: 60px;
    height: 60px;
}

.proyects .text {
    position: relative;
    width: fit-content;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    color: var(--global-tokens-light-colors-primary-alpha-10);
    font-size: 25px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.proyects .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Raleway" sans-serif;
    font-weight: var(--text-md-semibold-font-weight);
    color: var(--global-tokens-light-colors-neutral-100);
    font-size: var(--text-md-semibold-font-size);
    letter-spacing: var(--text-md-semibold-letter-spacing);
    line-height: var(--text-md-semibold-line-height);
    white-space: nowrap;
    font-style: var(--text-md-semibold-font-style);
}

.proyects .arrow-forward {
    position: relative;
    width: 18px;
    height: 18px;
}

.proyects .image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.proyects .image-container:hover::after {
    background: rgba(0, 0, 0, 0.1);
}
@font-face {
    font-family: 'Raleway';
    src: url(../fonts/Raleway-Medium.ttf) format(truetype); 
}
