@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/FAQ.razor.rz.scp.css */
.faq__layout[b-xbntfzf88p] {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    align-items: stretch;
}

.faq__list[b-xbntfzf88p] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.faq__item[b-xbntfzf88p] {
    display: contents;
}

.faq__card[b-xbntfzf88p] {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    background-color: #eeeeee;
    padding: 20px 50px 20px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    z-index: 0;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    text-align: left;
    width: 100%;
}

.faq__card--active[b-xbntfzf88p] {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 16px;
}

.faq__number[b-xbntfzf88p] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BBBBBB;
    color: #fff;
    font-size: 19px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
}

.faq__number--active[b-xbntfzf88p] {
    background-color: #EC0000;
}

.faq__question[b-xbntfzf88p] {
    text-align: start;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    flex: 1;
}

.faq__chevron[b-xbntfzf88p] {
    display: none;
    color: #666;
    transition: transform 0.3s ease;
}

.faq__chevron--active[b-xbntfzf88p] {
    transform: rotate(180deg);
}

/* Desktop panel */
.faq__panel[b-xbntfzf88p] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FDFEFE;
    border-radius: 0 21px 21px 21px;
    box-shadow: 0px 3px 6px #00000029;
    padding: 100px;
    width: calc(55% + 10px);
    margin-left: -10px;
    box-sizing: border-box;
    height: 520px;
    z-index: 1;
}

/* Mobile accordion panel (hidden on desktop) */
.faq__mobile-panel[b-xbntfzf88p] {
    display: none;
}

.faq__answer[b-xbntfzf88p] {
    font-size: 22px;
    line-height: 32px;
    color: #000;
    animation: fadeScale-b-xbntfzf88p 0.3s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeScale-b-xbntfzf88p {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .faq__layout[b-xbntfzf88p] {
        flex-direction: column;
    }

    .faq__list[b-xbntfzf88p] {
        width: 100%;
        gap: 12px;
    }

    .faq__item[b-xbntfzf88p] {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .faq__card[b-xbntfzf88p] {
        padding: 16px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        gap: 12px;
        transform: none !important;
        box-shadow: none !important;
    }

    .faq__card--active[b-xbntfzf88p] {
        background-color: transparent;
    }

    .faq__number[b-xbntfzf88p] {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 16px;
    }

    .faq__question[b-xbntfzf88p] {
        font-size: 16px;
        line-height: 22px;
    }

    .faq__chevron[b-xbntfzf88p] {
        display: block;
        min-width: 24px;
    }

    /* Hide desktop panel on mobile */
    .faq__panel[b-xbntfzf88p] {
        display: none;
    }

    /* Show mobile accordion panel */
    .faq__mobile-panel[b-xbntfzf88p] {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 16px;
        background-color: #f8f8f8;
    }

    .faq__mobile-panel--active[b-xbntfzf88p] {
        max-height: 500px;
        padding: 16px;
        border-top: 1px solid #e2e2e2;
    }

    .faq__mobile-panel .faq__answer[b-xbntfzf88p] {
        font-size: 15px;
        line-height: 24px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .faq__question[b-xbntfzf88p] {
        font-size: 15px;
        line-height: 20px;
    }

    .faq__mobile-panel .faq__answer[b-xbntfzf88p] {
        font-size: 14px;
        line-height: 22px;
    }
}
/* /Components/Forms/LeadForm.razor.rz.scp.css */
.lead__form[b-5igpc4npy8] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.lead__input[b-5igpc4npy8] {
    width: 100%;
    padding: 14px;
    border-radius: 11px;
    border: 1px solid #707070;
    font-family: 'Santander-Regular';
    font-size: 18px;
    color: #000;
}

.lead__button[b-5igpc4npy8] {
    width: 100%;
    background: #e30613;
    color: #fff;
    padding: 16px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
}


.lead__checkbox[b-5igpc4npy8] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 14px;
    color: #000;
    line-height: 19px;
}

.lead__checkbox-input[b-5igpc4npy8] {
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid #cfcfcf;
    border-radius: 10px;
    background: #fff;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

    /* Red check */
    .lead__checkbox-input:checked[b-5igpc4npy8]::after {
        content: "";
        position: absolute;
        left: 8px;
        top: 4px;
        width: 8px;
        height: 14px;
        border-right: 4px solid #e30613;
        border-bottom: 4px solid #e30613;
        transform: rotate(45deg);
    }

    /* Focus state (important for accessibility) */
    .lead__checkbox-input:focus-visible[b-5igpc4npy8] {
        outline: 3px solid rgba(227, 6, 19, 0.25);
        outline-offset: 2px;
    }

.lead__checkbox-label a[b-5igpc4npy8] {
    text-decoration: none;
    color: #EC0000;
}

[b-5igpc4npy8] .lead__error {
    font-size: 13px;
    color: #e30613;
}
.lead__input.invalid[b-5igpc4npy8] {
    border-color: #e30613;
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-vvq3qs890r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    background-color: #E20019;
    padding: 30px 0 60px 0;
    font-family: Montserrat-Regular;
}

.footer__top[b-vvq3qs890r] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 0;
}

.footer__brand[b-vvq3qs890r] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
}

.footer__divider[b-vvq3qs890r] {
    width: 100%;
    height: 1px;
    background: #ffffff;
}

.footer__address[b-vvq3qs890r]{
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    letter-spacing: 1.4px;
}

.footer__bottom[b-vvq3qs890r] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}

