@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

.info-card-trigger {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-trigger:hover {
    transform: translateY(-6px);
}

.about-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.about-modal.active {
    opacity: 1;
    visibility: visible;
}

.about-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 15, 25, 0.78);
    backdrop-filter: blur(4px);
}

.about-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(25px) scale(0.98);
    transition: 0.3s ease;
    z-index: 2;
}

.about-modal.active .about-modal-dialog {
    transform: translateY(0) scale(1);
}

.about-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0b4654;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.about-modal-image-wrap {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #07142e, #0d3f6b);
    overflow: hidden;
}

.about-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-modal-content {
    padding: 34px 30px 32px;
}

.about-modal-content h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #0b4654;
}

.about-modal-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5f6b74;
}

.service-card-trigger {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-trigger:hover {
    transform: translateY(-6px);
}

.service-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 4, 40, 0.78);
    backdrop-filter: blur(4px);
}

.service-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.98);
    transition: all 0.3s ease;
    z-index: 2;
}

.service-modal.active .service-modal-dialog {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000428;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.service-modal-image-wrap {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #000428, #004e92);
}

.service-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-modal-content {
    padding: 30px;
}

.service-modal-content h3 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: #000428;
    font-weight: 700;
}

.service-modal-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #5b6470;
}

.category-widget-center {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.category-widget-center {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.category-grid ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-grid ul li {
    margin: 0;
}

.category-grid ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 0 22px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.category-grid ul li a span {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #0f173d;
    line-height: 1.4;
}

.category-grid ul li a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.category-grid ul li a i {
    color: #2f5cff;
    font-size: 15px;
}

.category-grid ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(47, 92, 255, 0.12);
}

.category-filter.active {
    background: #2f5cff !important;
    border-color: #2f5cff !important;
}

.category-filter.active span,
.category-filter.active i {
    color: #fff !important;
}

.category-filter.active img {
    filter: brightness(0) invert(1);
}

.category-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #2e58ff;
    flex-shrink: 0;
}

.category-filter.active .category-svg-icon {
    color: #ffffff;
}

.category-svg-icon svg {
    display: block;
    width: 26px;
    height: 26px;
}

/* Cards com transição suave */
.filter-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity .35s ease,
        transform .35s ease,
        max-height .35s ease,
        margin .35s ease,
        padding .35s ease;
    max-height: 900px;
    overflow: hidden;
}

/* Estado escondido */
.filter-item.hide-item {
    opacity: 0;
    transform: translateY(12px) scale(.97);
    max-height: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    pointer-events: none;
}

/* =========================
   FOOTER NOVO - SEM CONFLITO
   ========================= */

/* remove apenas pseudo-elementos genéricos da seção anterior */
section:last-of-type::before,
section:last-of-type::after,
div:last-of-type::before,
div:last-of-type::after {
    background-image: none !important;
}

/* remove apenas elementos decorativos antigos do footer */
.main-footer-one::before,
.main-footer-one::after,
.main-footer-one .main-footer-section::before,
.main-footer-one .main-footer-section::after,
.main-footer-one .footer-top-section::before,
.main-footer-one .footer-top-section::after,
.main-footer-one .footer-shape,
.main-footer-one .footer-shape2,
.main-footer-one .footer-shape3,
.main-footer-one .footer-circle::before,
.main-footer-one .footer-circle::after {
    background-image: none !important;
    content: none !important;
    display: none !important;
    box-shadow: none !important;
}

/* garante que o footer em si continue visível */
.main-footer-one,
.main-footer-one .footer-top-section,
.main-footer-one .footer-circle,
.main-footer-one .footer-clean-new__main,
.main-footer-one .footer-clean-new__bottom {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* textos */
.main-footer-one .footer-clean-new__title,
.main-footer-one .footer-clean-new__copy,
.main-footer-one .footer-clean-new__links a,
.main-footer-one .footer-clean-new__contact,
.main-footer-one .footer-clean-new__contact a {
    color: #ffffff;
}

/* SEÇÃO CONTATO (mais clara) */
.main-footer-one {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #001231 !important;
    /* azul mais claro */
}

/* ======================================
   FOOTER LARGURA TOTAL (FULL WIDTH)
   ====================================== */

/* footer ocupa tela toda */
.main-footer-one .footer-clean-new__main,
.main-footer-one .footer-clean-new__bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* fundo azul total */
.main-footer-one .footer-clean-new__main {
    background: #00081d !important;
    /* mais escuro ainda */
    padding-top: 65px;
    padding-bottom: 45px;
}

.main-footer-one .footer-clean-new__bottom {
    background: #00081d !important;
    /* mais escuro ainda */
    padding-top: 22px;
    padding-bottom: 28px;
}

/* separação visual */
.main-footer-one .footer-clean-new__main::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 45px;
}

/* conteúdo interno */
.main-footer-one .footer-clean-new__full {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 35px;
}

/* se existir espaço após footer */
.main-footer-one::after {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: #000b2a;
}

.footer-clean-new,
.footer-clean-new * {
    box-sizing: border-box;
}

.footer-clean-new {
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    background: #020b2c;
    color: #fff;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 0 100vmax #020b2c;
    clip-path: inset(0 -100vmax);
}

footer.footer-clean-new::before,
footer.footer-clean-new::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.footer-clean-new__main {
    padding: 64px 0 36px;
}

.footer-clean-new__main,
.footer-clean-new__bottom {
    position: relative;
    z-index: 2;
    background: transparent;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

body,
.site-wrapper,
.page-wrapper,
.main-wrapper {
    overflow-x: hidden;
}

.footer-clean-new__full {
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0;
}

.footer-clean-new__brand {
    max-width: 460px;
}

.footer-clean-new__logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-clean-new__logo {
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 22px;
}

.footer-clean-new .row {
    margin-left: 0;
    margin-right: 0;
}

.footer-clean-new .row>[class*="col-"] {
    padding-left: 16px;
    padding-right: 16px;
}

.footer-clean-new__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.9;
}

