/* Conserva la animación para todos los títulos */
#content-area h2.animated {
    font-family: 'Poppins', sans-serif;
    animation: animate 0.8s linear infinite;
    text-align: left;
    margin: 0px;
}

/* Título trauma responsive */
.trauma-title {
    font-size: clamp(3em, 9vw, 10em);

    /* Ajusta entre 3em (móviles) y 8em (pantallas grandes) */
    text-align: left;
    border: none;
    color: #0062ff;
    margin: 0;
    white-space: pre-line;
    word-break: normal;

    /* Opción 1: Interlineado normal (recomendado para títulos) */
    line-height: 1.2;
}

/* Título offer responsive */
.offer-title {
    font-size: clamp(3em, 9vw, 10em);

    /* Se ajusta entre 3em (móviles) y 8em (pantallas grandes) */
    text-align: left;
    background-color: transparent;
    border: none;
    color: hwb(217 0% 0%);
}

/* Título strategy responsive */
.strategy-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título technology */
.technology-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título creativity */
.creativity-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título impact */
.impact-title {
    font-size: clamp(3em, 9vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título analytics */
.analytics-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título something simple */
.culture-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título capable */
.capable-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título motivating */
.motivating-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

/* Título change */
.change-title {
    font-size: clamp(3em, 8vw, 9em);

    /* Se ajusta entre 2.5em (móviles) y 6.5em (pantallas grandes) */
    color: rgba(32, 41, 55, 0.59);
    text-align: left;
    background-color: transparent;
    border: none;
}

@keyframes animate {
    0%,
    100% {
        text-shadow: -1px -1.9px 0 #ffffff, 1.9px 1.9px 0 #ff0000;
    }

    25% {
        text-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #ff0000;
    }

    50% {
        text-shadow: 1.0px -1.0px 0 #ffffff, -1.0px 1.0px 0 #ff0000;
    }

    75% {
        text-shadow: -1.5px 1.5px 0 #ffffff, 1.5px -1.5px 0 #ff0000;
    }
}

.content {
    padding: 100px;
    font-size: 3em;
    height: 5000px;
}

.scroll-indicator-container {
    position: fixed;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 5000;
    pointer-events: none;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #0062ff;
    width: 50px;
}

.scroll-line {
    /* Necesario para posicionar los ticks dentro */
    position: relative;
    width: 2px;
    height: 240px;
    background: linear-gradient(to bottom, #ffffff86 0%, #ffffff 100%);

    /* IMPORTANTE */
    margin-bottom: 8px;
}

.scroll-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0062ff;
    height: 0%;
    transition: height 0.2s ease-out;
    z-index: 1;
}

.scroll-percent {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(0,0,0,0.05);
    min-width: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Percent móviles */
@media (max-width:768px){
    .scroll-indicator-container {
        right: 5px;
        transform: translateY(-50%) scale(0.8);
    }

    .tick-label {
        display: none;
    }

    .scroll-tick {
        display: none;
    }

    .scroll-line {
        height: 120px;
    }

    .scroll-percent {
        font-size: 12px;
    }
}

.scroll-percent.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Percent ticks */
.scroll-tick {
    position: absolute;
    left: -8px;
    width: 10px;
    height: 1px;
    background-color: #cccccc;

    /* color base más sutil */
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* se pinta cuando está activo */
.scroll-tick.active {
    background-color: #0062ff;
}

.tick-label {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #0062ff;

    /* color base del texto */
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* texto se pinta también al activarse */
.scroll-tick.active .tick-label {
    color: #c0c0c0;
}

/* EMPIEZA SKEW */
body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    background: black;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

#content-area {
    width: 100%;

    /* Asegura que no sobrepase el ancho de la pantalla */
    padding-top: 200px;
    padding-left: clamp(20px,6vw,90px);
    padding-right: clamp(20px,6vw,90px);
    box-sizing: border-box;

    /* Evita que el padding afecte el ancho total */
}

#content-area h1 {
    font-size: clamp(1.5em, 8vw, 9em);
    line-height: 1.3;
    letter-spacing: 2px;
    margin: 20px 0 20px 0px;
    color: #ffffff;
}

