
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0.7em;
}

.navbar {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0.7em 0;
}
.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}
.navbar-nav .nav-link {
    font-size: 1.08em;
    margin-right: 0.7em;
    color: #fff !important;
    transition: color .2s;
}
.navbar-nav .nav-link:hover {
    color: #00b6ff !important;
}

.hero-bg {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0d6efd 60%, #00b6ff 100%);
    color: #fff;
    padding: 80px 0 60px 0;
}
.hero-bg h1 {
    font-size: 2.7em;
    margin-bottom: 0.5em;
}
.hero-bg p {
    font-size: 1.25em;
    margin-bottom: 1.2em;
}

.service-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform .2s;
    background: #fff;
    margin-bottom: 1.5em;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0d6efd;
    margin: 0 auto 18px auto;
}

.diferenciais {
    background: #f4f8fb;
    padding: 50px 0;
}
.diferenciais h6 {
    margin-top: 0.7em;
    margin-bottom: 0.3em;
}
.diferenciais p {
    margin-bottom: 0.5em;
}

.footer-bg {
    background: #222;
    color: #fff;
    padding: 40px 0 10px 0;
}
.footer-bg a { color: #fff; text-decoration: underline; }
.footer-bg a:hover { color: #00b6ff; }

footer {
    font-size: 0.95rem;
}

.btn {
    border-radius: 30px;
    padding-left: 2em;
    padding-right: 2em;
    font-weight: 600;
    font-size: 1.08em;
}
.btn-lg {
    font-size: 1.15em;
    padding: 0.8em 2.2em;
}

@media (max-width: 991px) {
    .hero-bg h1 {
        font-size: 2em;
    }
    .service-card {
        margin-bottom: 2em;
    }
}