.footer-clean-new__title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-clean-new__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-clean-new__links li {
    margin-bottom: 12px;
}

.footer-clean-new__links li:last-child {
    margin-bottom: 0;
}

.footer-clean-new__links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.7;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-clean-new__links a:hover {
    color: #4da3ff;
    transform: translateX(3px);
}

.footer-clean-new__contact {
    margin: 0;
    font-style: normal;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.85;
}

.footer-clean-new__contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-clean-new__contact a:hover {
    color: #4da3ff;
}

.footer-clean-new__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #020b2c;
    padding: 18px 0;
}

.footer-clean-new__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-clean-new__copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

.footer-clean-new__bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo-small {
    max-height: 45px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-small:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, #405DE6 0%, #5851DB 20%, #833AB4 45%, #C13584 65%, #E1306C 82%, #FD1D1D 92%, #FCAF45 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    transition: all .35s ease;
}

.footer-instagram-link:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.footer-instagram-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.footer-instagram-icon i {
    color: #fff;
    font-size: 22px;
}

.footer-instagram-text {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
}

.footer-clean-new__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-clean-new__bottom-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-online-label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.footer-online-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(49, 214, 94, 0.16);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.footer-online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #31d65e;
    box-shadow: 0 0 0 4px rgba(49, 214, 94, 0.12);
    animation: footerOnlinePulse 1.8s infinite;
}

@keyframes footerOnlinePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(49, 214, 94, 0.35);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(49, 214, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(49, 214, 94, 0);
    }
}

