/* DiariasTech — tokens Styleguide + home */

:root {
    --dt-navy: #0a1632;
    --dt-navy-footer: #050b18;
    --dt-lime: #b8f241;
    --dt-white: #ffffff;
    --dt-bg-light: #f5f5f0;
    --dt-muted: rgba(255, 255, 255, 0.7);
    --dt-muted-dark: rgba(10, 22, 50, 0.65);
    --dt-gradient: linear-gradient(135deg, #b8d4c8 0%, #6a9e96 100%);
    --dt-radius-sm: 8px;
    --dt-radius-md: 16px;
    --dt-radius-lg: 24px;
    --font-display: "Syne", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.site-body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--dt-white);
    background: var(--dt-navy);
}

.site-body p,
.site-body li,
.site-body label,
.site-body input,
.site-body textarea,
.site-body select,
.site-body small,
.site-body .text-muted-dt,
.site-body .blog-meta,
.site-body .blog-filter-item,
.site-body .blog-tag,
.site-body .emp-map-note,
.site-body .footer-heading {
    font-family: var(--font-body);
}

/* Tipografia */
.font-display {
    font-family: var(--font-display);
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dt-lime);
}

.text-muted-dt {
    color: var(--dt-muted-dark);
}

.section-dark {
    background: var(--dt-navy);
    color: var(--dt-white);
}

.section-dark .text-muted-dt {
    color: var(--dt-muted);
}

.section-light {
    background: var(--dt-bg-light);
}

/* Conteúdo principal: bloco navy contínuo */
.site-main {
    background: var(--dt-navy);
}

/* Header */
.site-header {
    position: relative;
    z-index: 1030;
}

.site-navbar {
    background: var(--dt-white);
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(10, 22, 50, 0.06);
}

.site-nav-link {
    font-size: 13.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    padding-inline: 0.2rem;
}

/* Primeiros links: peso normal — últimos dois: negrito (sem estado “ativo” / botão) */
.site-nav-link--muted {
    font-weight: 400 !important;
    color: var(--dt-navy) !important;
}

.site-nav-link--muted:hover {
    color: var(--dt-lime) !important;
}

.site-nav-link--emph {
    font-weight: 800 !important;
    color: var(--dt-navy) !important;
}

.site-nav-link--emph.site-nav-link--dark {
    color: var(--dt-navy) !important;
}

.site-nav-link--emph:hover {
    opacity: 0.88;
}

.site-logo--header {
    height: auto;
    max-height: 48px;
    width: auto;
}

.site-logo--menu-bar {
    max-height: 42px;
    width: auto;
}

/* Menu mobile — layout Menu.png: topo branco + lista navy + WhatsApp */
.site-menu-offcanvas {
    border: none;
    background: transparent;
}

.site-menu-top {
    background: var(--dt-white);
    border-bottom: 1px solid rgba(10, 22, 50, 0.08);
}

.site-menu-close {
    opacity: 1;
}

.site-menu-middle {
    background: var(--dt-navy);
    min-height: 0;
}

.site-menu-nav {
    display: flex;
    flex-direction: column;
}

.site-menu-row {
    display: block;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dt-white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-menu-row--soft {
    font-weight: 400;
}

.site-menu-row--emph {
    font-weight: 800;
}

.site-menu-row:hover {
    color: var(--dt-lime);
}

.site-menu-row--accent {
    color: var(--dt-lime);
}

.site-menu-row--accent:hover {
    color: #d4ff7a;
}

.site-menu-whatsapp {
    background: var(--dt-lime) !important;
    color: var(--dt-navy) !important;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--dt-radius-md);
    padding: 0.9rem 1rem;
    border: none;
}

.site-menu-whatsapp:hover {
    background: #c5f55a !important;
    color: var(--dt-navy) !important;
}

.site-whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    z-index: 1080;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-whatsapp-float:hover {
    background: #1fbe5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.site-whatsapp-float:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 2px;
}

