:root {
    --text: #455880;
    --title: #333758;
    --primary: #0A58DB;
    --secondary: #ffb700;
    --lightGray: #F7F9FB;
    --gray: #e3e3e3;
    --danger: #F15256;
    --deepblue: #0A083A;
    --lightBlue: #f4fbff;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: currentColor;
}

ul {
    list-style: none;
}

ul[role="list"] li {
    display: list-item;
}

li {
    display: inline-block;
}

img,
video {
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dt,
dd,
a,
span {
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    color: var(--title);
    line-height: 1.4;
    font-weight: 600;
}

p {
    color: var(--text);
}

/*================== EFEITOS =================*/
.claymorph,
.card.claymorph,
.card.claymorph:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 1);
    border: none !important;
    box-shadow:
    0px 25px 68px 0px rgba(82, 196, 255, 0.25),
    inset 0px -3px 16px 0px rgba(82, 196, 255, 0.6),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
}

.claymorph,
.claymorph:before,
.card.claymorph {
    border-radius: 26px;
}

.gridtile:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1536px;
    height: 100%;
    background-image: url('assets/gridtile.png');
    background-repeat: repeat;
    transform: translateX(-50%);
    filter: opacity(15%);
    z-index: -1;
}

.clayglass {
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        24px 36px 70px rgba(9, 147, 218, 0.36),
        inset 4px 4px 12px #FBFEFF,
        inset -26px -26px 50px rgba(92, 199, 255, 0.44);
    backdrop-filter: blur(14.5px);
}

.shadow-lg-yellow {
    box-shadow:
        0 2px 10px var(--secondary),
        0 4px 40px var(--secondary);
}

.shadow-lg-yellow:hover {
    box-shadow:
        0 8px 20px var(--secondary),
        0 12px 60px var(--secondary);
}

.gradient-sky {
    position: relative;
    background: linear-gradient(125.52deg, #52C4FF 14.95%, #d7effb 58.14%) no-repeat;
}

.gradient-sky::before {
    content: '';
    top: 0;
}

/* LAYOUT */
.container {
    margin: 0 auto;
    max-width: 1630px;
    padding: 0 6%;
}

.container.is-small {
    max-width: 1440px;
}

.col-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.4rem;
}

.col-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.4rem;
}

.col-4 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.4rem;
}

.section {
    padding: 14vmin 0;
    border-bottom: 1px solid rgba(12, 21, 46, .08);
}

.section-header {
    justify-content: space-between;
}

.section-header .section-title {
    flex: 1;
}

.section-title {
    font-size: 2rem;
}