@media (max-width: 991px) {
    .footer-clean-new__bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-clean-new__copy,
    .footer-clean-new__bottom-status,
    .footer-clean-new__bottom-links {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .footer-clean-new__bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-instagram-link {
        padding: 10px 16px;
    }

    .footer-instagram-text {
        font-size: 14px;
    }
}
/* ==========================================================
   HEADER DIGITALCARTÓRIOS
   AJUSTADO + REFINADO + CENTRALIZADO
   ========================================================== */

/* RESET */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

/* ==========================================================
   HEADER BASE
   ========================================================== */

.main-header.header-style-one {
    position: relative;
    width: 100%;
    z-index: 999;
    margin: 0;
    padding: 0;
    background: transparent;
}

.main-header .header-lower {
    margin: 0;
    padding: 8px 0 0;
    background: transparent;
}

/* ==========================================================
   BOX PRINCIPAL BRANCO
   ========================================================== */

.main-header .main-box {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
    min-height: 108px;

    background: #ffffff;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 38px;
    gap: 30px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ==========================================================
   LOGO
   ========================================================== */

.main-header .logo-box {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-header .logo {
    margin: 0;
}

.main-header .logo a {
    display: flex;
    align-items: center;
}

.main-header .logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

/* ==========================================================
   MENU CENTRAL
   ========================================================== */

.main-header .nav-outer {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header .main-menu {
    display: flex;
    align-items: center;
}


/* ==========================================================
   BLOCO DIREITO
   ========================================================== */

.main-header .outer-box {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}

/* ==========================================================
   BOTÃO CONTATO
   ========================================================== */

.main-header .menu-btn {
    margin: 0;
}

.main-header .menu-btn .theme-btn {
    min-width: 152px;
    height: 52px;

    border-radius: 40px;
    background: #02073f;
    color: #ffffff;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: all 0.3s ease;
}

.main-header .menu-btn .theme-btn:hover {
    background: #2458ff;
    transform: translateY(-2px);
}

.main-header .menu-btn .btn-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

/* ================================
   NAVBAR FIXA AO ROLAR A PÁGINA
================================ */

/* Header principal */
.main-header,
.header-style-one,
.header-lower {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
    transition: all 0.35s ease;
}

/* Caixa branca da navbar */
.main-header .main-box {
    width: calc(100% - 60px);
    max-width: 1650px;
    margin: 18px auto 0 auto;
    padding: 0 34px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: all .35s ease;
}

/* Quando descer a página */
.main-header.scrolled .main-box {
    margin-top: 0;
    min-height: 78px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
}

/* Corrige conteúdo atrás do header */
body {
    padding-top: 120px;
}

/* Logo */
.logo img {
    max-height: 58px;
    width: auto;
    transition: .3s;
}

.main-header.scrolled .logo img {
    max-height: 50px;
}


/* Botão contato */
.theme-btn.btn-style-one {
    height: 54px;
    padding: 0 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #02103d, #001a73);
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: .3s;
}

.theme-btn.btn-style-one:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 40, 255, .20);
}

/* Menu texto */
.menubars-text a {
    font-size: 18px;
    font-weight: 700;
    color: #06133b;
    text-decoration: none;
}

/* Hamburger */
.menubars {
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.menubars span {
    display: block;
    height: 2px;
    width: 100%;
    background: #06133b;
    border-radius: 20px;
}

/* Responsivo */
@media (max-width: 991px) {

    .main-header .main-box {
        width: calc(100% - 20px);
        min-height: 78px;
        padding: 0 18px;
        margin-top: 10px;
    }

    .nav-outer,
    .menubars-text,
    .menu-btn {
        display: none !important;
    }

    body {
        padding-top: 95px;
    }

    .logo img {
        max-height: 48px;
    }
}

/* ==========================================================
   TEXTO MENU
   ========================================================== */

.main-header .menubars-text {
    display: flex;
    align-items: center;
}

.main-header .menubars-text a {
    font-size: 18px;
    font-weight: 500;
    color: #08143b;
    text-decoration: none;
    line-height: 1;
    transition: 0.3s;
}

.main-header .menubars-text a:hover {
    color: #2458ff;
}

/* ==========================================================
   MENU HAMBURGUER
   ========================================================== */

.main-header .menubars {
    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;
    padding: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    cursor: pointer;
}

.main-header .menubars span {
    width: 24px;
    height: 2px;
    background: #08143b;
    border-radius: 10px;
    transition: 0.3s;
}

.main-header .menubars:hover span:nth-child(1) {
    width: 18px;
}

.main-header .menubars:hover span:nth-child(3) {
    width: 18px;
}

/* ==========================================================
   STICKY HEADER
   ========================================================== */

.main-header .sticky-header {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-header .sticky-header .logo img {
    max-height: 46px;
}




/* =========================================
   PRIVACIDADE / LGPD
   ========================================= */

.privacy-page-section {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.privacy-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(2, 22, 63, 0.08);
    border: 1px solid rgba(46, 88, 255, 0.08);
}

.privacy-hero {
    padding: 48px 48px 36px;
    background:
        linear-gradient(135deg, #04173f 0%, #0b2d78 55%, #2e58ff 100%);
    color: #ffffff;
    position: relative;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00092c 0%, #000929 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 88, 255, 0.28);
}

.privacy-badge i {
    color: #ffffff;
}

/* reflexo animado - feixe de luz fino */
.privacy-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 18%;
    height: 220%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.699) 50%,
            rgba(255, 255, 255, 0.08) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    transform: rotate(28deg);
    animation: badgeReflexo 2.5s linear infinite;
    pointer-events: none;
}

/* garante texto acima do brilho */
.privacy-badge>* {
    position: relative;
    z-index: 2;
}

/* movimento suave atravessando */
@keyframes badgeReflexo {
    0% {
        left: -35%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.privacy-title {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;
}

.privacy-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 26px;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.privacy-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}

.privacy-content {
    padding: 44px 48px 50px;
}

.privacy-section {
    margin-bottom: 34px;
}

.privacy-section h2 {
    color: #04173f;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 700;
}

.privacy-section p {
    color: #4e5b78;
    font-size: 17px;
    line-height: 1.95;
    margin-bottom: 14px;
}

.privacy-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff5ff 0%, #f8fbff 100%);
    border: 1px solid rgba(46, 88, 255, 0.12);
    margin: 10px 0 34px;
}

.privacy-highlight-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #2e58ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.privacy-highlight-content h3 {
    color: #04173f;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.privacy-highlight-content p {
    margin: 0;
    color: #4e5b78;
    line-height: 1.85;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.privacy-mini-card {
    background: #f8fbff;
    border: 1px solid rgba(46, 88, 255, 0.10);
    border-radius: 20px;
    padding: 22px 22px 18px;
}

.privacy-mini-card h4 {
    color: #0a255f;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.privacy-mini-card p {
    color: #576583;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.privacy-list-card {
    background: #ffffff;
    border: 1px solid rgba(4, 23, 63, 0.08);
    border-radius: 22px;
    padding: 24px 24px 10px;
    box-shadow: 0 10px 30px rgba(4, 23, 63, 0.04);
}

.privacy-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #4e5b78;
    font-size: 16px;
    line-height: 1.8;
}

.privacy-check-list li i {
    color: #2e58ff;
    margin-top: 6px;
    min-width: 16px;
}

.privacy-contact-box {
    margin-top: 10px;
    padding: 28px;
    border-radius: 24px;
    background: #04173f;
}

.privacy-contact-box h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 12px;
}

.privacy-contact-box p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.privacy-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.privacy-contact-line i {
    color: #79a7ff;
    width: 18px;
}

.privacy-contact-line a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-contact-line a:hover {
    color: #8ec0ff;
}

/* =========================================
   PÁGINA DE SERVIÇOS - DIGITALCARTÓRIOS
   ========================================= */

.dc-services-page {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(46, 88, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.dc-services-hero {
    background: linear-gradient(135deg, #02133a 0%, #08296b 55%, #2e58ff 100%);
    border-radius: 30px;
    padding: 55px 48px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(2, 19, 58, 0.18);
}

.dc-services-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.dc-services-hero__content {
    position: relative;
    z-index: 2;
}

.dc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00092c 0%, #000929 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 88, 255, 0.28);
}

.dc-section-badge.center {
    background: rgba(46, 88, 255, 0.08);
    color: #08306e;
}

/* reflexo animado - feixe de luz fino */
.dc-section-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 18%;
    height: 220%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.699) 50%,
            rgba(255, 255, 255, 0.08) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    transform: rotate(28deg);
    animation: badgeReflexo 2.5s linear infinite;
    pointer-events: none;
}

/* garante texto acima do brilho */
.dc-section-badge>* {
    position: relative;
    z-index: 2;
}

/* movimento suave atravessando */
@keyframes badgeReflexo {
    0% {
        left: -35%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.dc-services-hero__title {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
}

.dc-services-hero__text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 720px;
}

.dc-services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.dc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #04173f;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.dc-btn-primary:hover {
    transform: translateY(-2px);
    background: #eef4ff;
    color: #0b3c9d;
}

.dc-btn-primary.large {
    min-height: 58px;
    padding: 0 30px;
}

.dc-contact-mini span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.dc-services-hero__card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.dc-services-hero__card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.dc-services-hero__card h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.dc-services-hero__card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    margin: 0;
}

.dc-services-block {
    margin-bottom: 42px;
}

.dc-section-heading {
    margin-bottom: 30px;
}

.dc-section-heading h2 {
    color: #04173f;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin: 12px auto 0;
    max-width: 920px;
}

.dc-service-module-card {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 26px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 16px 40px rgba(4, 23, 63, 0.05);
    transition: all 0.3s ease;
}

.dc-service-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(4, 23, 63, 0.10);
}

.dc-service-module-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e9f1ff 0%, #f4f8ff 100%);
    color: #2e58ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.dc-service-module-card h3 {
    color: #071c4d;
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
    font-weight: 700;
}

.dc-service-module-card p {
    color: #5c6884;
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
}

.dc-benefit-card {
    height: 100%;
    background: #ffffff;
    border-radius: 26px;
    padding: 32px 28px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 18px 45px rgba(4, 23, 63, 0.05);
}

