/* ================= HERO ================= */

.hero{

    padding:50px 0 30px;

    background:linear-gradient(180deg,#ffffff,#f5fff8);

}

.hero h1{

    font-size:42px;

    font-weight:800;

    color:#111827;

    margin-bottom:10px;

}

.hero p{

    font-size:17px;

    color:#6b7280;

}

/* ================= APPS ================= */

.apps-section{

    padding:60px 0;

}

.section-header{

    margin-bottom:35px;

}

.section-header h2,
.section-header h1{

    font-size:32px;

    color:#111827;

    margin-bottom:8px;

}

.section-header p{

    color:#6b7280;

}

/* GRID */

.apps-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:28px;

}

/* CARD */

.app-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.3s;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.app-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.app-card img{

    display:block;

    margin:0 auto 20px;

    width:95px;

    height:95px;

    object-fit:cover;

    border-radius:22px;

}

.app-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:8px;

}

.version{

    display:inline-block;

    margin-bottom:15px;

    padding:6px 14px;

    background:#ecfdf5;

    color:#16a34a;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

}

.app-card p{

    color:#6b7280;

    line-height:1.6;

    margin-bottom:25px;

}

/* BOTÃO */

.app-card a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:48px;

    border-radius:14px;

    background:#22c55e;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.app-card a:hover{

    background:#16a34a;

}

/* CARD EM BREVE */

.disabled{

    opacity:.75;

}

.coming{

    width:95px;

    height:95px;

    margin:0 auto 20px;

    border-radius:22px;

    background:#f3f4f6;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:#9ca3af;

    font-weight:700;

}

/* ================= COMO FUNCIONA ================= */

.how-it-works{

    padding:80px 0;

    background:#f8fafc;

}

.steps{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:40px;

}

.step{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.number{

    width:60px;

    height:60px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

}

.step h3{

    margin-bottom:12px;

    color:#111827;

}

.step p{

    color:#6b7280;

    line-height:1.6;

}

/* ================= FOOTER ================= */

footer{

    background:#ffffff;

    border-top:1px solid #e5e7eb;

    margin-top:80px;

}

.footer-content{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    padding:60px 0;

}

.footer-brand h2{

    font-size:30px;

    color:#111827;

}

.footer-brand span{

    color:#22c55e;

}

.footer-brand p{

    margin-top:15px;

    color:#6b7280;

    max-width:420px;

    line-height:1.8;

}

.footer-links h3{

    margin-bottom:18px;

    color:#111827;

}

.footer-links a{

    display:block;

    text-decoration:none;

    color:#6b7280;

    margin-bottom:12px;

    transition:.25s;

}

.footer-links a:hover{

    color:#22c55e;

}

.footer-bottom{

    border-top:1px solid #e5e7eb;

    padding:20px;

    text-align:center;

    color:#9ca3af;

    font-size:14px;

}

/* ================= RESPONSIVO ================= */

@media(max-width:768px){

    .hero{

        text-align:center;

        padding:40px 0;

    }

    .hero h1{

        font-size:34px;

    }

    .apps-grid{

        grid-template-columns:1fr;

    }

    .steps{

        grid-template-columns:1fr;

    }

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand p{

        max-width:100%;

    }

}