.header {
    background: linear-gradient(125.52deg, #52C4FF 14.95%, #d7effb 58.14%) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0 65%;
    height: 130vh;
    position: relative;
}

.header * {
    color: #fff;
}

.header:before,
.header-fade {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.header:before {
    bottom: 0;
    height: 200px;
    background: #fff;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-overlay,
.header-grid-tile,
.header-fade {
    bottom: 0;
}

.header-overlay,
.gradient-sky::before {
    position: absolute;
    left: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(to right, #0A083A, transparent);
    mix-blend-mode: color-burn;
    pointer-events: none;
    display: block;
    z-index: 1;
}

.header-fade {
    height: 100%;
    background: linear-gradient(358.51deg, rgb(0, 0, 0) -80.37%, rgba(0, 0, 0, 0) 0%);
    z-index: 2;
}

.header-content {
    height: 100%;
    padding-top: 6%;
    position: relative;
    z-index: 2;
}

.header-text {
    grid-gap: .8rem;
    max-width: 600px;
}

.header-text-title {
    font-size: 4rem;
    line-height: 1.2;
}

.header-text-title span {
    background-color: rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 4px 16px;
}

.header-text-description {
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
}

.header-text-actions {
    grid-gap: .6rem;
}

.header-features {
    position: relative;
}


.header-features-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.header-features-feature {
    grid-gap: .6rem;
}

.header-features-feature img {
    max-width: 62px;
    margin-bottom: 1rem;
}

.header-features-feature .card-title {
    font-size: 1.12rem;
    max-width: 280px;
}

.feature {
    align-items: center;
    grid-gap: 4rem;
}

.cta .container {
    justify-content: space-between;
}

.cta-numbers {
    justify-content: flex-end;
}

.cta-number {
    font-size: 3rem;
}

.cta-number span {
    padding-top: .8rem;
    border-top: 1px solid #fff;
}

.footer {
    padding-bottom: 40px;
}

.footer-content,
.footer-copy {
    justify-content: space-between;
}

.footer-content {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer-copy {
    padding-top: 32px;
}

.footer-copy * {
    color: rgba(255, 255, 255, .4);
}

.footer-nav a {
    color: rgba(255, 255, 255, .8);
}


/* COMPONENTS */

.logo {
    height: auto;
}

.link {
    font-weight: 500;
    transition: opacity .3s ease;
}

.link:hover {
    opacity: .8
}

.btn {
    width: fit-content;
    height: 54px;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--gray);
    color: var(--title);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.002857em;
    transition: all .3s;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    border-color: rgb(31 34 38 / 20%);
    color: var(--primary);
    transform: scale(1.05);
}

.btn:not(.outline):hover {
    filter: brightness(120%);
}

.btn.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn.btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
}

.btn.btn-primary {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 15px -3px var(--primary), 0 4px 6px -4px var(--primary);
}

.btn.btn-secondary {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-danger {
    border-color: var(--danger);
    background-color: var(--danger);
    color: #fff;
    box-shadow: 0 10px 15px -3px var(--danger), 0 4px 6px -4px var(--danger);
}

.btn.btn-danger:hover {
    background-color: #cf0000;
    color: #fff;
}

.btn.btn-lg {
    padding: 12px 24px;
}

.card {
    background-color: #fff;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 0 25px rgb(31 34 38 / 10%), 0 5px 100px rgb(31 34 38 / 15%);
    transition: box-shadow .3s ease;
    z-index: 100;
}

.card-title {
    color: var(--title);
    font-weight: 700;
}

.card-text {
    color: var(--text);
}

.card:hover {
    box-shadow: 0 0 45px rgb(31 34 38 / 20%), 0 20px 140px rgb(31 34 38 / 15%);
}

.card-icon {
    background: var(--lightGray);
    font-size: 1.4rem;
    height: 4rem;
    width: 4rem;
    border-radius: 1.4rem;
    text-align: center;
    line-height: 4rem !important;
}

.card-link {
    /*position: absolute;*/
    bottom: 32px;
}

.card-link i {
    opacity: 0;
    transition: transform .6s ease, opacity .3s ease;
}

.card-link:hover i {
    opacity: 1;
    transform: translateX(4px);
}

.card.feature-preview {
    padding: 1.25rem;
}

.card.feature-preview > .image,
.card.feature-preview > .video {
    border-radius: 16px;
}

.video-link {
    color: var(--danger) !important;
}

.macro {
    min-height: 360px;
}

.feature.is-inverted .feature-text {
    order: 1;
}

.feature.is-inverted .feature-preview {
    order: 0;
}

.feature-title {
    max-width: 400px;
}

.gg-arrow-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px
}

.gg-arrow-right::after,
.gg-arrow-right::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    right: 3px
}

.gg-arrow-right::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 7px
}

.gg-arrow-right::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: currentColor
}

.faq-question {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--gray);
}

.faq-question:last-child {
    border: none;
}

.panel-title {
    color: var(--title);
    font-size: 1.2rem;
    line-height: 1.5;
    width: 100%;
    position: relative;
    margin: 0;
    display: block;
    cursor: pointer;
}

