/*
 ################ HEADER ################
*/
.header--transparent.header--top .menu a {
    color: #ffffff;

}



/*
 ################ SECCION HOVER ITEMS ################
*/
.hover--section-bg .top--subtitle {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.hover--section-bg .top--subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ABABAB;
    border-radius: 2px;
}

.hover--section-bg .top--subtitle .circle {
    width: 12px;
    height: 12px;
    background-color: var(--woko-green);
    border-radius: 50%;
    display: inline-block;
}


.hover--section-bg {
    transition: background-color 0.35s ease;
}

.hover--section-bg.background--white,
.hover--section-bg.background--green {
    color: var(--woko-black);
}

.hover--section-bg.background--black {
    color: white !important;
}

.hover--section-bg.background--black .button,
.hover--section-bg.background--green .button {
    border-color: white;
    background: white;
    color: var(--woko-black);
}

.hover--section-bg.background--white .button {
    color: var(--woko-black);
    background: var(--woko-green);
    border-color: var(--woko-green);
}


.hover--items {
    margin-top: 80px;
    position: relative;
    min-height: 550px;
}

.hover__item .icon {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-25px);
    transition: all 0.3s ease;
}

.hover__item.active .icon {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hover__item .hover__item-right {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hover__item.active .hover__item-right {
    opacity: 1;
    visibility: visible;
}

.hover__item-right img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0;
    margin-top: 20px;
}

.hover__item .hover__item-right .content {
    position: absolute;
    top: 0;
}

.hover__item .hover__item-left {
    padding-bottom: 30px;
    cursor: zoom-in;
    transition: all 0.3s ease
}

.hover__item.active .hover__item-left {
    transform: translateX(50px);
}




/*
 ################ BANNER HOVER ################
*/
.banner--hover {
    position: relative;
    height: 500px;
    background: linear-gradient(90deg, rgba(187, 240, 60, 1) 0%, rgba(178, 225, 0, 1) 100%);
    overflow: hidden;
}

.cursor__follow {
    position: absolute;
    left: 0;
    top: 0;

    width: 200px;
    height: 200px;
    background: white;
    color: var(--woko-black);
    border-radius: 50%;
    padding: 20px;

    pointer-events: auto;
    cursor: pointer;

    z-index: 100;

    /* Arrancamos centrado respecto al puntero */
    transform: translate3d(-50%, -50%, 0);

    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    opacity: 0;
    transition: opacity .35s ease;

    clip-path: circle(0%);
    transition: clip-path 1s cubic-bezier(.16, 1, .32, 1);
    will-change: clip-path;

}

.banner--hover:hover .cursor__follow {
    opacity: 1;
    clip-path: circle(100%);
}

.cursor__follow p {
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
}

.cursor__follow .icon {
    padding-left: 50px;
}




/*
 ################ MARQUEE SLIDER ################
*/
.marquee--section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    padding: 16px 0;
}

/* Pista que se mueve */
.marquee__inner {
    display: flex;
    width: max-content;
    /* deja que el contenido marque el ancho */
    will-change: transform;
}

/* Cada track debe ocupar su propio ancho; duplicamos para loop */
.marquee__track {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
    flex: 0 0 auto;
}

/* Animación: movemos el conjunto un 50% (porque hay 2 tracks iguales) */
@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Dirección */
.marquee--left .marquee__inner {
    animation: marquee-left var(--duration) linear infinite;
}

.marquee--right .marquee__inner {
    animation: marquee-right var(--duration) linear infinite;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border-radius: 999px;
    border: 1px solid #ebebeb;
    background: #ebebeb;
    white-space: nowrap;
}

/* Extras útiles */
.marquee:hover .marquee__inner {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__inner {
        animation: none;
        transform: none;
    }
}





.caso__exito-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}





/*
 ################ FOOTER ################
*/
footer.hercules {
    position: relative;
    overflow: hidden;
}

footer.hercules:after {
    position: absolute;
    content: "Let's work together";
    bottom: -70px;
    width: 100%;
    z-index: 1;
    font-size: 120px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.hercules__decoration {
    position: absolute;
    bottom: 0;
    z-index: 2;
}

footer.hercules .container {
    position: relative;
    z-index: 3;
}