/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #080808;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   HEADER
========================================= */

.header {
    height: 80px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100;

    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo img {
    width: 145px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 13px;
    color: #aaa;

    transition: .3s;
}

.nav a:hover {
    color: #fff;
}

.header-btn {
    padding: 11px 21px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;

    font-size: 12px;

    transition: .3s;
}

.header-btn:hover {
    background: #fff;
    color: #000;
}


/* =========================================
   FAIXA
========================================= */

.faixa {
    width: 100%;
    height: 3px;
    background: #fc5404;

    position: fixed;
    top: 80px;
    left: 0;

    z-index: 99;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    padding: 90px 7% 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255, 255, 255, .07),
            transparent 35%
        ),
        #080808;
}

.hero-content {
    max-width: 680px;

    position: relative;
    z-index: 2;
}

.tag {
    display: inline-block;

    margin-bottom: 25px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #aaa;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 86px);

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 700;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffffff,
        #777
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 590px;

    color: #999;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 40px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;
}

.btn-primary {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 16px 23px;

    background: #fff;

    color: #000;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;

    transition: .3s;
}

.btn-primary span {
    font-size: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 16px 23px;

    border: 1px solid #333;

    color: #aaa;

    font-size: 13px;

    border-radius: 4px;

    transition: .3s;
}

.btn-secondary:hover {
    border-color: #777;

    color: #fff;
}


/* =========================================
   HERO INFO
========================================= */

.hero-info {
    margin-top: 65px;

    display: flex;

    gap: 55px;
}

.hero-info div {
    display: flex;

    flex-direction: column;
}

.hero-info strong {
    font-size: 24px;
}

.hero-info small {
    color: #777;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================
   MOCKUP
========================================= */

.hero-visual {
    width: 48%;

    max-width: 650px;

    position: relative;
}

.glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    filter: blur(100px);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.browser {
    position: relative;

    z-index: 2;

    width: 100%;

    border-radius: 10px;

    overflow: hidden;

    background: #111;

    border: 1px solid #292929;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .7),
        0 0 80px rgba(255, 255, 255, .04);

    transform:
        perspective(1200px)
        rotateY(-5deg);
}

.browser-top {
    height: 42px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 0 15px;

    background: #151515;

    border-bottom: 1px solid #242424;
}

.browser-dots {
    display: flex;

    gap: 6px;
}

.browser-dots i {
    width: 7px;
    height: 7px;

    background: #555;

    border-radius: 50%;
}

.browser-url {
    flex: 1;

    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: #0d0d0d;

    color: #555;

    font-size: 9px;
}

.browser-screen {
    min-height: 420px;

    background:
        linear-gradient(
            135deg,
            #191919,
            #080808
        );

    padding: 25px 35px;
}

.mock-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #fff;

    font-size: 12px;

    font-weight: 600;
}

.mock-header div {
    display: flex;

    gap: 18px;
}

.mock-header small {
    color: #666;

    font-size: 8px;
}

.mock-content {
    max-width: 420px;

    margin-top: 80px;
}

.mock-content > span {
    font-size: 8px;

    letter-spacing: 2px;

    color: #777;
}

.mock-content h2 {
    margin-top: 15px;

    font-size: 42px;

    line-height: 1.05;

    letter-spacing: -2px;
}

.mock-content p {
    margin-top: 15px;

    color: #777;

    font-size: 11px;
}

.mock-content button {
    margin-top: 25px;

    padding: 11px 18px;

    background: #fff;

    border: none;

    font-family: inherit;

    font-size: 9px;

    font-weight: 600;
}


/* =========================================
   TRUST
========================================= */

.trust {
    padding: 35px 7%;

    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;

    text-align: center;

    background: #0b0b0b;
}

.trust p {
    color: #555;

    font-size: 11px;

    letter-spacing: 2px;
}

.trust strong {
    color: #fff;
}


/* =========================================
   SECTION TITLE
========================================= */

.section-title {
    max-width: 700px;

    margin-bottom: 70px;
}

.section-title > span {
    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.section-title h2 {
    margin-top: 18px;

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.section-title h2 strong {
    color: #777;
}

.section-title p {
    margin-top: 20px;

    color: #777;

    line-height: 1.7;
}


/* =========================================
   BENEFITS
========================================= */

.benefits {
    padding: 130px 7%;
}

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: #252525;

    border: 1px solid #252525;
}

.card {
    min-height: 280px;

    padding: 35px;

    background: #0c0c0c;

    position: relative;

    transition: .3s;
}

.card:hover {
    background: #111;
}

.card-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #333;

    font-size: 11px;
}

.icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #333;

    color: #fff;

    margin-bottom: 35px;
}

.card h3 {
    font-size: 18px;

    margin-bottom: 13px;
}