/* Botões */
.btn.site-btn-primary {
    --bs-btn-bg: var(--dt-lime);
    --bs-btn-border-color: var(--dt-lime);
    --bs-btn-color: #0a0a0a;
    --bs-btn-hover-bg: #c5f55a;
    --bs-btn-hover-border-color: #c5f55a;
    --bs-btn-hover-color: #0a0a0a;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 0.9rem 1.8rem;
}

.btn.site-btn-outline-light {
    --bs-btn-color: var(--dt-lime);
    --bs-btn-border-color: var(--dt-lime);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--dt-lime);
    --bs-btn-hover-color: #d4ff7a;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    border-width: 2px;
    padding: 0.5rem 1.15rem;
}

@media (min-width: 992px) {
    .btn.site-btn-outline-light {
        --bs-btn-color: var(--dt-lime);
        --bs-btn-border-color: var(--dt-lime);
    }
}

.btn.site-btn-dark {
    background: var(--dt-navy);
    color: var(--dt-white);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--dt-radius-sm);
}

.btn.site-btn-dark:hover {
    background: #152a52;
    color: var(--dt-white);
}

.btn.site-btn-whatsapp {
    background: var(--dt-lime);
    color: #0a0a0a;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--dt-radius-md);
    padding: 0.85rem 2rem;
    border: none;
}

.btn.site-btn-whatsapp:hover {
    background: #c5f55a;
    color: #0a0a0a;
}

.btn.site-btn-outline-dark {
    background: var(--dt-white);
    color: var(--dt-navy);
    border: 1px solid rgba(10, 22, 50, 0.15);
    font-weight: 600;
    border-radius: var(--dt-radius-sm);
}

/* Hero */
.hero-section {
    background: var(--dt-navy);
    color: var(--dt-white);
    padding-top: 2rem;
    padding-bottom: 3rem;
    overflow: visible;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }
}