.footer__links[b-vvq3qs890r] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    line-height: 19px;
    color: #fff;
}

    .footer__links a[b-vvq3qs890r] {
        color: inherit;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

        .footer__links a:hover[b-vvq3qs890r] {
            opacity: 0.7;
        }

.footer__logo img[b-vvq3qs890r] {
    width: 150px;
    height: 30px;
}



@media (max-width: 767px) {

    .footer__top[b-vvq3qs890r] {
        padding-bottom: 40px;
    }

    .footer__links[b-vvq3qs890r] {
        flex-wrap: wrap;
    }

    .footer__bottom[b-vvq3qs890r] {
        border-top: 1px solid #fff;
        padding-top: 70px;
        gap: 10px;
    }

    .footer__links[b-vvq3qs890r] {
        font-size: 10px;
        line-height: 16px;
    }


    .footer__logo:last-child[b-vvq3qs890r]  {
        margin: 100px 0 0 30px;
        align-self: start;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
header[b-lrvx9zisin] {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
}


.ir-para-benecar[b-lrvx9zisin] {
    background-image: url('/img/Desktop/ir-para-benecar.svg');
    width: 173px;
    height: 19px;
}


@media (max-width: 768px) {

    .ir-para-benecar[b-lrvx9zisin] {
        background-image: url('/img/Mobile/ir-para-benecar.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 24px;
        height: 20px;
    }

}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-za48byyoe8] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main[b-za48byyoe8] {
    width: 100%;
    flex: 1;
}

.content[b-za48byyoe8] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    font-family: 'Santander-Regular';
    padding-bottom: 80px;
}


@media (max-width: 640.98px) {

}

@media (min-width: 641px) {

}

#blazor-error-ui[b-za48byyoe8] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-za48byyoe8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-i612hq029x],
.components-reconnect-repeated-attempt-visible[b-i612hq029x],
.components-reconnect-failed-visible[b-i612hq029x],
.components-pause-visible[b-i612hq029x],
.components-resume-failed-visible[b-i612hq029x],
.components-rejoining-animation[b-i612hq029x] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-i612hq029x],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-i612hq029x],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-i612hq029x],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-i612hq029x],
#components-reconnect-modal.components-reconnect-retrying[b-i612hq029x],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-i612hq029x],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-i612hq029x],
#components-reconnect-modal.components-reconnect-failed[b-i612hq029x],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-i612hq029x] {
    display: block;
}


