:root {
    --primary-color: #0b4f6c;
    --primary-dark: #073347;
    --accent-color: #f7b733;
    --bg-soft: #f5f7fb;
    --text-dark: #1f2933;
}

* {
    scroll-behavior: smooth;
}

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

a {
    color: var(--primary-color);
}

.navbar {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.navbar-brand img {
    max-height: 80px;
}

/* BOTÕES */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 79, 108, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(11, 79, 108, 0.45);
    opacity: 0.95;
    color: #fff;
}

.btn-outline-custom {
    border-radius: 999px;
    border-width: 2px;
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.7rem 1.6rem;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* =========================
   HERO HOME (imagem de fundo)
   ========================= */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.7)),
        linear-gradient(to bottom right, rgba(11, 79, 108, 0.29), rgba(15, 23, 42, 0.75));
    mix-blend-mode: multiply;
}

.hero-section .container,
.hero-section .row,
.hero-section .col-lg-8 {
    position: relative;
    z-index: 1;
}

/* CTA do hero da home com cor destaque */
.hero-section .btn-primary-custom {
    background: var(--accent-color) !important;
    color: var(--text-dark);
}

/* Títulos/textos no hero */
.hero-title {
    font-weight: 800;
    font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 32rem;
}

.hero-highlight {
    color: var(--accent-color);
}

/* Badge do topo */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: #e5e7eb;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

/* KPIs no hero */
.hero-kpi {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-kpi-item span:first-child {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
}

.hero-kpi-item span:last-child {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #cbd5f5;
}

/* =========================
   HERO INTERNAS (imagem de fundo)
   ========================= */
.hero-inner {
    position: relative;
    padding: 5rem 0 3.5rem;
    color: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Degradê sobre a imagem nas internas */
.hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.7)),
        linear-gradient(to bottom right, rgba(11, 79, 108, 0.29), rgba(15, 23, 42, 0.75));
    mix-blend-mode: multiply;
}

.hero-inner .container,
.hero-inner .row,
.hero-inner .col-lg-8,
.hero-inner .col-lg-10 {
    position: relative;
    z-index: 1;
}

/* Breadcrumb sobre fundo escuro nas internas */
.hero-inner .breadcrumb-custom a {
    color: #e5e7eb;
}

.hero-inner .breadcrumb-custom a:hover {
    color: #ffffff;
}

.hero-inner .breadcrumb-custom .active {
    color: #ffffff;
}

/* Botão do hero interno com cor destaque */
.hero-inner .btn-primary-custom {
    background: var(--accent-color);
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 79, 108, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

/* Títulos/textos nas internas (reaproveitando padrão) */
.hero-inner .hero-title {
    font-weight: 800;
    font-size: clamp(2rem, 2.5vw + 1rem, 2.6rem);
    color: #ffffff;
}

.hero-inner .hero-subtitle {
    font-size: 0.95rem;
    color: #e5e7eb;
    max-width: 34rem;
}

/* =========================
   BREADCRUMB
   ========================= */
.breadcrumb-custom {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.breadcrumb-custom a {
    text-decoration: none;
    color: #6b7280;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.breadcrumb-custom .active {
    color: #111827;
}

/* =========================
   SEÇÕES / TEXTOS
   ========================= */
.section-padding {
    padding: 4rem 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.section-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.section-subtitle {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.78rem;
    color: #4b5563;
    background-color: #fff;
    margin: 0 .25rem .25rem 0;
}

.tag-pill i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* =========================
   CARDS DE SERVIÇO
   ========================= */
.service-card {
    border: none;
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform .16s ease, box-shadow .16s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 79, 108, 0.05), transparent);
    opacity: 0;
    transition: opacity .16s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 79, 108, 0.06);
    margin-bottom: 1rem;
}

.service-icon i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.service-link i {
    font-size: .9rem;
}

/* =========================
   DIFERENCIAIS / FEATURES
   ========================= */
.feature-badge {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: .5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(11, 79, 108, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* =========================
   PASSO A PASSO
   ========================= */
.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

/* =========================
   FAQ / ACCORDION
   ========================= */
.accordion-button:not(.collapsed) {
    background-color: rgba(11, 79, 108, 0.06);
    color: var(--primary-dark);
}

/* =========================
   CONTATO / CARDS
   ========================= */
.contact-card {
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 2rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: .8rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: .15rem;
}

.info-box {
    border-radius: 1.2rem;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

/* =========================
   FOOTER
   ========================= */
footer {
    padding: 2rem 0 1rem;
    background: #020617;
    color: #cbd5f5;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* =========================
   BOTÃO WHATSAPP FLUTUANTE
   ========================= */
.whatsapp-floating {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 999;
}

.whatsapp-floating a {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 14px 40px rgba(22, 163, 74, 0.55);
    transition: transform .16s ease, box-shadow .16s ease;
}

.whatsapp-floating a:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 60px rgba(22, 163, 74, 0.65);
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 3rem;
        text-align: left;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-inner {
        padding-top: 4.5rem;
        padding-bottom: 3rem;
    }
}
