:root {
    --nucleo-navy: #071f3f;
    --nucleo-blue: #0d6efd;
    --nucleo-cyan: #19c2ff;
    --nucleo-green: #18d19a;
    --nucleo-soft: #eef6ff;
    --nucleo-dark: #041326;
    --nucleo-text: #25324a;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--nucleo-text);
    background: #ffffff;
}

.glass-nav {
    background: rgba(4, 19, 38, .86);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--nucleo-cyan), var(--nucleo-green));
    border-radius: 14px;
    color: var(--nucleo-dark);
    display: inline-flex;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff;
}

.hero-section,
.hero-slide {
    min-height: 760px;
}

.hero-slide {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 150px 0 110px;
    position: relative;
}

.hero-slide::after {
    background: radial-gradient(circle at 72% 22%, rgba(25, 194, 255, .35), transparent 34%), radial-gradient(circle at 82% 70%, rgba(24, 209, 154, .22), transparent 30%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-content {
    color: #ffffff;
    max-width: 830px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .96;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: .9rem;
    text-transform: uppercase;
}

.btn-primary {
    --bs-btn-bg: var(--nucleo-blue);
    --bs-btn-border-color: var(--nucleo-blue);
    --bs-btn-hover-bg: #0759d7;
    --bs-btn-hover-border-color: #0759d7;
    box-shadow: 0 12px 26px rgba(13, 110, 253, .28);
    font-weight: 700;
}

.carousel-indicators [data-bs-target] {
    border-radius: 999px;
    height: 5px;
    width: 44px;
}

.trust-strip {
    background: var(--nucleo-dark);
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.trust-strip i {
    color: var(--nucleo-green);
}

.section-padding {
    padding: 96px 0;
}

.section-heading {
    max-width: 820px;
}

.section-heading h2,
#consultoria h2,
#contato h2 {
    color: var(--nucleo-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.section-heading p,
#contato p {
    color: #647084;
    font-size: 1.08rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(7, 31, 63, .08);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(7, 31, 63, .08);
    padding: 34px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    border-color: rgba(25, 194, 255, .36);
    box-shadow: 0 28px 70px rgba(7, 31, 63, .14);
    transform: translateY(-8px);
}

.service-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(25, 194, 255, .18), rgba(24, 209, 154, .20));
    border-radius: 22px;
    color: #08759d;
    display: inline-flex;
    font-size: 2rem;
    height: 66px;
    justify-content: center;
    margin-bottom: 24px;
    width: 66px;
}

.service-card h3 {
    color: var(--nucleo-dark);
    font-size: 1.22rem;
    font-weight: 800;
}

.service-card p {
    color: #647084;
    margin-bottom: 0;
}

.bg-soft {
    background: linear-gradient(180deg, #f5fbff, #eef6ff);
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.feature-list div {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.feature-list i {
    color: var(--nucleo-green);
    font-size: 1.35rem;
}

.security-panel {
    background: linear-gradient(145deg, #071f3f, #0a4f79 58%, #087268);
    border-radius: 36px;
    box-shadow: 0 32px 70px rgba(7, 31, 63, .26);
    color: #ffffff;
    overflow: hidden;
    padding: 46px;
    position: relative;
}

.security-panel::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .24), transparent);
    content: "";
    height: 1px;
    inset: 26px 32px auto;
    position: absolute;
}

.panel-orbit {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    height: 240px;
    position: absolute;
    right: -72px;
    top: -72px;
    width: 240px;
}

.security-panel h3 {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
}

.security-panel p {
    color: rgba(255, 255, 255, .78);
    position: relative;
}

.metric {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    padding: 22px;
    position: relative;
}

.metric strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.metric span {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
}

.contact-section {
    background: #ffffff;
}

.form-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 24px 80px rgba(7, 31, 63, .12);
    padding: 34px;
}

.form-control {
    border: 1px solid rgba(7, 31, 63, .14);
    border-radius: 16px;
    min-height: 52px;
}

.form-control:focus {
    border-color: var(--nucleo-cyan);
    box-shadow: 0 0 0 .25rem rgba(25, 194, 255, .16);
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-info p {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    margin: 0;
}

.contact-info i {
    color: var(--nucleo-blue);
    font-size: 1.2rem;
}

.footer-section {
    background: var(--nucleo-dark);
    color: rgba(255, 255, 255, .78);
    padding: 64px 0 28px;
}

.footer-section h2 {
    color: #ffffff;
    font-weight: 800;
}

.footer-section hr {
    border-color: rgba(255, 255, 255, .16);
    margin: 36px 0 22px;
}

.map-wrapper {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.map-wrapper iframe {
    border: 0;
    height: 100%;
    min-height: 300px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .hero-section,
    .hero-slide {
        min-height: 680px;
    }

    .hero-slide {
        padding: 130px 0 86px;
    }

    .section-padding {
        padding: 72px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-section,
    .hero-slide {
        min-height: 620px;
    }

    .hero-content h1 {
        letter-spacing: -.04em;
    }

    .service-card,
    .form-card,
    .security-panel {
        border-radius: 24px;
        padding: 26px;
    }
}

