@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');

/*  defaults  */
/*colors*/
:root {
    --pallets-primary: #C81E10;
    --pallets-secondary: #FC3;
    
    --light: #FFF;
    --dark: #1B1C1D;

    --buttons-cta-default: #C81E10;
    --buttons-cta-hover: #EA060A;
    --buttons-cta-text: var(--light);
}


html {
    position: relative;
}

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 145%;
    color: #FFF;
    background: #1B1C1D;
}

body.pop-up {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: .3s;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
    position: relative;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

*:focus {
    outline: none;
}

*::placeholder {
    color: inherit;
    opacity: .5;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin: 0;
    line-height: 115%;
}

h1 {
    font-size: 2.875em;
}

h2 {
    font-size: 2.125em;
}

.area-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.colored {
    color: var(--pallets-secondary);
}

span.small {
    font-size: 10px;
    opacity: 0.7;
}


@media (min-width: 992px) {
    .container {
        max-width: 840px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}


@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.275em;
    }
}




/*--  cta  --*/

.cta a {
    position: relative;
    height: 56px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 6px;
    background: var(--buttons-cta-default);
    color: var(--buttons-cta-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    
    z-index: 1;
    transition: .3s ease;
}

.cta a:hover {
    background: var(--buttons-cta-hover);
}

.cta a span {
    display: block;
}


@media screen and (min-width:1200px) {
    .cta.light a {
        color: var(--light);
        background: transparent;
        border: 1px solid var(--light);
    }

    .cta.light a:hover {
        background: transparent;
    }
}




/*--  header  --*/
header {
    background: var(--pallets-primary);
}

header .wrapper,
header .wrapper .left,
header .wrapper .left .primary-menu ul,
header .wrapper .app-supports .operating-systems,
header .wrapper .right,
header .wrapper .right .language .pt-br a,
header .wrapper .right .buttons {
    display: flex;
    align-items: center;
}

header .wrapper {
    padding: 16px 0;
    justify-content: space-between;
}


/*  */
header .wrapper .left {
    gap: 0 48px;
}

header .logo img {
    height: 28px;
    width: auto;
}

header .wrapper .left .primary-menu ul {
    gap: 0 18px;
}

header .wrapper .left .primary-menu ul a {
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;
}

header .menu-open.responsiveness {
    display: none;
}

header .menu-open.responsiveness img {
    height: 20px;
    width: 20px;
}


/*  */
header .operating-systems {
    gap: 0 8px;
}

header .operating-systems img {
    height: 24px;
    width: 24px;
}


/*  */
header .wrapper .right {
    gap: 0 20px;
}

header .language .pt-br a {
    gap: 0 8px;
    flex-direction: row-reverse;
    font-size: 12px;
    line-height: 150%;
}

header .language .pt-br img {
    height: 22px;
    width: 22px;
}

header .right .buttons {
    gap: 0 12px;
}

header .right .buttons .cta a {
    text-transform: none;
    height: 30px;
}

header .right .buttons .sign-in.cta a {
    font-size: 12px;
}


@media screen and (max-width: 1199px) {
    header .wrapper {
        padding: 8px 0;
    }

    header .right .buttons .sign-up,
    header .wrapper .right .language,
    header .wrapper .left .primary-menu,
    header .wrapper .middle {
        display: none;
    }

    header .menu-open.responsiveness {
        display: block;
    }

    header .wrapper .left {
        gap: 0 18px;
    }
    
    header .logo img {
        height: 20px;
    }
}




/*--  footer  --*/
footer {
    background: var(--pallets-primary);
    padding: 40px 0 0 0;
}

footer .logo {
    display: flex;
}

footer .logo img {
    height: 20px;
    width: auto;
}

footer > div > .middle {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 0 40px;
}

footer > div > .middle .disclaimer {
    flex: 1;
}

footer > div > .middle .icons {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

footer > div > .bottom {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1.5px solid rgba(255, 255, 255, 0.10);

    ul {
        display: flex;
        align-items: center;
        gap: 16px;

        li:hover {
            text-decoration: underline;
        }
    }
}


@media screen and (max-width:1199px) {
    footer > div > .middle {
        display: block;
    } 

    footer > div > .middle .icons {
        flex-wrap: wrap;
        margin-top: 40px;
    }

    footer > div > .bottom {
        flex-direction: column-reverse;
        gap: 32px;
        justify-content: center;
        text-align: center;
        
        ul {
            justify-content: center;
            flex-wrap: wrap;
        }
    }
}

/*--  hero  --*/
section.hero {
    background: center/cover;
    padding: 96px 0;
}

section.hero .wrapper {
    display: flex;
    gap: 0 32px;
}


section.hero .wrapper > .left {
    flex: 0 0 40%;
}

section.hero:has(.image ) .wrapper > .left{
    flex: 0 0 45%;
}

section.hero .wrapper > .left > div {
    max-width: 416px;
}


/*  */
section.hero .introduction {
    margin-bottom: 32px;
}

section.hero .subtitle {
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 24px;
}

section.hero .subtitle > div {
    display: flex;
    align-items: center;
    gap: 0 8px;
}

section.hero .subtitle img {
    height: 20px;
    width: 20px;
}


/*  */
section.hero .step-by-step {
    margin-bottom: 36px;
}

section.hero .step-by-step .title {
    font-weight: 500;
    line-height: 145%;
    margin-bottom: 16px;
}

section.hero .step-by-step .steps > div {
    display: flex;
    gap: 0 20px;
}

section.hero .step-by-step .steps > div:nth-child(n+2) {
    margin-top: 16px;
}

section.hero .step-by-step .steps > div .icon {
    height: 32px;
    width: 45px;
}

section.hero .step-by-step .steps > div .icon img {
    height: 100%;
    width: 100%;
}

section.hero .step-by-step .steps > div .content {
    flex: 1;
}


/*  */
section.hero .button.cta a {
    width: 350px;
}


/*  */
section.hero .subscribe > div {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.90);
    display: flex;
    align-items: center;
    gap: 0 8px;
}


/*  */
section.hero .wrapper > .right {
    flex: 1
}

section.hero .image.responsiveness,
section.hero .video.responsiveness {
    display: none;
}

section.hero .image img {
    width: 100%;
    aspect-ratio: 1.25;
}

section.hero .video {
    padding: 1px;
    border-radius: 16px;
    height: 380px;
    position: relative;
    background: linear-gradient(to bottom, var(--pallets-primary), var(--pallets-primary));
}

section.hero .video::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    height: 8px;
    width: calc(100% - 40px);
    border-radius: 0px 0px 16px 16px;
    background: var(--pallets-primary);
    opacity: 0.5;
}