.dc-benefit-card.highlight {
    background: linear-gradient(180deg, #04173f 0%, #0b2d78 100%);
    border-color: transparent;
}

.dc-benefit-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.dc-benefit-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #edf3ff;
    color: #2e58ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.dc-benefit-card.highlight .dc-benefit-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.dc-benefit-card h3 {
    color: #071c4d;
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.dc-benefit-card.highlight h3 {
    color: #ffffff;
}

.dc-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #596580;
    line-height: 1.8;
    font-size: 15.5px;
}

.dc-check-list li i {
    color: #2e58ff;
    margin-top: 6px;
    min-width: 16px;
}

.dc-benefit-card.highlight .dc-check-list li {
    color: rgba(255, 255, 255, 0.92);
}

.dc-benefit-card.highlight .dc-check-list li i {
    color: #8ec3ff;
}

.dc-differentials-block {
    background: #04173f;
    border-radius: 30px;
    padding: 48px 34px 18px;
}

.dc-differentials-block .dc-section-heading h2,
.dc-differentials-block .dc-section-badge.center {
    color: #ffffff;
}

.dc-differentials-block .dc-section-badge.center {
    background: rgba(255, 255, 255, 0.12);
}

.dc-differential-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #00021f 0%, #001d6d 100%);
    border: 1px solid rgba(46, 88, 255, 0.08);
    border-radius: 24px;
    padding: 34px 28px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(6, 24, 68, 0.06);
    transition: all 0.35s ease;
    isolation: isolate;
    /* importante */
}

/* hover */
.dc-differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(6, 24, 68, 0.12);
    border-color: rgba(46, 88, 255, 0.16);
}

/* FEIXE DE LUZ */
.dc-differential-card::before {
    content: "";
    position: absolute;
    top: -60%;
    left: 0;
    width: 70px;
    height: 220%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.10) 20%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.10) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    opacity: 0;
    transform: translateX(-220%) rotate(24deg);
    transition: transform 0.9s ease, opacity 0.25s ease;
}

/* brilho suave de fundo */
.dc-differential-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at top right,
            rgba(46, 88, 255, 0.07),
            transparent 42%);
}

/* ativa no hover */
.dc-differential-card:hover::before {
    animation: lightHoverSweep 1s ease-out;
}

/* =========================================
   CONTEÚDO
========================================= */

.dc-differential-card__icon,
.dc-differential-card h3,
.dc-differential-card p {
    position: relative;
    z-index: 2;
}

.dc-differential-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #2e58ff 0%, #446cff 100%);
    box-shadow: 0 12px 25px rgba(46, 88, 255, 0.20);
    margin-bottom: 22px;
}

.dc-differential-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.3;
}

.dc-differential-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff8f;
    margin: 0;
}

/* animação */
@keyframes lightHoverSweep {
    0% {
        left: -60%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }

    100% {
        left: 140%;
        opacity: 0;
    }
}

.dc-services-cta {
    margin-top: 42px;
    background: linear-gradient(135deg, #eff5ff 0%, #f7faff 100%);
    border-radius: 28px;
    padding: 34px 34px;
    border: 1px solid rgba(46, 88, 255, 0.08);
}

.dc-services-cta h2 {
    color: #04173f;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 700;
}

.dc-services-cta p {
    color: #5c6884;
    line-height: 1.85;
    margin: 0;
    font-size: 16px;
    max-width: 760px;
}

.dc-services-cta__btn {
    display: flex;
    justify-content: flex-end;
}

/* =========================================
   SEÇÃO DE CLIENTES - GRID FIXO
   ========================================= */

.clients-section-grid {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.clients-section-header {
    margin-bottom: 45px;
}

.clients-section-header .section-desc p {
    max-width: 820px;
    margin: 18px auto 0;
    color: #5d6985;
    font-size: 17px;
    line-height: 1.9;
}

.clients-grid {
    margin-top: 10px;
}

.client-card {
    height: 190px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 14px 40px rgba(4, 23, 63, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(4, 23, 63, 0.10);
    border-color: rgba(46, 88, 255, 0.18);
}

.client-card img {
    max-width: 100%;
    max-height: 105px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(8%);
    transition: all 0.3s ease;
}

.client-card:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.client-card-info {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 14px 40px rgba(4, 23, 63, 0.05);
    padding: 26px 22px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-card-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(4, 23, 63, 0.10);
    border-color: rgba(46, 88, 255, 0.18);
}

.client-card-info__logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.client-card-info__logo img {
    max-width: 100%;
    max-height: 95px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-card-info:hover .client-card-info__logo img {
    transform: scale(1.03);
}

.client-card-info h3 {
    color: #071c4d;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 10px;
}

.client-card-info p {
    color: #5f6c87;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.client-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0 0 8px;
}

.client-filter-wrap {
    margin-bottom: 40px;
}

.client-filter-btn {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 1px solid rgba(46, 88, 255, 0.12);
    border-radius: 999px;
    padding: 14px 22px;
    min-height: 52px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #5f6677;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(4, 23, 63, 0.04);
}

.client-filter-btn::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2e58ff, #00a6ff);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    opacity: 0.95;
}

.client-filter-btn:hover {
    color: #071c4d;
    border-color: rgba(46, 88, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(4, 23, 63, 0.08);
    background: #f8fbff;
}

.client-filter-btn:hover::after {
    transform: scaleX(1);
}

.client-filter-btn.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #04173f 0%, #0a2f80 60%, #2e58ff 100%);
    border-color: transparent;
    box-shadow: 0 14px 35px rgba(18, 52, 129, 0.25);
}

.client-filter-btn.active::after {
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.95);
}

/* mantém hover escuro somente para os não ativos */
.client-filter-btn:hover:not(.active) {
    color: #071c4d;
}

.client-filter-item {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.client-filter-item.is-hidden {
    display: none !important;
}

.contact-thumb,
.no-image-contact {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background: #eef2f8;
    border-radius: 28px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centraliza verticalmente */
}

.contact-thumb figure {
    margin: 0;
}

.contact-thumb figure img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

.contact-info-overlay,
.static-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    height: 100%;
    margin-top: 10px;
    /* desce um pouco */
}

/* cards internos */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px;
    background: transparent;
    border: none;
    /* remove borda */
    box-shadow: none;
    /* remove sombra */
    border-radius: 0;
}

/* ícones */
.contact-info-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2e58ff;
    background: rgba(46, 88, 255, 0.08);
}

