/* =========================================================
   PARTIU
   FRONT-END
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #17202a;

    background: #f7f8fa;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   HEADER
========================================================= */

.topbar {

    height: 72px;

    background: #ffffff;

    border-bottom:
        1px solid #e8ebef;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 max(
            24px,
            calc((100vw - 1120px) / 2)
        );

    position: sticky;

    top: 0;

    z-index: 100;
}


.brand {

    color: #151a20;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.brand span {

    color: #3568f2;
}


.top-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   BOTÕES
========================================================= */

.ghost-btn,
.primary-btn {

    border: 0;

    font: inherit;

    display: inline-flex;

    align-items: center;

    justify-content: center;
}


.ghost-btn {

    background: transparent;

    padding: 10px 14px;

    color: #4c5661;

    font-weight: 600;
}


.ghost-btn:hover {

    color: #3568f2;
}


.primary-btn {

    background: #3568f2;

    color: #ffffff;

    padding: 13px 20px;

    border-radius: 10px;

    font-weight: 700;

    box-shadow:
        0 4px 12px #3568f226;

    transition: .15s ease;
}


.primary-btn:hover {

    background: #2859df;

    transform: translateY(-1px);
}


.primary-btn.small {

    padding: 10px 15px;

    border-radius: 9px;
}


/* =========================================================
   HOME
========================================================= */

.home-screen {

    max-width: 1120px;

    margin: 0 auto;

    padding:
        58px 24px 90px;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    max-width: 700px;

    margin:
        40px auto 38px;

    text-align: center;
}


.eyebrow {

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 1.4px;

    font-weight: 800;

    color: #3568f2;

    margin-bottom: 9px;
}


.hero h1 {

    font-size: 44px;

    line-height: 1.08;

    letter-spacing: -1.8px;

    margin:
        0 0 14px;
}


.hero p {

    color: #69737e;

    margin: 0;

    font-size: 16px;
}


/* =========================================================
   ATIVIDADES
========================================================= */

.activity-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    max-width: 820px;

    margin: auto;
}


.activity-card {

    position: relative;

    text-align: left;

    display: flex;

    align-items: center;

    gap: 16px;

    background: #ffffff;

    border:
        1px solid #e4e8ed;

    border-radius: 15px;

    padding: 20px;

    min-height: 106px;

    transition: .18s ease;

    box-shadow:
        0 2px 8px #18202b06;
}


.activity-card:hover {

    transform: translateY(-2px);

    border-color: #b9c8f7;

    box-shadow:
        0 10px 26px #18202b0c;
}


.activity-icon {

    width: 46px;

    height: 46px;

    flex: 0 0 46px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #f0f4ff;

    color: #3568f2;

    font-size: 18px;
}


.activity-content {

    flex: 1;
}


.activity-content strong,
.activity-content small {

    display: block;
}


.activity-content strong {

    font-size: 16px;

    margin-bottom: 4px;
}


.activity-content small {

    font-size: 13px;

    color: #78828d;
}


.arrow {

    margin-left: auto;

    color: #9aa3ad;
}


.coming {

    margin-left: auto;

    font-size: 11px;

    font-weight: 700;

    color: #8b949e;

    background: #f2f3f5;

    padding: 5px 8px;

    border-radius: 20px;

    white-space: nowrap;
}


/* =========================================================
   CONFIANÇA
========================================================= */

.trust-row {

    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 30px;

    color: #8a939d;

    font-size: 12px;
}


.trust-row span {

    display: flex;

    gap: 7px;

    align-items: center;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    border-top:
        1px solid #e8ebef;

    background: #ffffff;

    padding:
        24px;

    text-align: center;

    color: #8a939d;

    font-size: 12px;
}