.card p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 1000px) {

    .nav {
        display: none;
    }

    .hero {
        flex-direction: column;

        align-items: flex-start;

        padding-top: 140px;
    }

    .hero-visual {
        width: 100%;

        max-width: 700px;

        margin: auto;
    }

    .cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .exemplos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .header {
        padding: 0 20px;
    }

    .header-btn {
        padding: 9px 15px;

        font-size: 10px;
    }

    .logo img {
        width: 120px;
    }

    .hero {
        padding: 130px 22px 80px;

        gap: 60px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;

        text-align: center;
    }

    .hero-info {
        gap: 25px;
    }

    .hero-visual {
        width: 100%;
    }

    .browser-screen {
        min-height: 320px;

        padding: 20px;
    }

    .mock-header div {
        display: none;
    }

    .mock-content {
        margin-top: 55px;
    }

    .mock-content h2 {
        font-size: 30px;
    }

    .benefits {
        padding: 90px 22px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 40px 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #1c1c1c;

    background: #080808;
}

.footer-logo img {
    width: 120px;
}

footer p {
    color: #444;

    font-size: 10px;
}


@media (max-width: 600px) {

    footer {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }
}


/* =========================================
   EXEMPLOS
========================================= */

.exemplos {
    min-height: 100vh;

    padding: 90px 7% 80px;

    background: #090909;

    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}

.preview-content img {
    width: 100%;
    height: auto;

    display: block;

    border: none;
    border-radius: 0;
}

.exemplos-title {
    max-width: 700px;

    margin-bottom: 10px;
}

.exemplos-title > span {
    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.exemplos-title h2 {
    margin-top: 18px;

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.exemplos-title h2 strong {
    color: #777;
}

.exemplos-title p {
    max-width: 600px;

    margin-top: 20px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.exemplos-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.exemplo-card {
    display: block;

    background: #0d0d0d;

    border: 1px solid #222;

    overflow: hidden;

    transition: .4s;

    position: relative;
}

.exemplo-card:hover {
    border-color: #444;

    transform: translateY(-5px);
}


/* =========================================
   PREVIEW
========================================= */

.exemplo-preview {
    min-height: 390px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 60%,
            rgba(255,255,255,.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #1b1b1b,
            #080808
        );

    padding: 20px;
}


/* =========================================
   VARIAÇÕES DOS PREVIEWS
========================================= */

.exemplo-preview.pizzaria {
    background:
        radial-gradient(
            circle at 70% 60%,
            rgba(255,255,255,.09),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #1c1c1c,
            #090909
        );
}

.exemplo-preview.bolo {
    background:
        radial-gradient(
            circle at 30% 60%,
            rgba(255,255,255,.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #1a1a1a,
            #080808
        );
}

.exemplo-preview.construtora {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(255,255,255,.07),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171717,
            #070707
        );
}


/* =========================================
   PREVIEW TOPO
========================================= */

.preview-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #aaa;

    font-size: 8px;

    letter-spacing: 2px;
}

.preview-dots {
    display: flex;

    gap: 5px;
}

.preview-dots i {
    width: 5px;
    height: 5px;

    background: #555;

    border-radius: 50%;
}


/* =========================================
   PREVIEW CONTENT
========================================= */

.preview-content {
    width: calc(100% + 40px);
    max-width: none;

    margin-top: 5px;
    margin-left: -20px;
}

.preview-content small {
    color: #666;

    font-size: 8px;

    letter-spacing: 2px;
}

.preview-content h3 {
    margin-top: 14px;

    max-width: 380px;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.preview-content p {
    max-width: 330px;

    margin-top: 18px;

    color: #777;

    font-size: 11px;

    line-height: 1.7;
}

.preview-content button {
    margin-top: 25px;

    padding: 11px 17px;

    background: #fff;

    color: #000;

    border: none;

    font-family: inherit;

    font-size: 9px;

    font-weight: 600;
}


/* =========================================
   CARD INFO
========================================= */

.exemplo-info {
    min-height: 85px;

    padding: 20px 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #202020;
}

.exemplo-info div {
    display: flex;

    align-items: center;

    gap: 18px;
}

.exemplo-info div > span {
    color: #444;

    font-size: 10px;
}

.exemplo-info h3 {
    font-size: 14px;

    font-weight: 500;
}

.exemplo-arrow {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #292929;

    color: #777;

    font-size: 16px;

    transition: .3s;
}

.exemplo-card:hover .exemplo-arrow {
    background: #fff;

    border-color: #fff;

    color: #000;
}


/* =========================================
   RESPONSIVO - EXEMPLOS
========================================= */

@media (max-width: 800px) {

    .exemplos {
        padding: 100px 22px;
    }

    .exemplos-grid {
        grid-template-columns: 1fr;
    }

    .exemplo-preview {
        min-height: 350px;
    }

}


@media (max-width: 600px) {

    .exemplo-preview {
        min-height: 330px;

        padding: 18px;
    }

    .preview-content {
        margin-top: 65px;
    }

    .preview-content h3 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }

    .exemplo-info {
        padding: 18px 20px;
    }

}