* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    color: #17233d;
    background: #fff;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

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

.header{
    border-bottom:1px solid #ececec;
    background:#fff;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;          /* controla a altura da barra */

    padding:0;            /* remove o espaço acima e abaixo */
}

.logo{
    height:88px;          /* ainda fica bem destacada */
    width:auto;
}

nav {
    display: flex;
    gap: 34px;
}

nav a {
    text-decoration: none;
    color: #17233d;
    font-weight: 500;
}

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

.btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-green {
    background: #6b9145;
    color: #fff;
}

.btn-dark {
    display: inline-block;
    margin-top: 28px;
    background: #17233d;
    color: #fff;
}

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

.hero {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

h1 {
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero p {
    font-size: 15px;
    color: #505a6b;
    margin-bottom: 22px;
}

.check {
    padding-left: 22px;
    line-height: 2;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
}

/* ================= CREDENCIAIS ================= */

.cred {
    background: #17233d;
    color: #fff;
    padding: 28px 0;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.cred strong {
    display: block;
}

.cred span {
    color: #d8dce6;
    font-size: 14px;
}

/* ================= SEÇÕES ================= */

.section {
    padding: 50px 0;
}

.gray {
    background: #f6f8fb;
}

.eyebrow {
    color: #6b9145;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

h2 {
    font-size: 42px;
    margin: 12px 0 36px;
}

/* ================= CARDS ================= */

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

.card {
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 28px;
    transition: .25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

/* ================= PROCESSO ================= */

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.steps::before {
    content: "";
    position: absolute;

    top: 28px;

    left: 7%;
    right: 7%;

    height: 3px;

    background: #cfdab9;

    z-index: 0;
}

.step {
    position: relative;
    z-index: 2;
}

.ball {
    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #6b9145;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;

    margin: 0 auto 18px;

    border: 6px solid #f6f8fb;

    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

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

footer {
    background: #111a2d;
    color: #fff;
    padding:1px 0 1px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

@media (max-width:900px){

    nav{
        display:none;
    }

    .hero-grid,
    .cred-grid,
    .cards,
    .steps,
    .footer{
        display:grid;
        grid-template-columns:1fr;
    }

    h1{
        font-size:22px;
    }

    .steps::before{
        display:none;
    }

}




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

footer{
    background:#111a2d;
    color:#fff;
}

.footer{

    display:grid;
    grid-template-columns:220px 1fr;
    gap:60px;
    align-items:center;

    gap:5px;

    padding:10px 0;
}

.footer-logo{

    flex:0 0 auto;
}

.logo-footer{
    width:250px;
    display:block;
}

.footer-info{
    max-width:700px;
}

.footer-info h3{

    font-size:26px;
    margin-bottom:10px;
}

.footer-info p{

    color:#d8dce6;
    margin:8px 0;
    line-height:1.5;
    font-size:17px;
}

.footer-contato{
    display:flex;
    flex-wrap:nowrap;
    gap:24px;
    align-items:center;
    margin-top:22px;
}

.footer-contato a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
}

.footer-contato a:hover{
    color:#7A9C45;
}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding:18px;

    text-align:center;

    font-size:14px;

    color:#9aa4ba;
}


.hero-info{

    margin-top:18px;

    font-size:15px;

    color:#6b9145;

    font-weight:600;
}