section.hero .video::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 30px;
    height: 8px;
    width: calc(100% - 60px);
    border-radius: 0px 0px 16px 16px;
    background: var(--pallets-primary);
    opacity: 0.25;
}

section.hero .video video {
    object-fit: cover;
}

section.hero .video .thumb,
section.hero .video video,
section.hero .video img {
    border-radius: 16px;
    height: 100%;
    width: 100%;
}

section.hero .video .thumb {
    position: absolute;
    top: 0;
    left: 0;
    background: center/cover;
}

section.hero .video .icon-play {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    height: 100px;
    width: 100px;
    cursor: pointer;
    z-index: 1;
}

section.hero .video .icon-play img {
    height: 100%;
    width: 100%;
}


@media screen and (max-width:1199px) {
    section.hero {
        padding: 80px 0;
    }

    section.hero .image:not(.responsiveness),
    section.hero .video:not(.responsiveness) {
        display: none !important;
    }

    section.hero .image img {
        max-width: 480px;
    }

    section.hero .video.responsiveness,
    section.hero .wrapper {
        display: block;    
    }

    section.hero .image.responsiveness {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.hero .wrapper > .left > div {
        max-width: unset;
    }

    /*  */
    section.hero .introduction {
        margin-bottom: 40px;
    }

    section.hero .introduction .title {
        text-align: center;
    }

    section.hero .introduction .subtitle {
        margin-bottom: 12px;
    }

    section.hero .introduction .subtitle > div {
        justify-content: center;
    }

    /*  */
    section.hero .image {
        margin-bottom: 40px;
    }

    section.hero .video {
        margin-bottom: 60px;
    }

    /*  */
    section.hero .step-by-step {
        font-size: 16px;
    }

    section.hero .step-by-step .title {
        margin-bottom: 24px;
    }

    section.hero .step-by-step .steps > div {
        align-items: center;
    }

    section.hero .step-by-step .steps > div:nth-child(n+2) {
        margin-top: 24px;
    }

    /*  */
    section.hero .button.cta a {
        width: 100%;
    }
}


@media screen and (max-width:991px) {
    section.hero .video {
        height: 320px;
    }
}

@media screen and (max-width:767px) {
    section.hero .video {
        height: 280px;
    }

    section.hero .introduction .subtitle {
        margin-bottom: 6px;
    }
}

@media screen and (max-width:575px) {
    section.hero .video {
        height: 200px;
    }

    section.hero .video .icon-play {
        top: calc(50% - 37.5px);
        left: calc(50% - 37.5px);
        height: 75px;
        width: 75px;
    }
}




/*-- bottom bar  --*/

section.bottom-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 10000;
}