/* textos */
.contact-info-text h4 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: #071c4d;
    text-transform: uppercase;
}

.contact-info-text p {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.6;
    color: #33415f;
}

.contact-info-text p:last-child {
    margin-bottom: 0;
}

.contact-info-text a {
    color: #33415f;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-info-text a:hover {
    color: #2e58ff;
}

.contact-info-extra {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-extra span {
    font-size: 16px;
    color: #33415f;
}

.contact-info-extra strong {
    font-size: 17px;
    color: #071c4d;
    font-weight: 800;
}

/* faz a coluna da esquerda preencher melhor */
.contact-thumb.no-image-contact,
.no-image-contact {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

/* se estiver dentro de coluna bootstrap */
.no-image-contact,
.contact-thumb.no-image-contact {
    min-height: 100%;
}

.no-image-contact .contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    box-shadow: none;
}

.no-image-contact .contact-info-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2e58ff;
    background: rgba(46, 88, 255, 0.08);
}

.no-image-contact .contact-info-text h4 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: #071c4d;
    text-transform: uppercase;
}

.no-image-contact .contact-info-text p {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.65;
    color: #25314d;
}

.no-image-contact .contact-info-text p:last-child {
    margin-bottom: 0;
}

.no-image-contact .contact-info-text a {
    color: #25314d;
    text-decoration: none;
    transition: 0.3s ease;
}

.no-image-contact .contact-info-text a:hover {
    color: #2e58ff;
}

.no-image-contact .contact-info-extra {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.no-image-contact .contact-info-extra span {
    font-size: 17px;
    color: #25314d;
}

.no-image-contact .contact-info-extra strong {
    font-size: 18px;
    color: #071c4d;
    font-weight: 800;
}

/* =========================================
   HERO SLIDER DIGITALCARTÓRIOS
   ========================================= */

.dc-hero-slider {
    position: relative;
    overflow: hidden;
    background: #02133a;
}

.dc-hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.dc-hero-slide {
    position: absolute;
    background-image: url(../images/images-digcart/slider-dc-home.png);
    inset: 0;
    min-height: 840px;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.2s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.dc-hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.dc-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 170px 0 140px;
}

.dc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00092c 0%, #000929 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 88, 255, 0.28);
}

/* reflexo animado - feixe de luz fino */
.dc-hero-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 18%;
    height: 220%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.699) 50%,
            rgba(255, 255, 255, 0.08) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    transform: rotate(28deg);
    animation: badgeReflexo 2.5s linear infinite;
    pointer-events: none;
}

/* garante texto acima do brilho */
.dc-hero-badge>* {
    position: relative;
    z-index: 2;
}

/* =========================================
   MODAL ÚNICO CARTÓRIOS
   ========================================= */

.cartorio-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cartorio-modal.active {
    opacity: 1;
    visibility: visible;
}

.cartorio-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 12, 38, 0.68);
    backdrop-filter: blur(6px);
}

.cartorio-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: calc(100% - 30px);
    max-width: 720px;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px 30px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
}

.cartorio-modal.active .cartorio-modal-dialog {
    transform: translate(-50%, -50%) scale(1);
}

.cartorio-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #eef3ff;
    color: #0a2f80;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cartorio-modal-close:hover {
    background: #2e58ff;
    color: #ffffff;
}

.cartorio-modal-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(46, 88, 255, 0.10);
}

.cartorio-modal-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e58ff 0%, #446cff 100%);
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 14px 28px rgba(46, 88, 255, 0.22);
}

.cartorio-modal-header h3 {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #071c4d;
}

.cartorio-modal-subtitle {
    margin: 0;
    font-size: 15px;
    color: #64708a;
}

.cartorio-modal-body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.95;
    color: #34415f;
}

.cartorio-modal-footer {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
}

.cartorio-modal-btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #04173f 0%, #0a2f80 65%, #2e58ff 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cartorio-modal-btn-contact:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(18, 52, 129, 0.22);
}

body.cartorio-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .cartorio-modal-dialog {
        padding: 26px 18px 22px;
        border-radius: 22px;
    }

    .cartorio-modal-header {
        align-items: flex-start;
    }

    .cartorio-modal-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 24px;
        border-radius: 16px;
    }

    .cartorio-modal-header h3 {
        font-size: 24px;
    }

    .cartorio-modal-body p {
        font-size: 16px;
        line-height: 1.8;
    }

    .cartorio-modal-footer {
        justify-content: stretch;
    }

    .cartorio-modal-btn-contact {
        width: 100%;
    }
}