.site-footer span {

    margin:
        0 5px;

    color: #c1c6cc;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 760px) {

    .topbar {

        height: 64px;

        padding:
            0 17px;
    }


    .top-actions .ghost-btn {

        display: none;
    }


    .home-screen {

        padding:
            38px 17px 70px;
    }


    .hero {

        margin:
            24px auto 30px;
    }


    .hero h1 {

        font-size: 34px;
    }


    .hero p {

        font-size: 14px;
    }


    .activity-grid {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .activity-card {

        min-height: 88px;

        padding: 16px;
    }


    .trust-row {

        flex-direction: column;

        align-items: center;

        gap: 8px;
    }

}


@media(max-width: 420px) {

    .brand {

        font-size: 22px;
    }


    .primary-btn.small {

        padding:
            9px 12px;

        font-size: 12px;
    }

}

/* =========================================================
   PÁGINAS INTERNAS
========================================================= */

.page {

    max-width: 900px;

    margin: 0 auto;

    padding:
        48px 24px 90px;
}


.back-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    color: #69737e;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 30px;
}


.back-link:hover {

    color: #3568f2;
}


.section-head {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}


.section-head h1 {

    margin:
        0 0 7px;

    font-size: 34px;

    letter-spacing: -1.2px;
}


.section-head p {

    margin: 0;

    color: #69737e;

    font-size: 14px;
}


.page-icon {

    width: 58px;

    height: 58px;

    flex: 0 0 58px;

    font-size: 22px;
}


/* =========================================================
   PRÓXIMO PASSO
========================================================= */

.next-step {

    max-width: 700px;

    background: #ffffff;

    border:
        1px solid #e4e8ed;

    border-radius: 15px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 16px;

    box-shadow:
        0 2px 8px #18202b06;
}


.next-step-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    flex: 0 0 48px;

    border-radius: 12px;

    background: #f0f4ff;

    color: #3568f2;
}


.next-step div:nth-child(2) {

    flex: 1;
}


.next-step strong,
.next-step span {

    display: block;
}


.next-step strong {

    font-size: 15px;

    margin-bottom: 4px;
}


.next-step span {

    font-size: 12px;

    color: #78828d;
}


.next-step > i {

    color: #9aa3ad;
}


/* =========================================================
   CIDADES
========================================================= */

.city-list {

    display: grid;

    gap: 10px;

    max-width: 700px;
}


.city-card {

    width: 100%;

    background: #ffffff;

    border:
        1px solid #e4e8ed;

    border-radius: 15px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    text-align: left;

    box-shadow:
        0 2px 8px #18202b06;

    transition: .18s ease;
}


.city-card:hover {

    transform: translateY(-1px);

    border-color: #b9c8f7;

    box-shadow:
        0 8px 20px #18202b0c;
}


.city-card.disabled {

    opacity: .55;

    cursor: default;
}


.place-symbol {

    width: 56px;

    height: 56px;

    flex: 0 0 56px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #eef2f8;

    color: #3568f2;

    font-size: 19px;
}


.city-card > div:nth-child(2) {

    flex: 1;
}


.city-card strong,
.city-card span {

    display: block;
}


.city-card strong {

    font-size: 15px;
}


.city-card div:nth-child(2) span {

    margin-top: 4px;

    color: #78828d;

    font-size: 12px;
}


.city-card > i {

    color: #9aa3ad;
}


/* =========================================================
   EM BREVE
========================================================= */

.coming-box {

    max-width: 700px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e4e8ed;

    border-radius: 16px;

    padding: 50px 30px;

    color: #69737e;
}


.coming-box > i {

    font-size: 28px;

    color: #3568f2;

    margin-bottom: 15px;
}


.coming-box h2 {

    margin:
        0 0 8px;

    color: #17202a;

    font-size: 20px;
}


.coming-box p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 760px) {

    .page {

        padding:
            38px 17px 70px;
    }


    .section-head {

        align-items: flex-start;
    }


    .section-head h1 {

        font-size: 29px;
    }


    .page-icon {

        width: 50px;

        height: 50px;

        flex-basis: 50px;

        font-size: 19px;
    }


    .next-step {

        padding: 15px;
    }

}