#idprehome.ocultar {
    display: none !important;
}

.fondoprehome .logo {
    display: none;
}

.fondoprehome a:hover.prehome-banner__button,
.fondoprehome a:focus.prehome-banner__button {
    color: #2c2a29 !important;
    text-decoration: none !important;
}



.fondoprehome {
    z-index: 9999;
    background-color: #000000c7;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 1200ms ease;
}

.fondoprehome.is-visible {
    opacity: 1;
}

.fondoprehome .btn-flotantes {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 0;
    height: auto;
    max-width: 100%;
}

.fondoprehome .btn-flotantes.prehome-slide {
    opacity: 0;
    transform: translateX(-110vw);
    will-change: transform, opacity;
    transition: transform 2000ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 1400ms ease;
}

.fondoprehome.is-visible .btn-flotantes.prehome-slide {
    opacity: 1;
    transform: translateX(0);
}

.fondoprehome.is-closing #idprehome.prehome-slide {
    opacity: 0;
    transform: translateX(-120vw);
}

.fondoprehome #idprehome .contexto.prehome-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    min-height: 400px;
    padding: 56px 64px;
    background: #fdda24;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
}

.fondoprehome #idprehome .cerrar {

    width: 40px;
    position: fixed;
    background: #fdda24;
    right: -17px;
    top: -20px;
    border-radius: 79px;
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border: 1px solid #2c2a29;
}

.prehome-banner__left {
    position: relative;
    z-index: 3;
    max-width: 90%;
    text-align: right;
    color: #000000;
    font-family: 'CIBFontSans-Bold', 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 92px;
    line-height: 0.92;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(38px);
    will-change: transform, opacity;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 800ms ease;
}

.fondoprehome.is-visible .prehome-banner__left {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 900ms;
}

.fondoprehome.is-closing .prehome-banner__left {
    opacity: 0;
    transform: translateY(24px);
    transition: transform 280ms ease-in, opacity 240ms ease-in;
    transition-delay: 0ms;
}

.prehome-banner__title {
    margin: 0;
    color: #000000;
    font-family: 'CIBFontSans-Bold', 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 85px;
    line-height: 0.2;
    letter-spacing: -2px;
    max-width: 100%;
    text-align: center;
}

.prehome-banner__title .prehome-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: prehome-char-in 860ms ease forwards;
}

@keyframes prehome-char-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prehome-banner__small {
    display: inline-block;
    white-space: nowrap;
    width: max-content;
    word-break: keep-all;
    font-size: 56px;
    letter-spacing: -1px;
    margin-bottom: 10px;
    font-family: 'CIBFontSans', 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-top: 65px;
}

.prehome-banner__small.new {
    font-size: 35px;
    margin-top: 40px;
}

.prehome-banner__big {
    font-size: 86px;
    font-weight: 800;
}

.prehome-banner__dot {
    display: inline-block;
    margin-left: 8px;
}

.prehome-banner__cta {

    text-align: center;
    cursor: pointer;
}

.prehome-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 20px 30px;
    border-radius: 999px;
    background: #2c2a29;
    color: #ffffff;
    text-decoration: none;
    font-family: 'CIBFontSans-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    letter-spacing: 0px;
    border: solid 1px transparent;
    transition: border-color 260ms ease, box-shadow 260ms ease, filter 260ms ease;

}

.prehome-banner__button:hover,
.prehome-banner__button:focus-visible {
    background-color: transparent;
    border-color: #1f1e1d;
    color: #1f1e1d;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.14), 0 3px 8px 0 rgba(0, 0, 0, 0.11);
    transform: translateY(-1px);
}

.prehome-banner__button:active {
    background-color: transparent;
    border-color: #2c2a29;
    color: #2c2a29;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.18);
    transform: translateY(1px);
}

.prehome-banner__right {
    position: relative;
    min-height: 400px;
}

.prehome-banner__person {
    position: fixed;
    right: 60px;
    bottom: 0;
    width: 470px;
    max-width: max-content;
    opacity: 0;
    transform: translateX(120px);
    will-change: transform, opacity;
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fondoprehome.is-visible .prehome-banner__person {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1550ms;
}

.fondoprehome.is-closing .prehome-banner__person {
    opacity: 0;
    transform: translateX(100px);
    transition: transform 520ms ease-in, opacity 520ms ease-in;
    transition-delay: 0ms;
}

@media (max-width: 1440px) {
    .prehome-banner__left {
        max-width: 100%;
    }
}


@media (max-width: 1024px) {
    .prehome-banner__left {
        max-width: 50%;
        top: 70%;
    }

    .prehome-banner__person {
        right: -40px;
        bottom: 0px;
    }

    .prehome-banner__small.new {
        margin-top: 28px;
    }

}

.btn-flotantes {
    width: 100%;
}

.btn-flotantes .ocultar {
    display: none !important;
}

@media (max-width: 1080px) {
    .prehome-banner__left {
        max-width: 100%;
        top: 0%;
    }

    .prehome-banner__title {
        font-size: 58px;
    }

    .prehome-banner__small {
        font-size: 38px;
        margin-top: 47px;
    }

    .prehome-banner__small.new {
        font-size: 24px;
    }

    .prehome-banner__big {
        font-size: 58px;
        margin-top: 28px;
    }


    .prehome-banner__right {
        min-height: 340px;
        margin-top: 16px;
    }

    .prehome-banner__person {
        right: 0px;
        bottom: 0px;
        width: 420px;
    }

}

@media (max-width: 768px) {
    .fondoprehome #idprehome .contexto.prehome-banner {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
        padding: 44px 28px 30px;

    }

    .prehome-banner__person {
        right: 0px;
        bottom: 0px;
        width: 380px;
    }

    .prehome-banner__left {
        max-width: 100%;
        top: 0%;
        right: 10%;
    }

    .prehome-banner__title,
    .prehome-banner__title span.prehome-banner__big {
        font-size: 45px;
    }

    .prehome-banner__title span.prehome-banner__small {
        font-size: 30px;
        margin-top: 35px;
    }

    span.prehome-banner__small.new {
        margin-top: 20px;
        font-size: 19px;
    }

}