/* movimento suave atravessando */
@keyframes badgeReflexo {
    0% {
        left: -35%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.dc-hero-content h1 {
    font-size: 62px;
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.dc-hero-content h2 {
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
    color: #008FBE;
    margin: 0 0 24px;
    /* brilho */
    text-shadow:
        0 0 5px rgba(0, 143, 190, 0.60),
        0 0 10px rgba(0, 143, 190, 0.45),
        0 0 18px rgba(0, 143, 190, 0.35);
    animation: brilhoTitulo 2.5s ease-in-out infinite alternate;
}

.dc-hero-content p {
    font-size: 15px;
    color: #ffffffc9;
}

/* animação suave */
@keyframes brilhoTitulo {
    0% {
        text-shadow:
            0 0 4px rgb(0, 0, 0),
            0 0 8px rgb(0, 0, 0),
            0 0 14px rgb(0, 0, 0);
    }

    100% {
        text-shadow:
            0 0 8px rgba(0, 6, 92, 0.8),
            0 0 16px rgba(0, 6, 92, 0.8),
            0 0 28px rgba(0, 6, 92, 0.8);
    }
}

.dc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 38px;
}

.dc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dc-hero-btn.primary {
    background: linear-gradient(135deg, #2e58ff 0%, #446cff 100%);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(46, 88, 255, 0.24);
}

.dc-hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(46, 88, 255, 0.30);
    color: #ffffff;
}

.dc-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.dc-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateY(-2px);
}

.dc-hero-bottom {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 760px;
}

.dc-hero-since {
    min-width: 220px;
}

.dc-hero-since strong {
    display: block;
    font-size: 22px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 6px;
}

.dc-hero-since span {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.dc-hero-text {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    max-width: 420px;
}

/* controles */
.dc-hero-controls {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(1, 15, 50, 0.50);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dc-hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dc-hero-arrow:hover {
    background: #008FBE;
    transform: translateY(-2px);
}

.dc-hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dc-hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dc-hero-dots button.active {
    width: 34px;
    border-radius: 999px;
    background: #008FBE;
}

/* =========================================
   HERO SLIDER SUBINDO ATÉ O TOPO
   ========================================= */

/* remove espaço superior da página */
html,
body {
    margin: 0;
    padding: 0;
}

/* header sobreposto ao banner */
.main-header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
}

/* remove folga superior do header */
.main-header .header-lower {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* caixa da navbar um pouco abaixo do topo */
.main-header .main-box {
    margin-top: 22px !important;
}

/* slider sobe por trás da navbar */
.dc-hero-slider {
    margin-top: -120px;
    /* puxa para cima */
    padding-top: 120px;
    /* compensa conteúdo interno */
    position: relative;
    z-index: 1;
}

/* garante altura visual bonita */
.dc-hero-slide {
    min-height: 920px;
}

/* conteúdo do banner mais abaixo para não colidir com a navbar */
.dc-hero-content {
    padding-top: 210px;
}

/* se houver wrapper no banner antigo */
.banner-section-one,
.dc-hero-slider,
.dc-hero-slide {
    top: 0;
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991px) {
    .dc-differential-card {
        padding: 28px 22px;
    }

    .dc-differential-card h3 {
        font-size: 21px;
    }

    .dc-differential-card p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .dc-differential-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .dc-differential-card__icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .dc-differential-card h3 {
        font-size: 19px;
    }

    .dc-differential-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* responsivo */
@media (max-width: 1199px) {
    .dc-hero-slider {
        margin-top: -100px;
        padding-top: 100px;
    }

    .dc-hero-slide {
        min-height: 820px;
    }

    .dc-hero-content {
        padding-top: 180px;
    }
}

@media (max-width: 991px) {
    .main-header .main-box {
        margin-top: 12px !important;
    }

    .dc-hero-slider {
        margin-top: -85px;
        padding-top: 85px;
    }

    .dc-hero-slide {
        min-height: 760px;
    }

    .dc-hero-content {
        padding-top: 150px;
    }
}

@media (max-width: 575px) {
    .dc-hero-slider {
        margin-top: -70px;
        padding-top: 70px;
    }

    .dc-hero-slide {
        min-height: 680px;
    }

    .dc-hero-content {
        padding-top: 130px;
    }
}

/* responsivo */
@media (max-width: 1199px) {
    .dc-hero-slide {
        min-height: 760px;
    }

    .dc-hero-content h1 {
        font-size: 58px;
    }

    .dc-hero-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .dc-hero-slide {
        min-height: 720px;
        background-position: center right;
    }

    .dc-hero-content {
        padding: 140px 0 120px;
        max-width: 100%;
    }

    .dc-hero-content h1 {
        font-size: 48px;
    }

    .dc-hero-content h2 {
        font-size: 30px;
    }

    .dc-hero-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .dc-hero-since {
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .dc-hero-slide {
        min-height: 680px;
    }

    .dc-hero-content {
        padding: 120px 0 110px;
    }

    .dc-hero-content h1 {
        font-size: 38px;
    }

    .dc-hero-content h2 {
        font-size: 24px;
    }

    .dc-hero-content p,
    .dc-hero-text,
    .dc-hero-since span {
        font-size: 15px;
    }

    .dc-hero-since strong {
        font-size: 22px;
    }

    .dc-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .dc-hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .dc-hero-controls {
        bottom: 18px;
        padding: 10px 14px;
        gap: 12px;
    }

    .dc-hero-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .no-image-contact .contact-info-card {
        gap: 14px;
        padding: 18px 16px;
    }

    .no-image-contact .contact-info-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 14px;
    }

    .no-image-contact .contact-info-text h4 {
        font-size: 17px;
    }

    .no-image-contact .contact-info-text p,
    .no-image-contact .contact-info-extra span,
    .no-image-contact .contact-info-extra strong {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* responsivo */
@media (max-width: 991px) {
    .contact-info-overlay {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .contact-thumb {
        overflow: visible;
    }

    .contact-thumb figure img {
        border-radius: 24px;
    }

    .contact-thumb,
    .no-image-contact {
        padding: 25px 18px;
    }

    .contact-info-card {
        gap: 14px;
        padding: 14px 0;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .contact-info-text h4 {
        font-size: 18px;
    }

    .contact-info-text p,
    .contact-info-extra span,
    .contact-info-extra strong {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .contact-info-card {
        gap: 14px;
        padding: 18px 16px;
    }

    .contact-info-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-info-text h4 {
        font-size: 18px;
    }

    .contact-info-text p,
    .contact-info-extra span,
    .contact-info-extra strong {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .client-filter-tabs {
        gap: 12px;
        justify-content: flex-start;
    }

    .client-filter-btn {
        font-size: 14px;
        padding: 13px 18px;
        min-height: 48px;
    }
}

@media (max-width: 575px) {
    .client-filter-wrap {
        margin-bottom: 28px;
    }

    .client-filter-tabs {
        gap: 10px;
    }

    .client-filter-btn {
        font-size: 13px;
        padding: 12px 16px;
        min-height: 44px;
        width: auto;
    }
}

@media (max-width: 991px) {
    .clients-section-grid {
        padding: 90px 0 70px;
    }

    .client-card-info {
        border-radius: 20px;
    }

    .client-card-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .client-card-info {
        padding: 22px 18px;
    }

    .client-card-info__logo {
        height: 105px;
    }

    .client-card-info__logo img {
        max-height: 82px;
    }

    .client-card-info h3 {
        font-size: 17px;
    }

    .client-card-info p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .clients-section-grid {
        padding: 90px 0 70px;
    }

    .client-card {
        height: 170px;
        border-radius: 20px;
    }

    .client-card img {
        max-height: 95px;
    }
}

@media (max-width: 575px) {
    .clients-section-header .section-desc p {
        font-size: 16px;
    }

    .client-card {
        height: 150px;
        padding: 18px;
    }

    .client-card img {
        max-height: 82px;
    }
}

@media (max-width: 1199px) {
    .dc-services-hero__title {
        font-size: 44px;
    }

    .dc-section-heading h2 {
        font-size: 34px;
    }

    .dc-services-cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .dc-services-page {
        padding: 90px 0 70px;
    }

    .dc-services-hero {
        padding: 38px 28px;
    }

    .dc-services-hero__title {
        font-size: 36px;
    }

    .dc-services-hero__card {
        margin-top: 24px;
    }

    .dc-differentials-block {
        padding: 38px 22px 12px;
    }

    .dc-services-cta {
        padding: 28px 24px;
    }

    .dc-services-cta__btn {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .dc-services-hero {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .dc-services-hero__title {
        font-size: 30px;
    }

    .dc-services-hero__text {
        font-size: 16px;
    }

    .dc-services-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .dc-section-heading h2 {
        font-size: 28px;
    }

    .dc-service-module-card,
    .dc-benefit-card,
    .dc-differential-card {
        padding: 24px 20px;
    }

    .dc-services-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .privacy-page-section {
        padding: 90px 0 70px;
    }

    .privacy-hero,
    .privacy-content {
        padding-left: 28px;
        padding-right: 28px;
    }

    .privacy-title {
        font-size: 38px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {

    .privacy-hero,
    .privacy-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-lead {
        font-size: 16px;
    }

    .privacy-highlight-box {
        flex-direction: column;
    }
}


/* ==========================================================
   RESPONSIVO
   ========================================================== */

/* =========================================
   CORREÇÃO MENU MOBILE
   ========================================= */

@media (max-width: 1199px) {

    /* esconde apenas o menu desktop */
    .main-header .nav-outer,
    .main-header .menu-btn,
    .main-header .menubars-text,
    .main-header .menubars {
        display: none !important;
    }

    /* mostra o botão mobile correto */
    .main-header .mobile-nav-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: 12px;
        border-radius: 8px;
        background: #2e58ff;
        color: #fff !important;
        font-size: 20px;
        line-height: 1;
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        cursor: pointer;
    }

    /* restaura o painel mobile do template */
    .mobile-menu {
        display: block !important;
        z-index: 999999 !important;
    }

    .mobile-menu .menu-backdrop {
        z-index: 999998 !important;
    }

    .mobile-menu .menu-box {
        z-index: 999999 !important;
        right: 0 !important;
        visibility: visible;
    }


}



@media (max-width: 1199px) {

    .main-header .nav-outer {
        display: none;
    }

    .main-header .outer-box {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 0 !important;
    }

    .main-header .menubars-text {
        display: none;
    }

    .main-header .main-box {
        min-height: 88px;
    }

    .main-header .logo-box {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {

    .main-header .header-lower {
        padding-top: 0;
    }

    .main-header .main-box {
        width: calc(100% - 16px);
        min-height: 78px;
        border-radius: 16px;
        padding: 0 16px;
    }

    .main-header .logo img {
        max-height: 42px;
    }

    .main-header .menu-btn .theme-btn {
        min-width: 126px;
        height: 44px;
        padding: 0 18px;
    }

    .main-header .menu-btn .btn-title {
        font-size: 15px;
    }

    .main-header .menubars {
        width: 32px;
    }
}

/* responsivo */
@media (max-width: 991px) {
    .main-footer-one .footer-clean-new__full {
        padding: 0 20px;
    }

    .main-footer-one::after {
        height: 40px;
    }
}

/* responsivo */
@media (max-width: 991px) {
    .main-footer-one .footer-clean-new__main {
        margin-top: 20px;
        padding: 50px 0 30px;
    }
}

@media (max-width: 991px) {
    .category-grid ul {
        grid-template-columns: 1fr;
    }
}

body.service-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-modal-image-wrap {
        height: 220px;
    }

    .service-modal-content {
        padding: 22px;
    }

    .service-modal-content h3 {
        font-size: 24px;
    }

    .service-modal-content p {
        font-size: 15px;
    }
}

body.about-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-modal-image-wrap {
        height: 220px;
    }

    .about-modal-content {
        padding: 24px 20px 24px;
    }

    .about-modal-content h2 {
        font-size: 24px;
    }

    .about-modal-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================
   CORREÇÃO FORÇADA DO MENU MOBILE
   ========================================= */

@media (max-width: 1199px) {
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 320px !important;
        max-width: 100% !important;
        height: 100vh !important;
        z-index: 999999 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-menu .menu-backdrop {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.70) !important;
        opacity: 0;
        visibility: hidden;
        z-index: 1 !important;
    }

    .mobile-menu .menu-box {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 320px !important;
        max-width: 100% !important;
        height: 100vh !important;
        background: #04173f !important;
        z-index: 5 !important;
        opacity: 0;
        visibility: hidden;
        transform: translateX(101%) !important;
        transition: all 0.4s ease !important;
        overflow-y: auto !important;
    }

    body.mobile-menu-visible .mobile-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    body.mobile-menu-visible .mobile-menu .menu-backdrop {
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.mobile-menu-visible .mobile-menu .menu-box {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    .mobile-menu .navigation {
        display: block !important;
    }

    .mobile-menu .navigation li {
        display: block !important;
    }

    .mobile-menu .navigation li a {
        display: block !important;
        color: #ffffff !important;
    }

    .mobile-menu .close-btn {
        display: block !important;
        color: #ffffff !important;
        cursor: pointer !important;
    }
}



/* se quiser mais arredondado troque para:
border-radius: 0 0 34px 34px;
*/

/*.page-wrapper,
#smooth-wrapper {
    overflow: visible !important;
}

.grecaptcha-badge {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999999 !important;
}
*/

/* =========================================================
   FIX GLOBAL - FLOATING ELEMENTS / reCAPTCHA / WHATSAPP
========================================================= */

/* Mantém o site sem barra horizontal, mas permite elementos fixos aparecerem */
html,
body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Evita cortar reCAPTCHA, WhatsApp, scroll-top e elementos fixed */
.page-wrapper,
#smooth-wrapper,
#smooth-content {
    overflow: visible !important;
}

/* reCAPTCHA v3 badge */
.grecaptcha-badge {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999 !important;
    /*right: 14px !important;*/
    bottom: 85px !important;
}

/* Scroll top acima do conteúdo */
.scroll-to-top {
    z-index: 9999 !important;
}
.preloader {
    z-index: 999999;
}
/* Botão WhatsApp flutuante, se existir */

.whatsapp-floating {
    position: fixed;
    right: 10px;
    bottom: 200px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 999999;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .38);
    transition: all .3s ease;
}

    .whatsapp-floating:hover {
        transform: translateY(-4px) scale(1.04);
        color: #fff !important;
        box-shadow: 0 16px 34px rgba(37, 211, 102, .55);
    }

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #111827;
    color: #fff;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    pointer-events: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

    /* seta */
    .whatsapp-tooltip::after {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: #111827;
    }

/* mostrar ao hover */
.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* animação pulse */
.whatsapp-floating::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .22);
    z-index: -1;
    animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(.85);
        opacity: .9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* mobile */
@media (max-width: 768px) {
    .whatsapp-tooltip {
        display: none;
    }
}







/* FUNDO */
.cartorio-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .cartorio-modal.active {
        display: flex;
    }

.cartorio-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.72);
    backdrop-filter: blur(4px);
}

/* BOX */
.cartorio-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,.20);
    animation: modalUp .25s ease;
    z-index: 2;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* FECHAR TOPO */
.cartorio-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    cursor: pointer;
    transition: .25s;
    font-size: 18px;
}

    .cartorio-modal-close:hover {
        background: #e2e8f0;
        transform: rotate(90deg);
    }

/* HEADER */
.cartorio-modal-header {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.cartorio-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#003ea8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 28px rgba(13,110,253,.25);
}

.cartorio-modal-head-text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.cartorio-modal-subtitle {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
}

/* BODY */
.cartorio-modal-body {
    padding: 18px 0 10px;
}

    .cartorio-modal-body p {
        margin: 0;
        color: #334155;
        line-height: 1.75;
        font-size: 15px;
    }

/* FOOTER */
.cartorio-modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cartorio-modal-btn-contact,
.cartorio-modal-btn-close {
    flex: 1;
    min-height: 52px;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: .25s;
    padding: 0 18px;
}

/* BOTÃO CONTATO */
.cartorio-modal-btn-contact {
    background: linear-gradient(135deg,#0d6efd,#0045c7);
    color: #fff !important;
    box-shadow: 0 14px 24px rgba(13,110,253,.22);
}

    .cartorio-modal-btn-contact:hover {
        transform: translateY(-2px);
        color: #fff !important;
    }

/* BOTÃO FECHAR */
.cartorio-modal-btn-close {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

    .cartorio-modal-btn-close:hover {
        background: #eef2f7;
    }

/* MOBILE */
@media(max-width:768px) {

    .cartorio-modal-dialog {
        padding: 24px;
        border-radius: 22px;
    }

    .cartorio-modal-footer {
        flex-direction: column;
    }

    .cartorio-modal-btn-contact,
    .cartorio-modal-btn-close {
        width: 100%;
    }

    .cartorio-modal-head-text h3 {
        font-size: 21px;
    }
}





/* ==========================================
   ARREDONDAR APENAS LATERAIS DA NAVBAR
   sem alterar estrutura interna
========================================== */

.main-header.header-style-one .main-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: 0px;
    margin: 0px !important;
    padding: 0 28px;
    min-height: 82px;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.20) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* logo esquerda / menu direita */
    gap: 24px;
    left: 0;
    right: 0;
}

/*.main-header.header-style-one .main-box {
    border-radius: 20px !important;
    background: linear-gradient( 135deg, rgba(10, 25, 55, 0.75), rgba(37, 99, 235, 0.55) ) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.25);
}*/



/* ao rolar a página */
.main-header.header-style-one.fixed-header .main-box,
.main-header.header-style-one.scrolled .main-box {
    background: rgba(20, 60, 120, 0.20) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    color: #ffffff;
}

.main-header .header-lower .outer-box .menubars span {
    background-color: #ffffff;
}
/* MOBILE - ESCURECER OVERLAY EXISTENTE */
@media (max-width: 767px) {

    .dc-hero-slide.active::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 2 !important;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.86) 40%, rgba(0, 0, 0, 0.80) 100% ) !important;
        pointer-events: none !important;
    }

    .dc-hero-slide .dc-hero-overlay {
        z-index: 1 !important;
    }

    .dc-hero-slide .container {
        position: relative !important;
        z-index: 3 !important;
    }
}