/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        "Segoe UI",
        sans-serif;

    background: #fafafa;

    color: #2b2b2b;

    overflow-x: hidden;

}

/* ===========================
   LINKS
=========================== */

a {

    text-decoration: none;

    color: inherit;

}

/* ===========================
   NAVBAR
=========================== */

.navbar {

    position: fixed;

    top: 0;

    width: 100%;

    height: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 80px;

    backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .75);

    z-index: 999;

    box-shadow:

        0 5px 20px rgba(0, 0, 0, .05);

}

.logo {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 22px;

    font-weight: 700;

}

.logo img {

    width: 48px;

}

nav {

    display: flex;

    gap: 40px;

}

nav a {

    font-weight: 500;

    transition: .3s;

}

nav a:hover {

    color: #6F42C1;

}

/* ===========================
   LANGUAGE
=========================== */

.language {

    display: flex;

    gap: 10px;

}

.language button {

    border: none;

    background: white;

    border-radius: 40px;

    padding:

        10px 18px;

    cursor: pointer;

    transition: .3s;

}

.language button:hover {

    background: #6F42C1;

    color: white;

}

/* ===========================
   HERO
=========================== */

.hero {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 120px 8%;

    gap: 70px;

    background:

        linear-gradient(135deg,

            #6F42C1,

            #512A94);

    color: white;

}

.hero-text {

    max-width: 600px;

}

.hero h1 {

    font-size: 68px;

    line-height: 75px;

    margin-bottom: 25px;

}

.hero p {

    font-size: 22px;

    line-height: 38px;

    opacity: .9;

}

.primaryButton {

    display: inline-block;

    margin-top: 45px;

    background: white;

    color: #6F42C1;

    padding:

        18px 36px;

    border-radius: 50px;

    font-weight: 700;

    transition: .35s;

}

.primaryButton:hover {

    transform: translateY(-4px);

    box-shadow:

        0 15px 35px rgba(0, 0, 0, .25);

}

.hero-image {

    flex: 1;

    display: flex;

    justify-content: center;

}

.hero-image img {

    width: 100%;

    max-width: 600px;

}

/* ===========================
   SECTIONS
=========================== */

section {

    padding:

        110px 10%;

}

section h2 {

    font-size: 42px;

    margin-bottom: 25px;

    color: #512A94;

}

section p {

    font-size: 20px;

    line-height: 36px;

}

/* ===========================
   PRODUCTS
=========================== */

.cards {

    display: grid;

    grid-template-columns:

        repeat(auto-fit, minmax(340px, 1fr));

    gap: 35px;

    margin-top: 50px;

}

.card {

    background: white;

    border-radius: 24px;

    padding: 40px;

    transition: .35s;

    box-shadow:

        0 10px 35px rgba(0, 0, 0, .08);

}

.card:hover {

    transform:

        translateY(-10px);

    box-shadow:

        0 30px 60px rgba(0, 0, 0, .12);

}

.card h3 {

    color: #6F42C1;

    font-size: 32px;

}

.card h4 {

    margin:

        15px 0 20px;

}

.card ul {

    margin:

        25px 0;

}

.card li {

    list-style: none;

    padding: 8px 0;

}

.card a {

    display: inline-block;

    margin-top: 15px;

    color: white;

    background: #6F42C1;

    padding:

        15px 28px;

    border-radius: 40px;

}

/* ===========================
   TECH GRID
=========================== */

.techGrid {

    display: grid;

    grid-template-columns:

        repeat(auto-fit, minmax(180px, 1fr));

    gap: 25px;

    margin-top: 50px;

}

.techGrid div {

    background: white;

    padding: 28px;

    text-align: center;

    border-radius: 18px;

    font-weight: 600;

    box-shadow:

        0 8px 20px rgba(0, 0, 0, .06);

}

/* ===========================
   ADVANTAGES
=========================== */

.advantage {

    background: white;

    border-radius: 20px;

    padding: 35px;

    box-shadow:

        0 8px 20px rgba(0, 0, 0, .06);

}

/* ===========================
   CONTACT
=========================== */

#contact {

    text-align: center;

}

