:root {
    --color-dark: #151b24;
    --color-text: #111827;
    --color-muted: #5f6b7a;
    --color-soft: #f3f6fa;
    --color-border: #dde3ea;
    --color-green: #00f26d;
    --color-green-dark: #00c957;
    --color-white: #ffffff;

    --container: 1280px;
    --radius: 10px;
    --shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-width: 350px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    min-width: 350px;
    overflow-x: auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

/* Topbar */

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 72px;
    z-index: 50;
    background: rgba(21, 27, 36, .96);
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-white);
}

.brand span {
    color: var(--color-green);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: .2s ease;
}

.btn-small {
    min-height: 28px;
    padding-inline: 14px;
    font-size: 11px;
}

.btn-primary {
    background: var(--color-green);
    color: #07120c;
}

.btn-primary:hover {
    background: var(--color-green-dark);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-text);
}

.btn-light:hover {
    transform: translateY(-1px);
}

/* Hero */

.hero {
    position: relative;
    height: 784px;
    width: 100%;
    padding-top: 48px;
    overflow: visible;
    margin-top: 24px;
    margin-bottom: 30px;
}

.hero-bg-green {
    position: absolute;
    top: 48px;
    left: 0;
    width: 50%;
    height: calc(100% - 48px);
    background: var(--color-green);
}

