:root {
    --primary: #016BFD;
    --secondary: #FF2114;
    --dark: #0a0f1e;
    --light: #ffffff;
    --text: #0f172a;
    --muted: #667085;
    --border: #e6e8ee;
    --surface: #f6f9ff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6
}

.container {
    max-width: 1200px
}

.site-header {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(1.3) blur(10px);
    border-bottom: 1px solid rgba(10, 15, 30, .08)
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #39a0ff)
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain
}

.logo-text {
    font-weight: 700
}

.navbar .nav-link {
    padding: 10px 12px;
    border-radius: 10px
}

.navbar .nav-link.active {
    color: var(--primary)
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px
}

.hero {
    position: relative;
    min-height: 80vh;
    background: none;
    padding: 96px 0 72px
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('bg_hero.jpg') center/cover no-repeat;
    filter: brightness(0.35)
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    letter-spacing: -.02em;
    font-size: 2.6rem
}

.hero-subtitle {
    color: #e2e8f0;
    font-size: 1.05rem
}

.btn {
    transition: transform .2s, filter .2s, box-shadow .2s;
    border-radius: 999px
}

.btn-primary {
    box-shadow: 0 10px 24px rgba(1, 107, 253, .25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 34px rgba(1, 107, 253, .28)
}

.btn-outline-light:hover,
.btn-outline-primary:hover {
    transform: translateY(-1px)
}
.btn{position:relative;overflow:hidden}
.btn::after{content:"";position:absolute;top:0;left:-120%;width:120%;height:100%;background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.25),rgba(255,255,255,0));transform:skewX(-20deg);opacity:0;pointer-events:none}
.btn:hover::after{animation:btn-shine .6s ease}
@keyframes btn-shine{0%{left:-120%;opacity:0}50%{opacity:.25}100%{left:120%;opacity:0}}
.btn .energy{position:absolute;top:0;left:-20%;height:100%;width:0;background:linear-gradient(90deg,rgba(1,107,253,0),rgba(1,107,253,.35),rgba(255,33,20,.35),rgba(255,255,255,.25),rgba(1,107,253,0));opacity:0;pointer-events:none;mix-blend-mode:screen}

.section {
    padding: 72px 0
}

.section.alt {
    background: var(--surface)
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: center
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 24px
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.chip {
    background: #f5f7fb;
    border: 1px solid var(--border);
    color: #334155;
    border-radius: 999px;
    padding: 6px 12px
}

.system-card,
.service-card,
.info-card,
.contact-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 38px rgba(10, 15, 30, .08)
}

.system-card:hover,
.service-card:hover,
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(10, 15, 30, .12)
}

.card-title .badge {
    vertical-align: middle;
    margin-left: 0
}

.card-img-top {
    height: 254px;
    width: 100%;
    object-fit: contain;
    padding: 20px;
}

.system-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.system-card .card-body .btn {
    margin-top: auto
}

/* Serviços: ícone central no topo, título abaixo, descrição em seguida */
.service-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(1, 107, 253, .08);
    color: var(--primary)
}

.service-icon i {
    font-size: 28px
}

.service-card .card-title {
    margin: 10px 0 6px;
    font-weight: 600
}

/* Badge sobre a imagem no topo direito, menor e discreta */
.system-card {
    position: relative
}

.system-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(10, 15, 30, .08)
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid var(--border)
}

/* Centralizar e reduzir espaçamento do card de contato */
.contact-card {
    max-width: 820px;
    margin: 0 auto
}

.contact-card .card-body {
    padding: 24px
}

.contact-form .form-control:focus {
    border-color: rgba(1, 107, 253, .45);
    box-shadow: 0 0 0 4px rgba(1, 107, 253, .12)
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px
}

.form-label i {
    color: var(--primary)
}

.form-status {
    font-weight: 600
}

.form-status.success {
    color: #10b981
}

.form-status.error {
    color: var(--secondary)
}

.whats {
    color: #10b981;
    font-weight: 700;
    text-decoration: none
}

.site-footer {
    background: var(--dark);
    color: #cbd5e1
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #e2e8f0;
    text-decoration: none
}

.footer-social a:hover {
    text-decoration: none
}

.footer-email {
    color: #cbd5e1;
    text-decoration: none
}

.copyright {
    color: #94a3b8
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain
}

@media(min-width:768px) {
    .hero-title {
        font-size: 3.2rem
    }

    .section-title {
        font-size: 2.4rem
    }
}