#contact p {

    font-size: 28px;

    font-weight: 600;

    color: #6F42C1;

}

/* ===========================
   FOOTER
=========================== */

footer {

    padding: 45px;

    background: #2F1A56;

    color: white;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

}

footer a {

    margin-left: 20px;

}

/* ===========================
   LANGUAGE
=========================== */

.en {

    display: none;

}

.language button.active {

    background: #6F42C1;

    color: white;

    font-weight: 600;

}

/* =====================================================
   MOVIXA PAGE
===================================================== */

/* HERO */

.hero h2 {

    font-size: 34px;

    font-weight: 600;

    margin: 15px 0 25px;

}

/* BOTÃO SECUNDÁRIO */

.secondaryButton {

    display: inline-block;

    padding: 18px 36px;

    border-radius: 50px;

    border: 2px solid white;

    color: white;

    transition: .35s;

}

.secondaryButton:hover {

    background: white;

    color: #6F42C1;

}

/* NÚMEROS */

.numbers {

    background: #f5f5f7;

}

.numbers .card {

    text-align: center;

}

.numbers h3 {

    font-size: 42px;

    color: #6F42C1;

    margin-bottom: 10px;

}

/* FEATURES */

#features {

    background: white;

}

#features .card {

    text-align: center;

}

#features h3 {

    font-size: 24px;

    margin-bottom: 15px;

}

#features p {

    font-size: 17px;

    line-height: 28px;

}

/* VANTAGENS */

.advantages {

    background: #fafafa;

}

.advantage {

    text-align: center;

}

.advantage h3 {

    font-size: 48px;

    margin-bottom: 20px;

}

.advantage h4 {

    font-size: 24px;

    color: #6F42C1;

    margin-bottom: 15px;

}

/* SCREENSHOTS */

#screens {

    background: white;

}

#screens img {

    width: 100%;

    border-radius: 18px;

    transition: .4s;

}

#screens img:hover {

    transform: scale(1.03);

}

/* HOW IT WORKS */

#how {

    background: #fafafa;

}

#how .card {

    text-align: center;

}

#how h1 {

    font-size: 60px;

    margin-bottom: 25px;

}

/* FAQ */

#faq {

    background: white;

}

#faq .card {

    text-align: left;

}

#faq h3 {

    color: #6F42C1;

    margin-bottom: 15px;

}

/* DOWNLOAD */

#download {

    background:

        linear-gradient(135deg,

            #6F42C1,

            #4D2B8A);

    color: white;

    text-align: center;

}

#download h2 {

    color: white;

}

#download .primaryButton {

    background: white;

    color: #6F42C1;

}

#download .primaryButton:hover {

    transform: translateY(-4px);

}

/* SUPPORT */

#support {

    background: #fafafa;

    text-align: center;

}

#support p {

    font-size: 22px;

    color: #6F42C1;

    font-weight: 600;

}

/* ANIMAÇÃO DOS CARDS */

.card {

    transition:

        transform .35s,

        box-shadow .35s;

}

.card:hover {

    transform: translateY(-10px);

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:980px) {

    .hero {

        flex-direction: column;

        text-align: center;

    }

    .hero h1 {

        font-size: 48px;

        line-height: 58px;

    }

    .navbar {

        padding: 0 25px;

    }

    nav {

        display: none;

    }

    section {

        padding: 80px 8%;

    }

    .hero-image {

        margin-top: 40px;

    }

    .hero-image img {

        max-width: 340px;

    }

    .cards {

        grid-template-columns: 1fr;

    }

    .hero h2 {

        font-size: 28px;

    }

    .primaryButton,

    .secondaryButton {

        width: 100%;

        text-align: center;

    }



}