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

body {
    font-family: 'Inter', sans-serif;
    color: #002B49;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar { padding: 20px 0; border-bottom: 1px solid #eee; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 40px; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #002B49; font-weight: 600; font-size: 14px; }

/* HERO SECTION */
.hero { padding: 60px 0; position: relative; }
.hero-grid { display: flex; align-items: center; }
.hero-text { width: 45%; }
.hero-text h1 { font-size: 48px; line-height: 1.1; margin-bottom: 20px; }
.hero-text h1 span { font-weight: 300; color: #666; }
.btn-cta { 
    display: inline-block; 
    padding: 15px 30px; 
    background: #20b29a; 
    color: white; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
}

/* ÁREA VISUAL (ALINHAMENTO) */
.hero-visual {
    width: 55%;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagonal-bg {
    position: absolute;
    top: 0; right: -100px;
    width: 100%; height: 100%;
    background: #f8f9fa;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.car-img { width: 100%; position: relative; z-index: 2; }

/* APP SOBRE O CARRO */
.app-img {
    position: absolute;
    width: 180px;
    z-index: 10;
    left: 55%;
    top: 40%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* QR CODE */
.qr-box {
    position: absolute;
    top: 10px; right: 0;
    z-index: 11;
}
.qr-box img { width: 80px; background: white; padding: 5px; border-radius: 5px; border: 1px solid #eee; }

/* INSIGHTS */
.insights { padding: 80px 0; text-align: center; background: white; }
.section-title { font-size: 28px; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.insight-grid { display: flex; justify-content: space-around; margin-bottom: 40px; }
.insight-card p { font-weight: bold; margin-top: 15px; }
.insight-footer { font-size: 18px; color: #555; border-top: 1px solid #eee; padding-top: 30px; }

@media (max-width: 768px) {
    .hero-grid { flex-direction: column; text-align: center; }
    .hero-text, .hero-visual { width: 100%; }
    .diagonal-bg { display: none; }
}