@media (max-width: 500px) {
    .fondoprehome {
        padding: 24px;
        align-items: center;
        overflow: hidden;
    }

    .fondoprehome .logo {
        position: absolute;
        z-index: 9;
        top: 1%;
        display: block;
    }

    .fondoprehome .btn-flotantes.prehome-slide {
        width: 100%;
        max-width: 100%;
        height: calc(100dvh - 48px);
        opacity: 1;
        transform: translateY(calc(100dvh - 48px));
        transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fondoprehome.is-visible .btn-flotantes.prehome-slide {
        transform: translateY(0);
    }

    .fondoprehome.is-closing #idprehome.prehome-slide {
        opacity: 1;
        transform: translateY(calc(100dvh - 48px));
    }

    .fondoprehome #idprehome .contexto.prehome-banner {
        grid-template-columns: 1fr;
        width: 100%;
        min-height: 100%;
        height: 100%;
        padding: 44px 28px 30px;
        border-radius: 10px;
    }

    .fondoprehome #idprehome .cerrar {
        top: 16px;
        right: 16px;
    }

    .prehome-banner__left {
        right: 0;
        text-align: left;
        top: 30px;
    }

    .prehome-banner__title,
    .prehome-banner__title span.prehome-banner__big {
        font-size: 50px;
        line-height: 0.2;
        text-align: center;
    }

    .prehome-banner__title span.prehome-banner__small {
        font-size: 33px;
    }

    span.prehome-banner__small.new {
        font-size: 21px;
    }

    .prehome-banner__right {
        min-height: 45vh;
        margin-top: 0;
    }

    .prehome-banner__person {
        margin: 0 auto;
        bottom: 0;
        width: 320px;
        left: 0%;
    }
}

@media (max-width: 400px) {

    .prehome-banner__title {
        font-size: 44px !important;
    }

    .prehome-banner__small {
        font-size: 29px !important;
    }

    .prehome-banner__person {
        width: 320px !important;
    }

    span.prehome-banner__small.new {
        font-size: 19px !important;
    }
}

@media (max-width: 340px) {
    .prehome-banner__title {
        font-size: 38px !important;
    }

    .prehome-banner__person {
        width: 280px !important;
    }

    span.prehome-banner__small.new {
        font-size: 16px !important;
    }

    .prehome-banner__small {
        font-size: 25px !important;
    }

}



/* Top bar prehome */
.fondoprehome.is-hidden {
    display: none !important;
}

.top-bar-prehome-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: #fdda24;
    box-sizing: border-box;
    padding: 10px 48px 10px 24px;
    box-shadow: 0 2px 8px rgba(44, 42, 41, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 500ms ease;
}

.top-bar-prehome-container.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.top-bar-prehome-container.is-hidden {
    display: none !important;
}

.top-bar-prehome-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
}

.top-bar-prehome-icon {
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    height: 56px;
    margin-bottom: -10px;
    overflow: visible;
}

.top-bar-prehome-icon__img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.top-bar-prehome-text {
    color: #292929;
    font-size: 15px;
    line-height: 1.4;
}

.top-bar-prehome-text label {
    cursor: default;
    font-family: 'CIBFontSans-Bold', 'Open Sans', sans-serif;
    font-size: 22px;

}

.top-bar-prehome-button {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-top-bar {
    color: #292929 !important;
    width: 165px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 24px;
    border: 2px solid #292929;
    text-align: center;
    font-size: 14px;
    background: transparent;
    transition: background 200ms ease;
    text-decoration: none !important;
}

.btn-top-bar:hover {
    background: rgba(41, 41, 41, 0.08);
}

.close-topbar {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #292929;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 200ms ease;
}

.close-topbar:hover {
    background: rgba(41, 41, 41, 0.1);
}

@media (max-width: 600px) {
    .top-bar-prehome-row {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        align-items: flex-start;
    }

    .top-bar-prehome-icon {
        grid-row: 1 / 3;
        grid-column: 1;
        height: auto;
    }

    .top-bar-prehome-icon__img {
        height: 130px;
    }

    .top-bar-prehome-text label {
        text-align: center;
    }

    .top-bar-prehome-text {
        grid-row: 1;
        grid-column: 2;
        font-size: 13px;
    }

    .top-bar-prehome-button {
        grid-row: 2;
        grid-column: 2;
        gap: 8px;
        margin: 0 auto
    }

    .btn-top-bar {
        width: auto;
        padding: 8px 12px;
        font-size: 13px;
    }

    .close-topbar {
        top: 20%;
    }
}

@media (max-width: 400px) {
    .top-bar-prehome-text label {
        font-size: 18px;
    }
}