.panel-title:before {
    content: '+';
    display: inline-block;
    margin-right: 8px;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--primary);
    transform: translateY(2px);
    transition: transform .3s cubic-bezier(0.23, 1, 0.320, 1);
}

.panel-content {
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    transition: .4s ease;
}

.panel:checked~.panel-content {
    height: auto;
    margin-top: .8rem;
    opacity: 1;
}

.panel:checked~.panel-title:before {
    transform: translateY(2px) rotate(45deg);
}

.panel {
    display: none;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 1rem;
}

.tabs label {
    order: 1;
    display: block;
    padding: .6rem;
    margin-right: 0.2rem;
    cursor: pointer;
    color: var(--text);
    background: var(--lightGray);
    border: 1px solid var(--gray);
    border-radius: 42px;
    flex-grow: 1;
    text-align: center;
    font-weight: bold;
}

.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    margin-top: 3rem;
    background: #fff;
}

.tabs input[type=radio] {
    display: none;
}

.tabs input[type=radio]:checked+label,
.tabs label:hover {
    color: white;
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 10px 15px -3px var(--secondary), 0 4px 6px -4px var(--secondary);
    transition: all cubic-bezier(.41,0,0,1.07) 100ms;
}

.tabs input[type=radio]:checked+label+.tab {
    display: block;
}

.browser-mockup {
    border: 1px solid var(--gray);
    border-top: 2em solid #f1f1f1;
    box-shadow: 0px 22.086px 72.2816px -39.1525px rgba(0, 0, 0, 0.25);
    position: relative;
    border-radius: 12px;
}

.browser-mockup:before {
    display: block;
    position: absolute;
    content: '';
    top: -1.25em;
    left: 1em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: var(--gray);
    box-shadow: 0 0 0 2px var(--gray), 1.2rem 0 0 2px var(--gray), 2.4rem 0 0 2px var(--gray)
}

.browser-mockup>* {
    display: block;
    width: 100%;
}

.browser-mockup img {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.article {
    transition: all .3s ease;
}

.article:hover {
    object-fit: contain;
    transform: scale(1.04);
}

.article:hover h1 {
    color: var(--primary)
}

.article-title {
    font-size: 1.2rem;
}

.iphone {
    position: relative;
    margin: 1.6rem 0 2rem 0;
}

.iphone .video-wrapper {
    width: 300px;
    height: 628px;
    margin: 0 auto;
    position: relative;
}

.iphone .video-wrapper:before,
.iphone .video-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--lightGray);
}

.iphone .video-wrapper:after {
    bottom: 0;
    box-shadow: 0 0 25px rgb(31 34 38 / 5%), 0 5px 100px rgb(31 34 38 / 10%);
    border: 1px solid var(--gray);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    border-radius: 34px;
    height: 108%;
    width: 110%;
    z-index: -1;
}