.hero-inner {
    position: relative;
    min-height: 492px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-card {
    position: relative;
    z-index: 2;
    width: 780px;
    margin-top: 250px;
    padding: 50px 56px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card h1 {
    margin: 0 0 22px;
    font-size: clamp(32px, 4.5vw, 42px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.2px;
}

.hero-card strong {
    font-weight: 800;
}

.hero-image {
    position: absolute;
    right: -180px;
    top: 0;
    height: 100%;
}

.hero-image img {
    width: auto;
    height: 736px;
    object-fit: cover;
}

/* Sections */

.section {
    padding: 88px 0;
}

.section-title {
    max-width: 720px;
    margin: 0 auto 86px;
    text-align: center;
}

.section-title h2,
.app-content h2,
.education h2,
.faq-intro h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -1px;
}

.section-title strong,
.app-content strong,
.faq-intro strong {
    font-weight: 800;
}

.section-title p,
.app-content p,
.education p,
.faq-intro p {
    margin: 0;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.75;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.info-card {
    min-height: 235px;
    padding: 56px 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    margin-bottom: 32px;
}

.info-card i {
    display: block;
    margin-bottom: 48px;
    font-size: 48px;
    color: var(--color-green);
}

.info-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
}

.info-card p {
    margin: 0;
    color: #243041;
    font-size: 18px;
    line-height: 1.75;
}

/* App section */

.app-section {
    background: var(--color-soft);
    padding: 115px 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.app-image img {
    width:628px;
    height:601px;
    border-radius: 8px;
}

.app-content {
    max-width: 520px;
}

.store-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.store-links img {
    height: 42px;
    width: auto;
}

/* Education */

.education {
    padding: 84px 0;
    background: var(--color-green);
    text-align: center;
    padding: 128px 0;
}

.education h2 {
    font-weight: 800;
}
.education-span {
    font-weight: 300;
}

.education p {
    color: #092414;
    margin-bottom: 24px;
}

/* FAQ */

.faq-section {
    background: var(--color-soft);
    padding: 150px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid #e7edf3;
    overflow: hidden;
}

.faq-item summary {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: #64748b;
    font-size: 18px;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 18px 22px;
    color: #65758b;
    font-size: 18px;
    line-height: 1.7;
}

/* Footer */

.footer {
    padding: 70px 0 90px;
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand p {
    margin: 12px 0 60px;
    color: #d5dce6;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    color: var(--color-white);
    font-size: 32px;
    opacity: .9;
}

.social-links-span {
    display: none;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-links h3 {
    margin: 0 0 20px;
    color: var(--color-green);
    font-size: 18px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: #d5dce6;
    font-size: 18px;
}

.footer-legal {
    margin-top: 56px;
}

.footer-legal p {
    max-width: 1280px;
    margin: 0;
    color: #6f7b8d;
    font-size: 16px;
    line-height: 1.4;
}

.footer-legal a {
    color: #6f7b8d;
    text-decoration: underline;
}

.footer address {
    width: 100%;
    margin-top: 32px;
    font-style: normal;
    font-size: 12px;
    text-align: center;
    color: #d5dce6;
    line-height: 1.75;
}

/* =========================================
   URBAY - JORNADA
   ========================================= */

.journey-section{
    padding: 100px 0;
    background: #fff;
}

.journey-hero{
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}

.journey-kicker{
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--color-green);
}

.journey-title{
    font-size: clamp(42px, 6vw, 82px);
    line-height: .95;
    margin-bottom: 24px;
    font-weight: 800;
}

.journey-title span{
    color: var(--color-green);
}

.journey-description{
    max-width: 760px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: var(--muted);
}

/* =========================================
   BENEFÍCIOS
   ========================================= */

.journey-pillars{
    margin-bottom: 100px;
}

.journey-pillars h3{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.journey-pillars h3 span{
    color:var(--color-green);
}

.journey-cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.journey-card{
    padding:32px;
    border:1px solid #e5e7eb;
    border-radius:20px;
}

.journey-card i{
    font-size:36px;
    color:var(--color-green);
}

.journey-card h4{
    margin:20px 0 12px;
    font-size:24px;
}

.journey-card p{
    color:var(--muted);
    line-height:1.7;
}

/* =========================================
   PASSOS
   ========================================= */

.journey-steps{
    padding:80px;
    border-radius:24px;
    background:#f8faf8;
    margin-bottom:80px;
}

.journey-steps h3{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.journey-steps h3 span{
    color:var(--color-green);
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.step{
    text-align:center;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--color-green);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:22px;
    font-weight:700;
}

.step h4{
    margin-bottom:12px;
    font-size:22px;
}

.step p{
    color:var(--muted);
    line-height:1.6;
}

/* =========================================
   FECHAMENTO
   ========================================= */

.journey-closing{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-bottom:80px;
}

.journey-box{
    background:#edfdf3;
    border-radius:24px;
    padding:40px;
}

.journey-box h3{
    font-size:42px;
    margin-bottom:24px;
}

.journey-box h3 span{
    color:var(--color-green);
}

.journey-box ul{
    list-style:none;
}

.journey-box li{
    padding:10px 0;
    color:var(--text);
}

.journey-box li::before{
    content:"✓";
    color:var(--color-green);
    margin-right:10px;
}

.journey-message{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.journey-message i{
    font-size:48px;
    color:var(--color-green);
    margin-bottom:24px;
}

.journey-message h3{
    font-size:48px;
    line-height:1.1;
    margin-bottom:20px;
}

.journey-message span{
    color:var(--color-green);
}

.journey-message p{
    color:var(--muted);
    font-size:20px;
}

/* =========================================
   CTA
   ========================================= */

.journey-cta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}


/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width:1200px){

    .journey-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .journey-section{
        padding:60px 0;
    }

    .journey-cards,
    .steps-grid,
    .journey-closing{
        grid-template-columns:1fr;
    }

    .journey-steps{
        padding:40px 24px;
    }

    .journey-message h3,
    .journey-box h3{
        font-size:32px;
    }

    .journey-description{
        font-size:18px;
    }

    .journey-cta{
        flex-direction:column;
        align-items:center;
    }

}

/* Responsive */

@media (max-width: 1100px) {

    .hero {
        position: relative;
        height: 850px;
        width: 100%;
        padding-top: 48px;
        overflow: visible;
        margin-top: 24px;
        margin-bottom: 30px;
    }

    .hero-bg-green {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 48px);
        background: var(--color-green);
    }

    .hero-inner {
        position: absolute;
        width: 100%;
        min-height: 492px;
        top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        position: absolute;
        z-index: 2;
        width: 780px;
        margin-top: 50px;
        padding: 50px 56px;
        background: var(--color-white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .hero-card h1 {
        margin: 0 0 22px;
        font-size: clamp(32px, 4.5vw, 42px);
        line-height: 1.18;
        font-weight: 400;
        letter-spacing: -1.2px;
    }

    .hero-image {
        position: absolute;
        right: auto;
        top: 380px;
        height: 100%;
        border-radius: var(--radius);
    }

    .hero-image img {
        width: auto;
        height: 500px;
        object-fit: cover;
        border-radius: var(--radius);
    }

}

@media (max-width: 900px) {

    .hero {
        position: relative;
        height: 780px;
        width: 100%;
        padding-top: 48px;
        overflow: visible;
        margin-top: 24px;
        margin-bottom: 30px;
    }


    .hero-bg-green {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(80%);
        background: var(--color-green);
    }

    .hero-inner {
        position: absolute;
        width: 100%;
        min-height: 492px;
        top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        position: absolute;
        z-index: 2;
        width: 500px;
        margin-top: 50px;
        padding: 50px 56px;
        background: var(--color-white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .hero-card h1 {
        margin: 0 0 22px;
        font-size: clamp(28px, 3.5vw, 42px);
        line-height: 1.18;
        font-weight: 400;
        letter-spacing: -1.2px;
    }

    .hero-image {
        position: absolute;
        right: auto;
        top: 380px;
        height: 100%;
        border-radius: var(--radius);
    }

    .hero-image img {
        width: auto;
        width: 500px;
        height: auto;
        object-fit: cover;
        border-radius: var(--radius);
    }


    .cards-grid,
    .split,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .split {
        gap: 42px;
    }

    .app-content {
        max-width: none;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 560px) {
    .topbar {
        height: 56px;
    }

    .topbar .btn {
        display: inline-block;
        font-size: 13px;
        padding-top: 10px;
    }

    .brand {
        font-size: 22px;
    }

    .section {
        padding: 64px 0;
    }


    .hero {
        position: relative;
        height: 620px;
        width: 100%;
        padding-top: 48px;
        overflow: visible;
        margin-top: 24px;
        margin-bottom: 30px;
    }


    .hero-bg-green {
        position: relative;
        top: -25px;
        left: 0;
        width: 100%;
        height: calc(80%);
        background: var(--color-green);
    }

    .hero-inner {
        position: absolute;
        width: 100%;
        min-height: 492px;
        top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        position: absolute;
        z-index: 2;
        width: 340px;
        margin-top: 50px;
        padding: 20px 26px;
        background: var(--color-white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .hero-card h1 {
        margin: 0 0 22px;
        font-size: clamp(28px, 3.5vw, 42px);
        line-height: 1.18;
        font-weight: 400;
        letter-spacing: -1.2px;
    }

    .hero-image {
        position: absolute;
        right: auto;
        top: 310px;
        height: 100%;
        border-radius: var(--radius);
    }

    .hero-image img {
        width: auto;
        width: 340px;
        height: auto;
        object-fit: cover;
        border-radius: var(--radius);
    }

    .info-card {
        min-height: 235px;
        padding: 32px 34px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius);
        background: var(--color-white);
        margin-bottom: 32px;
    }

    .info-card i {
        margin-bottom: 32px;
    }

    .app-image img {
        width:100%;
        height:auto;
        border-radius: 8px;
    }

    .store-links {
        flex-wrap: wrap;
    }

    .footer-links {
        flex-direction: column;
    }
}