section.bottom-bar.closed {
    height: 0;
    overflow: hidden;
    opacity: 0;
}



/*--  pop-ups  --*/
#push-notifications-pop-up,
#cookie-policy-pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 10000;
}

body:not(.push-notifications-pop-up) #push-notifications-pop-up,
body:not(.cookie-policy-pop-up) #cookie-policy-pop-up {
    height: 0;
    opacity: 0;
    visibility: hidden;
}



/*--  Cookie Policy  --*/
#cookie-policy-pop-up.closed {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

#cookie-policy-pop-up>div {
    padding: 2rem 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--neutral-color);
    z-index: 4;
}

#cookie-policy-pop-up .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookie-policy-pop-up .left {
    display: flex;
    align-items: center;
    font-size: 0.875em;
    line-height: 145%;
    color: var(--md-contrast-color--medium);
    gap: 0 24px;
}

#cookie-policy-pop-up .left .content {
    max-width: 456px;
}

#cookie-policy-pop-up .left strong {
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--high-contrast-color);
}

#cookie-policy-pop-up .icon {
    width: 48px;
    flex: 0 0 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;
    background: var(--neutral-color--4);
}

#cookie-policy-pop-up .icon img {
    display: block;
    height: 32px;
    width: 32px;
}

#cookie-policy-pop-up p:not(:last-child) {
    margin-bottom: 4px;
}

#cookie-policy-pop-up .right {
    display: flex;
    gap: 0 32px;
}

#cookie-policy-pop-up .right>div {
    display: flex;
    align-items: center;
    height: 48px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

#cookie-policy-pop-up .right>div.cancel {
    color: var(--button-submit-color);
    background: var(--neutral-color);
    padding: 0 24px;
}

#cookie-policy-pop-up .right>.cancel:hover {
    color: var(--button-submit-color--hover);
}

#cookie-policy-pop-up .right>div.submit {
    background: var(--button-submit-color);
    padding: 0 20px;
    color: var(--neutral-color);
}

#cookie-policy-pop-up .right>div.submit:hover {
    background: var(--button-submit-color--hover);
}