.hero-title {
    font-size: clamp(1.55rem, 4.1vw, 2.45rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero-title span,
.emp-hero-title span,
.sobre-hero-title span,
.blog-hero-title span {
    color: var(--dt-lime);
}

@media (min-width: 992px) {
    .hero-section .row {
        position: relative;
    }

    /* Título invade a coluna da imagem (metade no azul / metade sobre a foto) */
    .hero-copy {
        position: relative;
        z-index: 3;
        margin-right: clamp(-2rem, -14vw, -7rem);
        padding-right: 0.5rem;
    }

    .hero-title {
        font-size: clamp(1.95rem, 3.7vw, 3rem);
        line-height: 1.05;
    }

    .hero-section .row > .col-lg-6:last-child {
        position: relative;
        z-index: 1;
    }
}

.hero-lead {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--dt-muted);
    max-width: 36rem;
}

/* Moldura da foto + badges “meio dentro / meio fora” da imagem */
.hero-image-outer {
    position: relative;
    padding-top: 2.35rem;
    padding-bottom: 2.5rem;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    z-index: 1;
    max-width: 88%;
    margin-inline: auto;
    border: 1px solid var(--dt-lime);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-image-outer {
        display: none;
    }

    .diff-visual {
        display: none;
    }
}

.hero-badge {
    position: absolute;
    background: rgba(10, 22, 50, 0.92);
    backdrop-filter: blur(8px);
    color: var(--dt-white);
    padding: 0.95rem 1.2rem;
    border-radius: var(--dt-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    font-weight: 600;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: min(100%, 320px);
    z-index: 4;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-badge__icon {
    color: var(--dt-lime);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.hero-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    color: var(--dt-white);
}

.hero-badge__main {
    font-size: 0.72em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
}

.hero-badge__accent {
    color: var(--dt-lime);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.22em;
    line-height: 1;
    margin-top: 0.1rem;
}

.hero-badge--overlap.hero-badge--tl {
    left: 0.5rem;
    top: 0.6rem;
    transform: translateY(-28%);
}

.hero-badge--overlap.hero-badge--br {
    right: 0.5rem;
    bottom: 0.6rem;
    transform: translateY(28%);
}

.hero-badge-pill {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(184, 242, 65, 0.12);
    color: var(--dt-lime);
    border: 1px solid rgba(184, 242, 65, 0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* Stats */
.stats-section {
    margin-top: -3.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    background: var(--dt-navy);
}

.stat-card {
    background: var(--dt-white);
    border-radius: var(--dt-radius-md);
    padding: 1.4rem 1.6rem;
    box-shadow: 0 12px 40px rgba(10, 22, 50, 0.08);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stat-card .stat-icon {
    color: var(--dt-lime);
    font-size: 2.45rem;
    line-height: 1;
    flex-shrink: 0;
}

.stat-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.stat-card__strong {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
    font-weight: 800;
    color: var(--dt-navy);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.stat-plus {
    color: var(--dt-lime);
}

.stat-card__muted {
    font-size: 12px;
    font-weight: 500;
    color: #5c6578;
    line-height: 1.3;
}

.stats-row-mobile {
    display: flex;
    text-align: center;
    border-radius: var(--dt-radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.stats-row-mobile .col-4 {
    padding: 1rem 0.5rem;
}

.stats-row-mobile .col-4:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.35rem, 3.8vw, 1.85rem);
    color: var(--dt-lime);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.stat-label-sm {
    font-size: 11px;
    color: var(--dt-muted);
    line-height: 1.3;
    margin-top: 0.25rem;
}

/* Diferenciais */
.diff-section-title {
    font-size: clamp(2.15rem, 4.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.diff-visual {
    position: relative;
    min-height: 320px;
}

.diff-img-back {
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    width: 70%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--dt-lime);
}

.diff-img-front {
    position: absolute;
    right: 0;
    bottom: -34%;
    width: 50%;
    /* superior-esquerdo quadrado (encosta na imagem de trás); demais arredondados */
    border-radius: 0 var(--dt-radius-md) var(--dt-radius-md) var(--dt-radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--dt-lime);
}

.diff-img-back img,
.diff-img-front img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-mini-card {
    background: var(--dt-white);
    border-radius: var(--dt-radius-md);
    padding: 1.15rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0 4px 24px rgba(10, 22, 50, 0.06);
}

.feature-mini-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--dt-radius-sm);
    background: #e7f0ff;
    color: var(--dt-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feature-mini-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--dt-navy);
}

.feature-mini-card p {
    font-size: 13px;
    color: var(--dt-muted-dark);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .feature-mini-card {
        background: #1f2f53;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .feature-mini-card .icon-box {
        background: var(--dt-lime);
        color: #0a1632;
    }

    .feature-mini-card h3 {
        color: #ffffff;
    }

    .feature-mini-card p {
        color: rgba(255, 255, 255, 0.75);
    }
}

/* Marcas — Owl (fundo navy, cards brancos como no layout desktop) */
.brands-section {
    background: var(--dt-navy);
    color: var(--dt-white);
    position: relative;
    overflow: hidden;
}

.brands-section::before,
.brands-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(10vw, 120px);
    pointer-events: none;
    z-index: 3;
}

.brands-section::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 22, 50, 1) 0%, rgba(10, 22, 50, 0) 100%);
}

.brands-section::after {
    right: 0;
    background: linear-gradient(270deg, rgba(10, 22, 50, 1) 0%, rgba(10, 22, 50, 0) 100%);
}

.brands-section .section-heading {
    color: var(--dt-white);
}

.clients-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.clients-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
}

.brand-slide-inner {
    background: var(--dt-white);
    border-radius: var(--dt-radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: #c8c8c8;
    letter-spacing: 0.02em;
    border: 1px solid rgba(10, 22, 50, 0.06);
}

/* Logos no carrossel: menos padding interno + altura maior para não “encolher” a arte */
.brands-carousel .brand-slide-inner {
    padding: 0.6rem 0.75rem;
    min-height: 80px;
}

.brands-carousel .brand-slide-inner img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 80%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.brands-carousel .owl-nav {
    margin-top: 1.25rem;
    text-align: center;
}

.brands-carousel .owl-nav button.owl-prev,
.brands-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #060d1f !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin: 0 0.35rem;
    font-size: 1rem !important;
}

.brands-carousel .owl-nav button.owl-prev:hover,
.brands-carousel .owl-nav button.owl-next:hover {
    background: #0f1f3d !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 991.98px) {
    .brands-carousel--reverse {
        display: none !important;
    }
}

/* Segmentos — cards brancos + foto / placeholder indústria (layout Home) */
.segments-title {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.segment-tile {
    background: var(--dt-white);
    border-radius: var(--dt-radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.segment-tile__media {
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: #e8e8e4;
}

.segment-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.segment-tile__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #122a52 0%, #0a1632 100%);
}

.segment-tile__placeholder-icon {
    font-size: 3rem;
    line-height: 1;
    color: #ff9f1c;
}

.segment-tile__body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.segment-tile__body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dt-navy);
    margin-bottom: 0.65rem;
}

.segment-tile__body ul {
    padding-left: 1.15rem;
    margin: 0 0 1.15rem;
    font-size: 13px;
    color: var(--dt-muted-dark);
    line-height: 1.5;
}

.segment-tile__body .segment-tile__conteudo {
    margin: 0 0 1.15rem;
    font-size: 13px;
    color: var(--dt-muted-dark);
    line-height: 1.5;
}

.segment-tile__body .segment-tile__conteudo p {
    margin: 0 0 0.5rem;
}

.segment-tile__body .segment-tile__conteudo p:last-child {
    margin-bottom: 0;
}

.segment-tile__body .segment-tile__conteudo ul {
    margin: 0 0 0.5rem;
}

.segment-tile__btn {
    background: var(--dt-navy) !important;
    color: var(--dt-white) !important;
    border: none;
    margin-top: auto;
    font-size: 11px;
    padding: 0.55rem 1rem;
}

.segment-tile__btn:hover {
    background: #152a52 !important;
    color: var(--dt-white) !important;
}

@media (max-width: 991.98px) {
    .segment-tile {
        background: #1f2f53;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .segment-tile__body h3 {
        color: #ffffff;
    }

    .segment-tile__body ul {
        color: rgba(255, 255, 255, 0.75);
    }

    .segment-tile__body .segment-tile__conteudo {
        color: rgba(255, 255, 255, 0.75);
    }

    .segment-tile__body .segment-tile__conteudo a {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* CTA — faixa navy; caixa com borda em gradiente (layout Home) */
.cta-gradient-section {
    padding: 4.5rem 0 5.5rem;
    background: var(--dt-navy);
}

.cta-gradient-box {
    background: linear-gradient(110deg, rgba(32, 70, 112, 0.6) 0%, rgba(126, 168, 107, 0.52) 52%, rgba(32, 70, 112, 0.6) 100%);
    border-radius: var(--dt-radius-lg);
    padding: 2.85rem 2.65rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(184, 242, 65, 0.12), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-gradient-box .eyebrow {
    color: var(--dt-lime);
    font-family: var(--font-body);
    font-weight: 700;
}

.cta-eyebrow {
    font-size: 11px;
    letter-spacing: 0.34em;
}

.cta-gradient-box .font-display,
.cta-gradient-box h2 {
    color: var(--dt-white);
}

.cta-title {
    font-size: clamp(2.35rem, 4.4vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.cta-gradient-box .text-muted-dt {
    color: var(--dt-muted) !important;
}

.cta-text {
    font-size: clamp(0.86rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 300;
}

/* Footer — tom mais escuro que o corpo */
.site-footer {
    background: var(--dt-navy);
    color: var(--dt-white);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.site-footer a {
    color: var(--dt-muted);
    text-decoration: none;
    font-size: 14px;
}

.site-footer a:hover {
    color: var(--dt-lime);
}

.site-footer .footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--dt-white);
}

.site-footer .logo-footer {
    max-height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 2rem 0 1.5rem;
}

/* Utilities */
.rounded-dt {
    border-radius: var(--dt-radius-md);
}

.z-1 {
    z-index: 1;
}

/* ===== Para Empresas page ===== */
.emp-hero-title {
    font-size: clamp(1.95rem, 3.7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.emp-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 242, 65, 0.18);
    border: 1px solid rgba(184, 242, 65, 0.38);
    color: var(--dt-lime);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.emp-process {
    position: relative;
}

.emp-process .container {
    max-width: 980px;
    margin-inline: auto;
}

.emp-process-line {
    height: 2px;
    background: var(--dt-lime);
    margin: 1.25rem auto -1.15rem;
    width: 75%;
    max-width: none;
}

.emp-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.emp-step-num {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 800;
    background: #101f46;
    border: 1px solid rgba(184, 242, 65, 0.75);
    color: var(--dt-lime);
    margin-bottom: 0.8rem;
    transform: translateY(-50%);
}

.emp-step h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #fff;
}

.emp-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.45;
    margin: 0;
}

.emp-process .clients-title span {
    color: var(--dt-lime);
}

.emp-coverage .clients-title {
    text-align: left;
}

.emp-coverage-title {
    font-size: clamp(1.75rem, 3.1vw, 2.35rem);
    line-height: 1.08;
}

.emp-legend span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
}

.emp-state-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.emp-state-list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.emp-coverage-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.emp-coverage-accordion.accordion-flush .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.emp-coverage-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.emp-coverage-accordion .accordion-button {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    box-shadow: none;
    padding: 0.45rem 0.7rem;
    gap: 0.5rem;
}

.emp-coverage-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.emp-coverage-accordion .accordion-button::after {
    display: none;
}

.emp-coverage-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.12);
}

.emp-coverage-accordion .accordion-button:focus-visible {
    box-shadow: 0 0 0 2px rgba(158, 206, 126, 0.45);
}

.emp-coverage-acc__head {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    text-align: left;
}

.emp-coverage-acc__title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.emp-coverage-acc__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.emp-coverage-acc__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.emp-coverage-acc__sub {
    flex-shrink: 0;
    text-align: right;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
    font-size: 0.7rem;
}

.emp-coverage-accordion .accordion-body.emp-coverage-acc__body {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    padding: 0.85rem 1.1rem 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.emp-cov-cities {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 1.5rem;
    line-height: 1.3;
}

.emp-cov-cities li {
    break-inside: avoid;
}

.emp-coverage-accordion .accordion-body.emp-coverage-acc__body p:last-child {
    margin-bottom: 0;
}

.emp-map-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.emp-map-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.emp-map-note {
    margin-top: 0.95rem;
    background: rgba(20, 46, 74, 0.72);
    border: 1px solid rgba(158, 206, 126, 0.35);
    border-radius: 14px;
    padding: 0.72rem 0.95rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    line-height: 1.35;
}

.emp-map-note strong {
    color: var(--dt-lime);
    font-weight: 700;
    font-family: var(--font-body);
}

.emp-map-note__pin {
    margin-right: 0.12rem;
}

.emp-map-note__tail {
    color: rgba(255, 255, 255, 0.82);
}

.emp-map-note a {
    color: var(--dt-lime);
    font-weight: 700;
    text-decoration: none;
}

.emp-map-note a:hover {
    color: #d4ff7a;
}

/* ===== Sobre page ===== */
.sobre-hero-title {
    font-size: clamp(1.95rem, 3.7vw, 3rem);
    line-height: 1.04;
    font-weight: 800;
}

.sobre-hero-visual {
    position: relative;
    padding: 1.2rem 0 1.8rem;
}

.sobre-photo-hero {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: auto;
}

.sobre-title {
    font-size: clamp(2rem, 3.7vw, 3.2rem);
    line-height: 1.06;
}

.sobre-story .diff-visual {
    padding-bottom: 5.5rem;
}

.sobre-story .diff-img-front {
    bottom: -14%;
}

.sobre-quote {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem 0.9rem 1rem;
    border-left: 3px solid var(--dt-lime);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 14px;
}

.sobre-quote p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.sobre-photo-operation {
    width: 70%;
    margin-inline: auto;
    border-radius: 12px;
    display: block;
    height: auto;
}

.sobre-timeline-wrap {
    padding-top: 4.25rem;
}

.sobre-timeline {
    border-left: 1px solid rgba(184, 242, 65, 0.35);
    padding-left: 1rem;
}

.sobre-tl-item {
    position: relative;
    margin-bottom: 1rem;
}

.sobre-tl-item::before {
    content: "";
    position: absolute;
    left: -1.31rem;
    top: 0.38rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dt-lime);
}

.sobre-tl-year {
    font-size: 11px;
    color: var(--dt-lime);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sobre-tl-item h3 {
    margin: 0.2rem 0;
    font-size: 1rem;
    color: #fff;
}

.sobre-tl-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.45;
}

.sobre-commit-card {
    background: linear-gradient(110deg, rgba(32, 70, 112, 0.6) 0%, rgba(126, 168, 107, 0.52) 52%, rgba(32, 70, 112, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 1.8rem;
}

.sobre-commit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.sobre-commit-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 0.7rem;
}

.sobre-commit-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 242, 65, 0.22);
    color: var(--dt-lime);
    font-size: 0.9rem;
    margin-top: 0.12rem;
}

.sobre-commit-list strong {
    color: #fff;
    font-size: 14px;
    display: block;
}

.sobre-commit-list span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.sobre-commit-card .btn.site-btn-dark {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--dt-white);
    font-size: 12px;
    padding: 0.9rem 1.8rem;
}

.sobre-commit-card .btn.site-btn-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--dt-white);
}

