@font-face {
    font-family: 'Humane Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
            local('Humane Regular'),
            url('/fonts/Humane-Regular.woff2') format('woff2'),
            url('/fonts/Humane-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Humane Bold';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src:
            local('Humane Bold'),
            url('/fonts/Humane-Bold.woff2') format('woff2'),
            url('/fonts/Humane-Bold.woff') format('woff');
}

.aeth-main-content {
    background-image: url('/images/aqui-empieza-tu-historia/general-back.jpg');
    min-height: 100vh;

    .promo-login {
        padding: 5% 20px 0;
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .promo-login__card {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 680px;
        padding: 90px 40px 70px;
        text-align: center;
        border-radius: 21px;
        background: linear-gradient(180deg, #FFF 0%, #EEE 100%);
        box-shadow: 0 12px 8px 0 rgba(0, 0, 0, 0.15);
    }

    .promo-login__player {
        position: absolute;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
        user-select: none;
    }

    .promo-login__player--left {
        left: 125px;
        width: 420px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .promo-login__player--right {
        right: 140px;
        width: 420px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .promo-login__title {
        margin: 0;
        color: #007EF4;
        font-size: 84px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        font-family: 'Humane Bold', sans-serif;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-login__subtitle {
        margin: 15px 0 25px;
        color: #44C3FC;
        font-size: 56px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        font-family: 'Humane Bold', sans-serif;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-login__form {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .promo-login__field {
        width: 100%;
        max-width: 400px;
        margin-top: 18px;
        text-align: left;
    }

    .promo-login__label {
        display: block;
        margin-bottom: 10px;
        color: #0B5CB2;
        font-size: 20px;
        font-weight: 700;
    }

    .promo-login__input {
        width: 100%;
        height: 40px;
        padding: 0 58px;
        border: 2px solid #007EF4;
        border-radius: 32px;
        background: transparent;
        color: #6A6A6A;
        font-size: 15px;
        outline: none;
    }

    .promo-login__input::placeholder {
        color: #6A6A6A;
    }

    .promo-login__input:focus {
        border-color: #0B5CB2;
    }

    .promo-login__register-text {
        margin: 28px 0 18px;
        color: #44C3FC;
        font-size: 44px;
        font-weight: 900;
        text-transform: uppercase;
        font-family: 'Humane Bold', sans-serif;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-login__button {
        width: 100%;
        max-width: 400px;
        height: 46px;
        border: none;
        border-radius: 32px;
        background: #0377F0;
        color: #ffffff;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .promo-login__button.alter {
        background-color: #28ADE9;
    }

    .promo-login__button:hover {
        background: #0B5CB2;
    }

    .promo-register__input--error {
        border-color: #ff3b30;
    }

    .promo-register__error, .promo-login__error-general {
        margin-top: 8px;
        padding-left: 12px;
        color: #ff3b30;
        font-size: 14px;
        font-weight: 600;
        max-width: 300px;
    }

    @media (max-width: 1400px) {
        .promo-login__player--left {
            left: 10%;
            width: 340px;
        }

        .promo-login__player--right {
            right: 10%;
            width: 340px;
        }
    }

    @media (max-width: 1100px) {
        .promo-login__player--left {
            left: 5%;
        }

        .promo-login__player--right {
            right: 5%;
        }
    }

    @media (max-width: 768px) {
        .promo-login__player--left {
            top: 13%;
            width: 150px;
        }

        .promo-login__player--right {
            top: 13%;
            width: 150px;
        }
        .promo-login {
            padding: 140px 20px;
        }

        .promo-login__card {
            min-height: auto;
            padding: 56px 22px 48px;
            border-radius: 26px;
        }

        .promo-login__title {
            font-size: 54px;
        }

        .promo-login__subtitle {
            font-size: 50px;
        }

        .promo-login__label {
            font-size: 22px;
        }

        .promo-login__input {
            height: 56px;
            padding: 0 28px;
            font-size: 18px;
        }

        .promo-login__button {
            height: 56px;
        }

        .promo-login__register-text {
            font-size: 42px;
        }
    }
}

.aeth-main-content {
    .promo-register {
        min-height: 90vh;
        padding: 36px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: visible;
    }

    .disclaimer {
        color: #007EF4;
        text-align: center;
        font-family: "Nunito Sans";
        font-size: 8px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        position: absolute;
        max-width: 155px;
        display: block;
        top: 56%;
        transform: translateY(-50%);
        left: 100px;
    }

    .promo-register .disclaimer {
        left: auto;
        right: 15%;
    }

    .promo-register__card {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 750px;
        min-height: 760px;
        padding: 60px 56px;
        border-radius: 0 0 22px 22px;
        background: linear-gradient(180deg, #FFF 0%, #EEE 100%);
        box-shadow: 0 12px 8px 0 rgba(0, 0, 0, 0.15);
        overflow: visible;
    }

    .promo-register__content {
        position: relative;
        z-index: 20;
        width: 100%;
        max-width: 560px;
    }

    .promo-register__title {
        margin: 0;
        color: #007EF4;
        font-family: 'Humane Bold', sans-serif;
        font-size: 78px;
        font-weight: 900;
        line-height: 0.95;
        text-transform: uppercase;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-register__subtitle {
        margin: 12px 0 40px;
        color: #44C3FC;
        font-family: 'Humane Bold', sans-serif;
        font-size: 46px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-register__form {
        width: 100%;
    }

    .promo-register__field {
        width: 100%;
        max-width: 500px;
        margin-top: 24px;
        text-align: left;
    }

    .promo-register__label {
        display: block;
        margin-bottom: 8px;
        color: #0B5CB2;
        font-size: 20px;
        font-weight: 700;
    }

    .promo-register__input {
        width: 100%;
        height: 44px;
        padding: 0 42px;
        border: 2px solid #007EF4;
        border-radius: 32px;
        background: transparent;
        color: #6A6A6A;
        font-size: 15px;
        outline: none;
    }

    .promo-register__input::placeholder {
        color: #6A6A6A;
    }

    .promo-register__input:focus {
        border-color: #0B5CB2;
    }

    .promo-register__button {
        width: 100%;
        max-width: 310px;
        height: 48px;
        margin-top: 16px;
        border: none;
        border-radius: 32px;
        background: #0377F0;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
    }

    .promo-register__button:hover {
        background: #0B5CB2;
    }

    .promo-register__player {
        position: absolute;
        right: 5%;
        bottom: 10%;
        z-index: 10;
        width: 500px;
        pointer-events: none;
        user-select: none;
    }

    @media (min-width: 1500px) {
        .promo-register__player {
            right: 15%;
        }
    }
    @media (max-width: 1300px) {
        .promo-register__player {
            right: -40px;
            width: 520px;
        }
    }

    @media (max-width: 1100px) {
        .promo-register__player {
            right: -120px;
            opacity: .35;
        }
    }

    @media (max-width: 768px) {
        .promo-register {
            padding: 68px 20px;
            overflow: hidden;
        }

        .promo-register__card {
            min-height: auto;
            padding: 48px 22px;
            border-radius: 26px;
        }

        .promo-register__content {
            max-width: 100%;
        }

        .promo-register__player {
            width: 100px;
            right: 10%;
            top: 10%;
            bottom: auto;
            opacity: 1;
        }

        .promo-register__title {
            font-size: 54px;
        }

        .promo-register__subtitle {
            margin-bottom: 30px;
            font-size: 42px;
        }

        .promo-register__field {
            max-width: 100%;
            margin-bottom: 20px;
        }

        .promo-register__label {
            font-size: 22px;
        }

        .promo-register__input {
            height: 56px;
            padding: 0 28px;
            font-size: 18px;
        }

        .promo-register__button {
            max-width: 100%;
            height: 56px;
        }
    }
}

.aeth-main-content {
    .promo-trivia {
        min-height: 100vh;
        padding: 36px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: visible;
    }

    .promo-trivia__card {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 1180px;
        min-height: 760px;
        padding: 60px 70px;
        border-radius: 0 0 22px 22px;
        background: linear-gradient(180deg, #FFF 0%, #EEE 100%);
        box-shadow: 0 12px 8px 0 rgba(0, 0, 0, 0.15);
        overflow: visible;
    }

    .promo-trivia__content {
        position: relative;
        z-index: 20;
        width: 100%;
        max-width: 560px;
    }

    .promo-trivia__title,
    .promo-trivia__subtitle {
        margin: 0;
        font-family: 'Humane Bold', sans-serif;
        font-weight: 900;
        line-height: .95;
        text-transform: uppercase;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .promo-trivia__title {
        color: #007EF4;
        font-size: 76px;
    }

    .promo-trivia__subtitle {
        color: #44C3FC;
        font-size: 76px;
    }

    .promo-trivia__intro {
        margin: 20px 0 46px;
        color: #222;
        font-size: 24px;
        line-height: 1.35;
    }

    .promo-trivia__question {
        margin-bottom: 32px;
    }

    .promo-trivia__question-title {
        margin: 0 0 18px;
        color: #007EF4;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.4;
    }

    .promo-trivia__option {
        display: block;
        width: fit-content;
        margin: 0 0 12px 14px;
        color: #6A6A6A;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }

    .promo-trivia__option input {
        display: none;
    }

    .promo-trivia__option span {
        display: inline-block;
        padding: 7px 14px;
        border: 1.5px solid transparent;
        border-radius: 22px;
    }

    .promo-trivia__option input:checked + span {
        border-color: #44C3FC;
        color: #6A6A6A;
        background: rgba(68, 195, 252, 0.08);
    }

    .promo-trivia__button {
        width: 100%;
        max-width: 310px;
        height: 48px;
        margin-top: 20px;
        border: none;
        border-radius: 32px;
        background: #0377F0;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
    }

    .promo-trivia__button:hover {
        background: #0B5CB2;
    }

    .promo-trivia__player {
        position: absolute;
        right: 40px;
        bottom: 0;
        z-index: 10;
        width: 640px;
        pointer-events: none;
        user-select: none;
        max-height: 800px;
        object-fit: contain;
    }

    .promo-trivia__error,
    .promo-trivia__error-general {
        margin-top: 8px;
        color: #ff3b30;
        font-size: 14px;
        font-weight: 700;
    }

    @media (max-width: 1300px) {
        .promo-trivia__player {
            right: -40px;
            width: 520px;
        }
    }

    @media (max-width: 1100px) {
        .promo-trivia__player {
            right: -120px;
            opacity: .35;
        }
    }

    @media (max-width: 768px) {
        .promo-trivia {
            padding: 68px 20px;
            overflow: hidden;
        }

        .promo-trivia__card {
            min-height: auto;
            padding: 48px 22px;
            border-radius: 26px;
        }

        .promo-trivia__content {
            max-width: 100%;
        }

        .promo-trivia__player {
            display: none;
        }

        .promo-trivia__title,
        .promo-trivia__subtitle {
            font-size: 54px;
        }

        .promo-trivia__intro {
            font-size: 20px;
        }

        .promo-trivia__button {
            max-width: 100%;
            height: 56px;
        }
    }
}

.aeth-main-content {

    .promo-final {
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .promo-final__content {
        padding-bottom: 70px;
        padding-top: 70px;
        text-align: center;
        position: relative;
        z-index: 5;
    }

    .promo-final__title {
        margin: 0;
        font-family: 'Humane Bold', sans-serif;
        font-size: 82px;
        font-weight: 900;
        line-height: .9;
        text-transform: uppercase;
        color: #007EF4;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: geometricPrecision;
    }

    .promo-final__title span {
        color: #44C3FC;
    }

    .promo-final__text {
        max-width: 720px;
        margin: 12px auto 0;
        color: #222;
        font-size: 24px;
        line-height: 1.4;
        font-weight: 500;
    }

    .promo-final__bottom {
        position: relative;
        width: 100%;
        height: 440px;
        background: linear-gradient(90deg, #111 0%, #1E1E1E 50%, #111 100%);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .promo-final__image {
        position: absolute;
        bottom: 0;
        width: 760px;
        max-width: 90%;
        z-index: 10;
        pointer-events: none;
        user-select: none;
    }

    .promo-final__legend {
        position: absolute;
        right: 90px;
        bottom: 54px;
        margin: 0;
        color: #44C3FC;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        font-weight: 600;
        z-index: 20;
    }

    @media (max-width: 992px) {

        .promo-final__title {
            font-size: 62px;
        }

        .promo-final__text {
            max-width: 90%;
            font-size: 22px;
        }

        .promo-final__bottom {
            height: 360px;
        }

        .promo-final__legend {
            right: 30px;
            bottom: 30px;
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {

        .promo-final {
            min-height: 100vh;
        }

        .promo-final__content {
            padding: 50px 20px 0;
        }

        .promo-final__title {
            font-size: 46px;
        }

        .promo-final__text {
            font-size: 18px;
        }

        .promo-final__bottom {
            height: 320px;
        }

        .promo-final__image {
            width: 520px;
            max-width: 120%;
        }

        .promo-final__legend {
            right: 18px;
            bottom: 18px;
            font-size: 10px;
            line-height: 1.3;
        }
    }
}