.iphone .video-wrapper .mask {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.iphone .video-wrapper .mask video {
    position: relative;
    left: 0;
    top: 0;
    opacity: 1;
}

.iphone .video-wrapper .video-top {
    position: absolute;
    top: 10px;
    width: 100px;
    height: 6px;
    background: var(--gray);
    border-radius: 18px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.iphone .iphone-img {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -38%) rotate(11deg) scale(1.1);
}

.qr-code {
    padding: 1rem;
    border: 2px solid var(--primary);
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 201px;
}

.qr-code:before,
.qr-code:after {
    content: '';
    display: block;

    border: 2px solid #fff;
    position: absolute;
    z-index: 1;
}

.qr-code:before {
    top: -2px;
    bottom: -2px;
    left: 20px;
    right: 20px;
    margin: 0 auto;
}

.qr-code:after {
    width: 102%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.qr-code img,
.qr-code svg {
    max-width: 120px;
    z-index: 2;
}


/* VERSIONS MENU */

#nav-icon1 span,
#nav-icon1.open span {
    background-color: #0091ff !important;
}

.versions-menu .wrapper .item {
    background-color: #0091ff;
    color: #fff;
    border-color: rgba(0,0,0,.1);
}

.versions-menu .wrapper .item:hover,
.versions-menu .wrapper .item:active,
.versions-menu .wrapper .item:focus {
    background-color: #06c;
}


/* HELPERS */

.p-relative {
    position: relative;
}

.rounded {
    border-radius: 12px;
}

.no-border {
    border: none;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-title {
    background-color: var(--title);
}

.bg-light {
    background-color: var(--lightGray);
}

.bg-lightBlue {
    background-color: var(--lightBlue);
}

.c-primary {
    color: var(--primary);
}

.c-white {
    color: white !important;
}

.bg-green {
    background-color: #D9F6D4;
}

.c-green {
    color: #8EE37E;

}

.bg-purple {
    background-color: #DDEEFA;
}

.c-purple {
    color: #98AEF0;

}

.bg-red {
    background-color: #FFECEC;
}

.c-red {
    color: #F7A6A6;

}

.bg-yellow {
    background-color: #fef9c3;
}

.c-yellow {
    color: #D39B5C;
}

.c-text {
    color: var(--text)
}

.c-title {
    color: var(--title);
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.d-inlineBlock {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.ai-center {
    align-items: center;
}

.jc-spaceBetween {
    justify-content: space-between;
}

.jc-center {
    justify-content: center;
}

.fd-column {
    flex-direction: column;
}

.mr-small {
    margin-right: .6rem;
}

.mr-medium {
    margin-right: 1rem;
}

.mr-large {
    margin-right: 1.4rem;
}

.mt-small {
    margin-top: .6rem;
}

.mt-medium {
    margin-top: 1rem;
}

.mb-small {
    margin-bottom: .6rem;
}

.mb-medium {
    margin-bottom: 1rem;
}

.mb-large {
    margin-bottom: 1.4rem;
}

.mb-xlarge {
    margin-bottom: 3rem;
}

.my-small {
    margin-top: .6rem;
    margin-bottom: .6rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.gg-small {
    grid-gap: .6rem;
}

.gg-medium {
    grid-gap: 1rem;
}

.gg-large {
    grid-gap: 2rem;
}

.m-0 {
    margin: 0;
}

.ff-mono {
    font-family: 'Fira Code', monospace;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.hide-sm {
    display: inherit;
}

.hide-lg {
    display: none;
}

.fs-small {
    font-size: .9rem;
}

.fs-xsmall {
    font-size: .695rem;
}

.fs-normal {
    font-size: 1rem;
}

.ta-center {
    text-align: center;
}

.mw-500 {
    max-width: 500px;
}

.mw-800 {
    max-width: 800px;
}

.release {
    text-align: center;
    opacity: .8;
}

.data {
    text-align: center;
    margin-top: 16vmin;
    color: #455880;
    font-size: 1.6rem;
}

.badge.badge-success {
    color: #fff;
    background-color: #28a745;

}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 45%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    top: -6px;
    position: relative;
}

.selection-deepBlue {
    background-color: var(--deepblue);
}

/* MEDIA QUERIES */

@media screen and (max-width: 425px) {
    .btn {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .header .art {
        width: 60%;
    }
}

@media screen and (max-width: 1024px) {
    .header-overlay {
        width: 100%;
        height: 35%;
        bottom: auto;
        background-image: linear-gradient(to bottom, #0A083A, transparent);
    }
}

@media screen and (max-width: 1080px) {
    html {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .header {
        height: auto;
    }

    .header-text-title {
        font-size: 2.3rem;
    }

    .header-text-title span {
        border-radius: 4px;
        padding: 2px 8px;
    }

    .brands .reviews {
        flex-direction: column;
        grid-gap: .6rem;
    }

    .header-features-feature .card-title {
        font-size: 1.2rem;
    }

    .feature {
        grid-gap: 2rem;
    }

    .feature .feature-text,
    .feature.is-inverted .feature-text {
        order: 1;
    }

    .feature .feature-preview,
    .feature.is-inverted .feature-preview {
        order: 0;
    }

    .feature-actions {
        flex-direction: column;
    }

    .cta-numbers {
        justify-content: flex-start;
    }

    .footer-content,
    .footer-links,
    .footer-copy,
    .footer-copy-links {
        flex-direction: column;
        grid-gap: 1rem;
    }

    .footer-content,
    .footer-links,
    .footer-nav ul {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        grid-gap: 8px;
    }

    .footer-copy p,
    .footer-copy-links {
        text-align: center;
    }

    .card {
        padding: 26px;
    }

    .macro {
        min-height: 320px;
    }

    .article img {
        width: 100%;
    }

    .col-2,
    .col-3,
    .col-4 {
        grid-template-columns: 1fr;
    }

    .tabs {
        justify-content: flex-start;
    }

    .tabs .tab,
    .tabs label {
        order: initial;
    }

    .tabs .tab {
        margin-top: 1.4rem;
        margin-bottom: 1.4rem;
    }

    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
        text-align: left;
        padding-left: 1.4rem;
    }

    .hide-sm {
        display: none;
    }

    .hide-lg {
        display: inherit;
    }

    .mw-500,
    .mw-800 {
        max-width: 100%;
    }

    .card-icon {
        font-size: 1.2rem;
        width: 3.4rem;
        height: 3.4rem;
        line-height: 3.4rem;
    }
}

@media screen and (min-width:1080px) and (max-width: 1279px) {
    .card.feature-preview {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (min-width: 1440px) {
    .header .art {
        top: 2.5rem;
        width: 828px;
    }
}

@media screen and (min-width: 2519px) {
    .header .art {
        top: 6rem;
        left: 0;
        width: 52rem;
    }
}

/*================== ANIMAÇÔES =================*/
.animate__hyperfaster {
    --animate-duration: .5s;
}

.home-title span {
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    display: block;
    will-change: -webkit-text-fill-color;
    -webkit-text-fill-color: transparent;
}

.home-title span:nth-child(1) {
    animation: fade-in-text-white 2s linear 1s forwards;
}

.home-title span:nth-child(2) {
    padding: 0 1rem;
    animation: fade-in-text-white 2s linear 1.5s forwards, clay-glass .5s ease-in-out 3s forwards;
}

.home-title span::before,
.home-title span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

}

.home-title span::after {
    background-image: linear-gradient(to left, transparent 25%, rgba(255, 255, 255, 1));
    animation: a-ltr-after 2s cubic-bezier(.77, 0, .18, 1) forwards;
    transform: translateX(-101%);
    filter: blur(10px);
}

.home-title span::before {
    animation: a-ltr-before 2s cubic-bezier(.77, 0, .18, 1) forwards;
    transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after {
    animation-delay: 1s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after {
    animation-delay: 1.5s;
}

@keyframes fade-in-text-white {
    0% {
        -webkit-text-fill-color: transparent;
    }

    100% {
        -webkit-text-fill-color: white;
    }
}

@keyframes a-ltr-after {
    0% {
        transform: translateX(-100%)
    }

    75% {
        opacity: 1
    }

    100% {
        transform: translateX(101%);
        opacity: 0;
    }
}

@keyframes a-ltr-before {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(200%)
    }
}

@keyframes barberpole {
    100% {
        background-position: 100% 100%
    }
}

@keyframes textShadowLightBlue {
    100% {
        text-shadow: 4px 5px 6px #52c4ff
    }
}

@keyframes clay-glass {
    100% {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 24px 36px 70px rgba(9, 147, 218, 0.36), inset 4px 4px 12px #FBFEFF, inset -26px -26px 50px rgba(92, 199, 255, 0.44);
        backdrop-filter: blur(14.5px);
    }
}