/* ===== Blog page ===== */
.blog-hero-title {
    font-size: clamp(1.95rem, 3.7vw, 3rem);
    line-height: 1.03;
    font-weight: 800;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.75rem;
}

.blog-filter-item {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.blog-filter-item.active {
    color: #fff;
}

.blog-filter-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.78rem;
    height: 2px;
    background: var(--dt-lime);
}

.blog-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.blog-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.blog-card > a {
    display: block;
    position: relative;
}

.blog-card img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.blog-category-overlay {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(8, 18, 43, 0.85);
    border: 1px solid rgba(184, 242, 65, 0.35);
    color: var(--dt-lime);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    text-decoration: none;
}

.blog-category-overlay:hover {
    color: #d4ff7a;
    border-color: rgba(184, 242, 65, 0.55);
}

.blog-card-body {
    padding: 0.9rem 1rem 1rem;
}

.blog-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dt-lime);
    margin-bottom: 0.45rem;
    text-decoration: none;
}

.blog-tag i,
.blog-filter-item i,
.blog-category-overlay i {
    font-size: 0.9em;
}

.blog-card h3 {
    font-size: 1rem;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 0.45rem;
}

.blog-card-link {
    color: #fff;
    text-decoration: none;
}

.blog-card-link:hover {
    color: var(--dt-lime);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.blog-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.blog-meta i {
    color: var(--dt-lime);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.blog-page-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.blog-page-btn.active {
    background: rgba(184, 242, 65, 0.2);
    border-color: rgba(184, 242, 65, 0.45);
    color: var(--dt-lime);
}

.blog-tips-title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.blog-tips-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.tip-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.85rem 0.9rem;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.6rem;
}

.tip-icon {
    color: var(--dt-lime);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.blog-tag--dark {
    margin-bottom: 0.3rem;
}

.tip-card-title {
    font-size: 0.95rem;
    line-height: 1.35;
}

.tip-card-title-link {
    color: var(--dt-lime);
}

.tip-card-title-link:hover {
    color: #ffffff;
}

.tip-card-subtitle {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.45;
}

.tip-card .tip-card-subtitle-link,
.tip-card .tip-card-subtitle-link:visited,
.tip-card .tip-card-subtitle-link:active {
    color: #ffffff;
    text-decoration: none;
}

.tip-card .tip-card-subtitle-link:hover {
    color: var(--dt-lime);
    text-decoration: none;
}

/* ===== Dica (tips) page — sem hero com imagem ===== */
.dica-page-top {
    padding: 2rem 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dica-page-titulo-line {
    color: var(--dt-lime);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.dica-page .dica-page-titulo-line + .article-title {
    margin-top: 0;
}

.dica-related-aside .related-title {
    font-size: 1.25rem;
    line-height: 1.15;
}

.dica-related-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* ===== Blog Article page ===== */
.article-container {
    max-width: 100%;
}

.article-hero-bg {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.article-hero-bg--full {
    width: 100%;
    border-radius: 0;
    min-height: 360px;
}

.article-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 50, 0) 0%, rgba(10, 22, 50, 0.78) 62%, rgba(10, 22, 50, 0.96) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2.4rem 0 1.8rem;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.article-title {
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    line-height: 1.05;
    color: #ffffff;
}

.article-hero-image-mobile {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.article-page p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-page h2 {
    color: #fff;
    font-size: 1.4rem;
    margin: 1.2rem 0 0.7rem;
}

.article-body h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 1.2rem 0 0.65rem;
    padding: 0.35rem 0 0.35rem 1rem;
    border-left: 3px solid var(--dt-lime);
}

.article-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.article-kpis > div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    display: grid;
    gap: 0.15rem;
}

.article-kpis strong {
    color: var(--dt-lime);
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1;
}

.article-kpis span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.article-highlight {
    background: rgba(180, 219, 124, 0.12);
    border: 1px solid rgba(184, 242, 65, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.article-highlight h3 {
    color: var(--dt-lime);
    font-size: 1rem;
    margin: 0 0 0.6rem;
}

.article-highlight ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.55;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.article-share span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-right: 0.3rem;
}

.article-share a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.article-tags a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-size: 11px;
}

.article-topic-badge {
    background: rgba(184, 242, 65, 0.2);
    border: 1px solid rgba(184, 242, 65, 0.52);
    color: var(--dt-lime);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.related-posts {
    position: static;
    top: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.95rem;
}

.related-title {
    font-size: 1.25rem;
    line-height: 1.15;
}

.related-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-item:first-of-type {
    border-top: none;
    padding-top: 0.1rem;
}

.related-item img {
    width: 100%;
    height: 66px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.related-item h4 {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.25;
    margin: 0.15rem 0 0.3rem;
}

.related-cta-box {
    padding: 1.1rem;
}

.related-cta-title {
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (max-width: 991.98px) {
    .site-whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }

    .emp-hero {
        padding-top: 1.6rem;
        padding-bottom: 2.4rem;
        overflow: visible;
    }

    .emp-hero .row > [class*="col-lg-6"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .emp-hero-title {
        font-size: clamp(1.95rem, 3.7vw, 3rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .emp-process .clients-title {
        font-size: clamp(1.75rem, 6.8vw, 2.15rem);
    }

    .emp-process-line {
        display: none;
    }

    .emp-process .row {
        row-gap: 1rem !important;
    }

    .emp-step {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }

    .emp-step-num {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
        transform: none;
        margin-top: 0.15rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .emp-step-content h3 {
        margin-bottom: 0.2rem;
        font-size: 1rem;
    }

    .emp-step-content p {
        margin: 0;
        font-size: 12px;
    }

    .emp-map-card {
        margin-top: 0.1rem;
    }

    .emp-map-note {
        margin-top: 0.7rem;
        font-size: 11px;
        padding: 0.62rem 0.75rem;
    }

    .sobre-hero-title { font-size: clamp(1.95rem, 3.7vw, 3rem); }

    .sobre-hero-visual {
        display: none;
    }

    .sobre-title {
        font-size: clamp(1.8rem, 7.5vw, 2.35rem);
    }

    .sobre-story .diff-visual {
        display: none;
    }

    .sobre-photo-operation { height: auto; }

    .sobre-timeline-wrap {
        padding-top: 2rem;
    }

    .sobre-commit-card {
        padding: 1.25rem;
    }

    .article-container {
        max-width: 100%;
    }

    .article-title {
        font-size: clamp(1.6rem, 8.2vw, 2.1rem);
    }

    .article-hero-bg {
        min-height: 250px;
    }

    .article-hero-bg--full {
        min-height: 0;
        background-image: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .article-hero-content {
        padding: 0.8rem 0 0.85rem;
    }

    .article-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-kpis strong {
        font-size: 1.05rem;
    }

    .related-posts {
        position: static;
        top: auto;
    }

    .related-cta-title {
        font-size: 1.35rem;
    }
}
