*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    min-height:100vh;
    background:#f4f7ff;
    color:#111827;
}

.landing-header{
    width:min(1180px, calc(100% - 36px));
    margin:24px auto 0;
    background:white;
    border-radius:24px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#111827;
    font-size:24px;
    font-weight:900;
}

.brand img{
    width:42px;
    height:42px;
}

.landing-header nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.landing-header nav a{
    text-decoration:none;
    color:#374151;
    font-weight:800;
}

.btn-login{
    background:#111827;
    color:white !important;
    padding:10px 16px;
    border-radius:999px;
}

main{
    width:min(1180px, calc(100% - 36px));
    margin:34px auto;
}

.hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
    margin-bottom:38px;
}

.hero-text,
.hero-card,
.about{
    background:white;
    border-radius:34px;
    padding:44px;
    box-shadow:0 12px 34px rgba(0,0,0,.08);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#edf2ff;
    color:#5277e8;
    padding:10px 16px;
    border-radius:999px;
    font-weight:900;
    margin-bottom:18px;
}

.hero h1{
    font-size:58px;
    line-height:1.02;
    margin-bottom:18px;
}

.hero p{
    font-size:19px;
    color:#4b5563;
    line-height:1.6;
    max-width:700px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:26px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 20px;
    border-radius:999px;
    font-weight:900;
}

.btn-primary{
    background:#7494ec;
    color:white;
}

.btn-secondary{
    background:#edf2ff;
    color:#5277e8;
}

.hero-card{
    text-align:center;
}

.hero-card img{
    width:100%;
    max-width:360px;
    margin-bottom:24px;
}

.mini-list{
    display:grid;
    gap:12px;
    text-align:left;
}

.mini-list span{
    background:#f4f7ff;
    padding:12px 14px;
    border-radius:16px;
    font-weight:800;
}

.mini-list i{
    color:#22c55e;
    margin-right:8px;
}

.features{
    margin-bottom:38px;
}

.features h2{
    font-size:38px;
    margin-bottom:20px;
}

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

.features-grid article{
    background:white;
    padding:26px;
    border-radius:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.07);
}

.features-grid i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#edf2ff;
    color:#5277e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:16px;
}

.features-grid h3{
    font-size:22px;
    margin-bottom:10px;
}

.features-grid p,
.about p{
    color:#4b5563;
    line-height:1.55;
}

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.about h2{
    font-size:36px;
    margin-bottom:12px;
}

.team-card{
    min-width:260px;
    background:#7494ec;
    color:white;
    border-radius:24px;
    padding:24px;
    display:grid;
    gap:8px;
    font-weight:800;
}

.team-card strong{
    font-size:22px;
}

footer{
    width:min(1180px, calc(100% - 36px));
    margin:0 auto 24px;
    display:flex;
    justify-content:space-between;
    gap:14px;
    color:#6b7280;
    font-weight:800;
}

@media(max-width:900px){
    .landing-header{
        flex-direction:column;
        gap:14px;
    }

    .landing-header nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero,
    .features-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:40px;
    }

    .hero-text,
    .hero-card,
    .about{
        padding:28px;
    }

    .about{
        flex-direction:column;
        align-items:flex-start;
    }

    .team-card{
        width:100%;
    }

    footer{
        flex-direction:column;
        text-align:center;
    }
}


/* ===== REMOVER EQUIPA / AJUSTE LANDING - INICIO ===== */

.about{
    justify-content:flex-start !important;
}

.about > div:first-child{
    max-width:850px;
}

/* ===== REMOVER EQUIPA / AJUSTE LANDING - FIM ===== */