@media screen and (min-width: 992px) {
    #cookie-policy-pop-up .right>div span.responsiveness {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #cookie-policy-pop-up>div {
        border-radius: 24px 24px 0 0;
    }

    #cookie-policy-pop-up .wrapper {
        display: block;
    }

    #cookie-policy-pop-up .icon {
        display: none;
    }

    #cookie-policy-pop-up .left .content {
        max-width: unset;
    }

    #cookie-policy-pop-up p:not(:last-child) {
        margin-bottom: 8px;
    }

    #cookie-policy-pop-up .right {
        gap: 8px;
        padding-top: 18px;
        flex-direction: row-reverse;
    }

    #cookie-policy-pop-up .right>div {
        flex: 1;
        padding: 0;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
    }

    #cookie-policy-pop-up .right>div.cancel {
        color: var(--button-submit-color--hover);
    }

    #cookie-policy-pop-up .right>div span:not(.responsiveness) {
        display: none;
    }
}



/*--  Push Notification  --*/
#push-notifications-pop-up>div {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
}

#push-notifications-pop-up.closed {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

#push-notifications-pop-up .wrapper {
    padding: 2rem;
    width: fit-content;
    background: var(--neutral-color);
    z-index: 4;
}

#push-notifications-pop-up .content {
    font-size: 0.875em;
    line-height: 145%;
    color: var(--md-contrast-color--medium);

    max-width: 456px;
}

#push-notifications-pop-up .content strong {
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--high-contrast-color);
}

#push-notifications-pop-up p:not(:last-child) {
    margin-bottom: 4px;
}

#push-notifications-pop-up .right {
    display: flex;
    gap: 8px;
    padding-top: 32px;
}

#push-notifications-pop-up .right>div {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

#push-notifications-pop-up .right>div.cancel {
    color: var(--button-submit-color);
    background: var(--neutral-color);
    padding: 0 24px;
}

#push-notifications-pop-up .right>.cancel:hover {
    color: var(--button-submit-color--hover);
}

#push-notifications-pop-up .right>div.submit {
    background: var(--button-submit-color);
    padding: 0 20px;
    color: var(--neutral-color);
}

#push-notifications-pop-up .right>div.submit:hover {
    background: var(--button-submit-color--hover);
}


@media screen and (min-width: 992px) {
    #push-notifications-pop-up .right>div span.responsiveness {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #push-notifications-pop-up>div {
        top: unset;
        bottom: 0;
        background: var(--neutral-color);
        z-index: 4;
        border-radius: 24px 24px 0px 0px;
    }

    #push-notifications-pop-up .wrapper {
        width: 100%;
        background: transparent;
        padding: 2rem 0;
    }

    #push-notifications-pop-up p:not(:last-child) {
        margin-bottom: 8px;
    }

    #push-notifications-pop-up .content {
        max-width: unset;
    }

    #push-notifications-pop-up .right {
        padding-top: 18px;
        flex-direction: row-reverse;
    }

    #push-notifications-pop-up .right>div {
        border-radius: 8px;
    }

    #push-notifications-pop-up .right>div span:not(.responsiveness) {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    #push-notifications-pop-up .right>div {
        flex: unset;
    }

    #push-notifications-pop-up .right>div.submit {
        flex: 1;
    }
}



/*--  pulse  --*/

section.pulse {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    padding: 0;
    margin: 0;
    z-index: 10000;
}

section.pulse div.pulse {
    position: relative;
    display: flex;
    gap: 8px;
    padding: 16px;
    border-radius: 80px;
    background: #FFF;
    box-shadow: 0px -64px 128px -40px rgba(13, 51, 48, 0.15);
}

section.pulse div.pulse:not(:last-child) {
    margin-bottom: 8px;
}

section.pulse div.pulse .icon {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 40px;
    width: 40px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(234, 6, 10, 0.05) !important;
}

section.pulse div.pulse .icon img {
    display: block;
    height: 20px;
    width: 20px;
    max-height: 100%;
    max-width: 100%;
}

section.pulse div.pulse .content {
    width: 200px;
}

section.pulse div.pulse .content > * {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 145%;
}


@media screen and (max-width:991px) {
    section.pulse {
        left: calc(50% - 141px);
        bottom: 1.5rem;
    }

    section.pulse div.pulse {
        padding: 16px 12px;
        align-items: center;
    }

    section.pulse div.pulse .content {
        width: 180px;
    }
}
