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

body{
    font-family:Arial, sans-serif;
    background:#0f1115;
    color:white;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
}

.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.logo span{
    color:#e63946;
}

.btn-whatsapp,
.btn-primary,
.btn-secondary{
    padding:14px 22px;
    border-radius:10px;
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

.btn-whatsapp{
    background:#25D366;
    color:white;
}

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

.btn-secondary{
    border:1px solid white;
    color:white;
}

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background:url('../img/hero-car.jpg') center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 400px;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#e63946;
    padding:10px 16px;
    border-radius:30px;
    margin-bottom:20px;
}

.hero h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    opacity:0.85;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.form-card{
    background:#161a22;
    padding:35px;
    border-radius:20px;
}

.form-card h3{
    margin-bottom:25px;
}

.form-card form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.form-card input,
.form-card textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#232833;
    color:white;
}

.form-card button{
    background:#e63946;
    border:none;
    padding:16px;
    border-radius:10px;
    color:white;
    cursor:pointer;
}

section{
    padding:100px 0;
}

h2{
    font-size:42px;
    margin-bottom:50px;
    text-align:center;
}

.problem-grid,
.steps-grid,
.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.problem-card,
.step-card,
.trust-card{
    background:#161a22;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.step-card span{
    width:50px;
    height:50px;
    background:#e63946;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    font-weight:bold;
}

.pro-section{
    background:#161a22;
}

.pro-wrapper{
    display:flex;
    justify-content:center;
    text-align:center;
}

.pro-text{
    max-width:700px;
}

.pro-text p{
    margin:25px 0;
}

.footer{
    background:#0b0d11;
    padding:30px 0;
}

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

@media(max-width:900px){

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

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

    .hero-buttons{
        flex-direction:column;
    }

    .footer-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}