#components-reconnect-modal[b-i612hq029x] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-i612hq029x 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-i612hq029x 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-i612hq029x 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-i612hq029x]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-i612hq029x 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-i612hq029x {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-i612hq029x {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-i612hq029x {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-i612hq029x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-i612hq029x] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-i612hq029x] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-i612hq029x] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-i612hq029x] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-i612hq029x] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-i612hq029x] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-i612hq029x 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-i612hq029x] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-i612hq029x {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */

/**************************/
/********* BANNER *********/
/**************************/

.banner[b-1qji42rcao] {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
}

.banner__inner[b-1qji42rcao] {
    width: 1920px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-color: #fff;
    background: url('/img/Desktop/BG_LANDING_ST.png') no-repeat center;
    position: relative;
}

.banner__content[b-1qji42rcao] {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.banner__text[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}


.banner__title[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    color: #fff;
    font-size: 39px;
    text-align: start;
    line-height: 55px;
}

    .banner__title--highlight[b-1qji42rcao] {
        color: #E83D3D;
    }

.banner__subtitle[b-1qji42rcao] {
    font-size: 30px;
    line-height: 42px;
    color: #E4E4E4;
    align-self: center;
}

.banner__partner[b-1qji42rcao] {
    position: absolute;
    bottom: 60px;
}



/**************************/
/********** ABOUT *********/
/**************************/

.about[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__title[b-1qji42rcao] {
    font-size: 39px;
    line-height: 55px;
    color: #000;
}

.about__content[b-1qji42rcao] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
}

.about__text[b-1qji42rcao] {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



/**************************/
/********** LEAD **********/
/**************************/


.lead__content[b-1qji42rcao] {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.lead__media[b-1qji42rcao] {
    grid-column: 1;
    grid-row: 1;
    background-image: url('/img/Desktop/lead-bg.png');
    width: 100%;
    height: 539px;
}

.lead__image[b-1qji42rcao] {
    width: 100%;
    border-radius: 0 21px 21px 21px;
    object-fit: cover;
}

.lead__card[b-1qji42rcao] {
    grid-column: 1;
    grid-row: 1;
    width: 622px;
    margin-top: 30px;
    margin-left: 50px;
    background: #FDFEFE;
    padding: 40px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 3px 6px #00000029;
    align-self: start;
    justify-self: start;
    z-index: 1;
}

.lead__title[b-1qji42rcao] {
    font-size: 39px;
    line-height: 45px;
    color: #000;
}

.lead__subtitle[b-1qji42rcao] {
    font-size: 39px;
    line-height: 45px;
    color: #EC0000;
}



/**********************************/
/********** HOW IT WORKS **********/
/**********************************/


.how-it-works[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.how-it-works__title[b-1qji42rcao] {
    font-size: 39px;
    color: #000;
    line-height: 39px;
}

.how-it-works__content[b-1qji42rcao] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.how-it-works__step[b-1qji42rcao], .how-it-works__step-odd[b-1qji42rcao] {
    width: 200px;
    display: flex;
    flex-direction: column;
}

.how-it-works__icon[b-1qji42rcao] {
    height: 200px;
}

.how-it-works__icon img[b-1qji42rcao] {
    width: 200px;
}

.how-it-works__textcontent[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
}

.how-it-works__number[b-1qji42rcao] {
    font-size: 24px;
    line-height: 34px;
    color: #EC0000;
}

.how-it-works__text[b-1qji42rcao] {
    font-size: 22px;
    line-height: 28px;
    color: #000;
}



/**************************/
/*********** FAQ **********/
/**************************/

.faq[b-1qji42rcao] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f1f1f1;
    padding: 100px 0;
}

.faq__inner[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__title[b-1qji42rcao] {
    font-size: 39px;
    line-height: 55px;
}



/**********************************/
/*********** CONDITIONS ***********/
/**********************************/

.conditions[b-1qji42rcao] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conditions__title[b-1qji42rcao] {
    font-size: 39px;
    line-height: 55px;
    color: #000;
}

.conditions__text p[b-1qji42rcao] {
    margin: 0;
}



/**********************************/
/**********************************/
/************* MOBILE *************/
/**********************************/
/**********************************/

@media (max-width: 767px) {

    /**************************/
    /********* BANNER *********/
    /**************************/

    .banner__inner[b-1qji42rcao] {
        width: 100vw;
        height: 660px;
        background: url('/img/Mobile/banner_bg.png') no-repeat center;
        background-size: 100vw;
    }
    
    .banner__content[b-1qji42rcao] {
        align-items: start;
        justify-content: start;
        margin-top: 80px;
    }

    .banner__text[b-1qji42rcao] {
        width: 320px;
    }

    .banner__title[b-1qji42rcao] {
        font-size: 25px;
        line-height: 31px;
        display: block;
    }

    .banner__subtitle[b-1qji42rcao] {
        font-size: 19px;
        line-height: 24px;
    }

    .banner__partner[b-1qji42rcao] {
        bottom: auto;
        right: 50px;
        margin-top: 20px;
    }
    
    .banner__partner img[b-1qji42rcao] {
        height: 18px;
    }



    /**************************/
    /********** ABOUT *********/
    /**************************/

    .about__title[b-1qji42rcao] {
        font-size: 30px;
        line-height: 42px;
    }

    .about__content[b-1qji42rcao] {
        flex-direction: column;
        gap: 20px;
    }
    
    .about__text[b-1qji42rcao] {
        font-size: 16px;

    }

    .about__image[b-1qji42rcao] {
        z-index: 1;
    }

    .about__image img[b-1qji42rcao] {
        width: 100%;
    }



    /**************************/
    /********** LEAD **********/
    /**************************/

    .lead[b-1qji42rcao] {
        margin-top: -120px;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .lead__content[b-1qji42rcao] {
        display: flex;
        flex-direction: column;
    }

    .lead__media[b-1qji42rcao] {
        background-image: url('/img/Mobile/lead_bg2x.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 261px;
    }

    .lead__card[b-1qji42rcao] {
        width: auto;
        margin: -50px 20px 0 20px;
    }

    .lead__title[b-1qji42rcao] {
        font-size: 24px;
        line-height: 32px;
    }

    .lead__subtitle[b-1qji42rcao] {
        font-size: 24px;
        line-height: 24px;
    }



    /**********************************/
    /********** HOW IT WORKS **********/
    /**********************************/

    .how-it-works__content[b-1qji42rcao] {
        flex-direction: column;
    }

    .how-it-works__step[b-1qji42rcao], .how-it-works__step-odd[b-1qji42rcao] {
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .how-it-works__step:first-child[b-1qji42rcao] {
        margin-top: 0;
    }

    .how-it-works__step[b-1qji42rcao] {
        flex-direction: row;
        margin-left: -30px;
        margin-top: 30px;
    }

    .how-it-works__step-odd[b-1qji42rcao] {
        flex-direction: row-reverse;
        margin-right: -30px;
        margin-left: auto;
    }

    .how-it-works__icon[b-1qji42rcao] {
        align-items: center;
        justify-content: center;
        padding-top: 30px;
    }

    .how-it-works__icon img[b-1qji42rcao] {
        width: auto;
        height: 175px;
    }

    .how-it-works__number[b-1qji42rcao] {
        font-size: 24px;
        line-height: 34px;
    }
    .how-it-works__text[b-1qji42rcao] {
        font-size: 20px;
        line-height: 26px;
    }


    /**************************/
    /*********** FAQ **********/
    /**************************/
    .faq__layout[b-1qji42rcao] {
        flex-direction: column;
    }

}
