:root {
    --primary-950: #03293c;
    --primary-900: #063b55;
    --primary-800: #07506f;
    --primary-700: #086b8f;
    --primary-600: #0783a8;
    --primary-500: #079cc2;
    --primary-400: #25b9d6;
    --accent: #d3a437;
    --accent-light: #f1ce72;
    --success: #25d366;
    --white: #ffffff;
    --surface: #f4f7f9;
    --surface-2: #eaf2f5;
    --text: #102431;
    --text-soft: #5d6f79;
    --border: rgba(8, 107, 143, 0.16);
    --shadow: 0 24px 70px rgba(2, 41, 60, 0.18);
    --shadow-soft: 0 16px 40px rgba(2, 41, 60, 0.09);
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

section {
    scroll-margin-top: 100px;
}

.top-bar {
    position: relative;
    z-index: 110;
    min-height: 34px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.84);
    background: #022232;
    font-size: 11px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar strong {
    color: var(--accent-light);
    font-weight: 700;
}

/* Cabeçalho */
.site-header {
    position: fixed;
    inset: 34px 0 auto;
    z-index: 100;
    height: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 41, 60, 0.76);
    backdrop-filter: blur(14px);
    transition:
        top 0.25s ease,
        height 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.scrolled {
    top: 0;
    height: 72px;
    background: rgba(3, 41, 60, 0.97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    flex-shrink: 0;
}

.brand-symbol {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}

.brand-symbol svg {
    width: 30px;
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-text {
    display: grid;
    line-height: 1;
}

.brand-text strong {
    font-size: 21px;
    letter-spacing: -0.6px;
}

.brand-text strong span {
    color: var(--accent-light);
}

.brand-text small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--accent-light);
    transition: right 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 10px;
    color: var(--primary-950);
    background: var(--accent-light);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 26px rgba(211, 164, 55, 0.24);
    transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: #f8dc91;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 5px 0;
    border-radius: 10px;
    background: var(--white);
    transition: 0.2s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 820px;
    padding: 180px 0 0;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 77% 35%, rgba(37, 185, 214, 0.18), transparent 28%),
        radial-gradient(circle at 15% 75%, rgba(211, 164, 55, 0.12), transparent 28%),
        linear-gradient(125deg, var(--primary-950) 0%, var(--primary-900) 52%, #075d78 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-one {
    width: 520px;
    height: 520px;
    right: -190px;
    top: 80px;
}

.hero-decoration-two {
    width: 320px;
    height: 320px;
    right: 120px;
    bottom: 70px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 690px;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #58e79a;
    box-shadow: 0 0 0 5px rgba(88, 231, 154, 0.12);
}

.hero h1 {
    margin-top: 25px;
    font-family: "Merriweather", serif;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.hero h1 span {
    display: block;
    color: var(--accent-light);
}

.hero-description {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 20px;
    height: 20px;
}

.button-primary {
    color: var(--primary-950);
    background: var(--accent-light);
    box-shadow: 0 16px 34px rgba(211, 164, 55, 0.22);
}

.button-primary svg {
    fill: currentColor;
}

.button-primary:hover {
    background: #f8dc91;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.button-secondary svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.hero-benefits {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
}

.hero-benefits svg {
    width: 17px;
    height: 17px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 2.5;
    background: rgba(241, 206, 114, 0.1);
}

.authority-inline {
    margin-top: 23px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.62);
}

.authority-inline strong {
    color: var(--white);
}

/* Card suporte */
.support-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.support-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--accent), var(--primary-400));
}

.support-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--primary-700);
    background: #e9f5f8;
}

.support-icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-label {
    color: var(--primary-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.support-card h2 {
    margin-top: 4px;
    font-size: 22px;
    letter-spacing: -0.7px;
}

.online-status-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(37, 211, 102, .18);
    border-radius: 12px;
    background: rgba(37, 211, 102, .07);
}

.online-status-box strong,
.online-status-box small {
    display: block;
}

.online-status-box strong {
    font-size: 13px;
}

.online-status-box small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 11px;
}

.support-card > p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.support-main-cta {
    min-height: 48px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--white);
    background: var(--success);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
    transition: .2s ease;
}

.support-main-cta:hover {
    transform: translateY(-2px);
    filter: brightness(.96);
}

.remote-options {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.remote-card {
    min-height: 77px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border: 1px solid #dce6ea;
    border-radius: 13px;
    background: var(--white);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.remote-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-400);
    box-shadow: 0 13px 32px rgba(5, 80, 111, 0.11);
}

.remote-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
}

.remote-logo-anydesk {
    position: relative;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 11px;
    background: #ee3344;
}

.remote-logo-anydesk span {
    width: 14px;
    height: 14px;
    display: block;
    transform: rotate(45deg);
    background: var(--white);
}

.remote-logo-teamviewer {
    color: var(--white);
    background: #0e8ee9;
}

.remote-logo-teamviewer svg {
    width: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.remote-card strong,
.remote-card small {
    display: block;
}

.remote-card strong {
    font-size: 14px;
}

.remote-card small {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 11px;
}

.download-icon {
    width: 21px;
    fill: none;
    stroke: #71838c;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-note {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border-radius: 11px;
    color: #536872;
    background: #eff6f8;
    font-size: 11px;
    line-height: 1.5;
}

.security-note svg {
    width: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: var(--primary-700);
    stroke-width: 1.8;
}

.security-note strong {
    color: var(--text);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: 82px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-strip strong {
    position: relative;
}

.trust-strip strong:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    right: -19px;
    top: 50%;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

/* Cabeçalhos de seção */
.section-heading {
    max-width: 720px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-heading h2,
.final-cta-content h2 {
    font-family: "Merriweather", serif;
    color: var(--primary-950);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.section-heading p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

/* Autoridade */
.authority-section {
    padding: 110px 0;
    background: var(--white);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.authority-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fbfc 100%);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, border-color .2s ease;
}

.authority-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8,107,143,.35);
}

.card-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-700);
    background: var(--surface-2);
    font-size: 12px;
    font-weight: 800;
}

.authority-card h3 {
    margin-top: 28px;
    color: var(--primary-950);
    font-size: 19px;
    line-height: 1.3;
}

.authority-card p {
    margin-top: 13px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.authority-numbers {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--primary-950);
    overflow: hidden;
}

.authority-numbers div {
    padding: 28px 20px;
    text-align: center;
}

.authority-numbers div:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.1);
}

.authority-numbers strong,
.authority-numbers span {
    display: block;
}

.authority-numbers strong {
    color: var(--white);
    font-size: 15px;
}

.authority-numbers span {
    margin-top: 6px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
}

/* Serviços */
.services-section {
    padding: 110px 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 240px;
    padding: 30px;
    border: 1px solid rgba(8,107,143,.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(2,41,60,.06);
}

.service-card h3 {
    color: var(--primary-950);
    font-size: 20px;
    line-height: 1.35;
}

.service-card p {
    margin-top: 15px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.service-card-highlight {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(37,185,214,.25), transparent 35%),
        linear-gradient(135deg, var(--primary-900), var(--primary-700));
}

.service-card-highlight h3,
.service-card-highlight p {
    color: var(--white);
}

.service-card-highlight p {
    color: rgba(255,255,255,.72);
}

.service-card-highlight a {
    min-height: 46px;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 10px;
    color: var(--primary-950);
    background: var(--accent-light);
    font-size: 13px;
    font-weight: 800;
}

/* Processo */
.process-section {
    padding: 110px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    position: relative;
    min-height: 220px;
    padding: 28px;
    border-top: 3px solid var(--primary-500);
    border-radius: 0 0 16px 16px;
    background: var(--surface);
}

.process-card > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-700);
    font-weight: 800;
}

.process-card h3 {
    margin-top: 24px;
    color: var(--primary-950);
    font-size: 18px;
}

.process-card p {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.centered-cta {
    margin-top: 38px;
    display: flex;
    justify-content: center;
}

/* Conteúdo */
.content-section {
    padding: 110px 0;
    background: var(--surface);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.content-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.content-card > span {
    color: var(--primary-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.content-card h3 {
    margin-top: 16px;
    color: var(--primary-950);
    font-size: 20px;
    line-height: 1.4;
}

.content-card p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.content-card a {
    margin-top: 22px;
    display: inline-flex;
    color: var(--primary-700);
    font-size: 13px;
    font-weight: 800;
}

/* FAQ */
.faq-section {
    padding: 110px 0;
    background: var(--white);
}

.faq-list {
    max-width: 860px;
    margin-inline: auto;
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(2,41,60,.05);
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    padding: 22px 56px 22px 22px;
    cursor: pointer;
    list-style: none;
    color: var(--primary-950);
    font-size: 15px;
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-700);
    font-size: 24px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 22px 22px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* CTA final */
.final-cta-section {
    padding: 80px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(37,185,214,.18), transparent 28%),
        linear-gradient(135deg, var(--primary-950), var(--primary-700));
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.final-cta-content h2 {
    color: var(--white);
}

.final-cta-content p {
    max-width: 700px;
    margin-top: 15px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.7;
}

/* Rodapé */
.site-footer {
    padding: 68px 0 0;
    color: rgba(255,255,255,.68);
    background: #021c29;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 70px;
}

.footer-content > div:first-child p {
    max-width: 420px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.7;
}

.footer-content h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 14px;
}

.footer-content > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-content > div:not(:first-child) a {
    margin-bottom: 12px;
    font-size: 13px;
    transition: color .2s ease;
}

.footer-content a:hover {
    color: var(--accent-light);
}

.footer-brand .brand-symbol {
    width: 42px;
    height: 42px;
}

.footer-bottom {
    margin-top: 54px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
}

/* WhatsApp flutuante */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--success);
    box-shadow: 0 14px 34px rgba(37,211,102,.34);
    transition: transform .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
    width: 28px;
    fill: currentColor;
}

/* Responsividade */
@media (max-width: 1100px) {
    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .authority-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .authority-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .authority-numbers div:nth-child(2) {
        border-right: 0;
    }

    .authority-numbers div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
}

@media (max-width: 860px) {
    .top-bar {
        display: none;
    }

    .site-header,
    .site-header.scrolled {
        top: 0;
        height: 72px;
    }

    .header-content {
        gap: 15px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        background: rgba(3, 41, 60, 0.98);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px;
        border-radius: 9px;
        font-size: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-badge,
    .hero-actions,
    .hero-benefits,
    .authority-inline {
        justify-content: center;
        margin-inline: auto;
    }

    .support-card {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .trust-strip {
        margin-top: 65px;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-cta-content .button {
        justify-self: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-symbol {
        width: 41px;
        height: 41px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-benefits {
        max-width: 300px;
        gap: 12px;
    }

    .support-card {
        padding: 24px 18px;
    }

    .remote-card {
        grid-template-columns: 42px 1fr auto;
        padding-inline: 12px;
    }

    .trust-strip {
        padding: 24px 0;
        gap: 14px 23px;
    }

    .trust-strip span {
        width: 100%;
        text-align: center;
    }

    .authority-section,
    .services-section,
    .process-section,
    .content-section,
    .faq-section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .authority-grid,
    .services-grid,
    .process-grid,
    .content-grid,
    .authority-numbers {
        grid-template-columns: 1fr;
    }

    .authority-card,
    .service-card,
    .process-card,
    .content-card {
        min-height: auto;
    }

    .authority-numbers div {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .authority-numbers div:last-child {
        border-bottom: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-content > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* ==========================================================
   PÁGINAS DE CONTEÚDO / ARTIGOS
========================================================== */

.article-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(35, 214, 168, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #020617 0%,
            #071826 55%,
            #0d2433 100%
        );
    color: #ffffff;
}

.article-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -100px;
    border-radius: 50%;
    background: rgba(35, 214, 168, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.article-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -130px;
    bottom: -170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: #23d6a8;
}

.article-hero-content {
    width: min(850px, 100%);
}

.article-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(35, 214, 168, 0.28);
    border-radius: 999px;
    background: rgba(35, 214, 168, 0.08);
    color: #78efd0;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.65rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.article-hero h1 span {
    color: #23d6a8;
}

.article-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.75;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.article-meta span {
    position: relative;
}

.article-meta span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #23d6a8;
    transform: translateY(-50%);
}

/* ==========================================================
   ESTRUTURA DO ARTIGO
========================================================== */

.article-section {
    padding: 90px 0 110px;
    background: #f6f8fb;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
}

.article-content {
    min-width: 0;
    padding: 48px;
    border: 1px solid #e6ebf1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.06);
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content h2 {
    margin: 56px 0 20px;
    color: #071826;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    scroll-margin-top: 110px;
}

.article-content h3 {
    margin: 34px 0 16px;
    color: #0d2535;
    font-size: 1.25rem;
    line-height: 1.35;
}

.article-content p {
    margin: 0 0 20px;
    color: #4c5c68;
    font-size: 1.04rem;
    line-height: 1.86;
}

.article-content strong {
    color: #102735;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 28px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
    color: #4c5c68;
    font-size: 1rem;
    line-height: 1.72;
}

.article-content a {
    color: #087d68;
}

.article-introduction {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8edf2;
}

.article-introduction p {
    color: #344854;
    font-size: 1.12rem;
    line-height: 1.85;
}

/* ==========================================================
   ALERTAS E DESTAQUES
========================================================== */

.article-alert {
    display: flex;
    gap: 18px;
    margin: 32px 0 40px;
    padding: 24px;
    border: 1px solid #d9e8e5;
    border-radius: 18px;
    background: #f0fbf8;
}

.article-alert-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #23d6a8;
    color: #020617;
    font-weight: 900;
}

.article-alert strong {
    display: block;
    margin-bottom: 6px;
    color: #0b4c40;
    font-size: 1rem;
}

.article-alert p {
    margin: 0;
    color: #3f5c55;
    font-size: 0.96rem;
    line-height: 1.65;
}

.article-alert-danger {
    border-color: #f2d3d3;
    background: #fff6f6;
}

.article-alert-danger .article-alert-icon {
    background: #d94a4a;
    color: #ffffff;
}

.article-alert-danger strong {
    color: #8f2929;
}

.article-alert-danger p {
    color: #6d4a4a;
}

.article-tip {
    margin: 32px 0 40px;
    padding: 24px 26px;
    border-left: 4px solid #23d6a8;
    border-radius: 0 16px 16px 0;
    background: #f7fafc;
}

.article-tip strong {
    display: block;
    margin-bottom: 8px;
    color: #087d68;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-tip p {
    margin: 0;
}

/* ==========================================================
   CHECKLIST
========================================================== */

.article-checklist {
    display: grid;
    gap: 12px;
    padding-left: 0 !important;
    list-style: none;
}

.article-checklist li {
    position: relative;
    margin: 0;
    padding: 15px 18px 15px 48px;
    border: 1px solid #e8edf2;
    border-radius: 13px;
    background: #fbfcfd;
}

.article-checklist li::before {
    content: "✓";
    position: absolute;
    top: 14px;
    left: 17px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(35, 214, 168, 0.15);
    color: #087d68;
    font-size: 0.8rem;
    font-weight: 900;
}

/* ==========================================================
   CTA NO MEIO DO ARTIGO
========================================================== */

.article-inline-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 28px;
    overflow: hidden;
    margin: 54px 0;
    padding: 36px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(35, 214, 168, 0.2),
            transparent 38%
        ),
        linear-gradient(135deg, #06111b 0%, #0b2634 100%);
    color: #ffffff;
}

.article-inline-cta::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -120px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.article-inline-cta-content,
.article-inline-cta-status {
    position: relative;
    z-index: 2;
}

.article-inline-cta .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #75ebcc;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-inline-cta h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.article-inline-cta p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.72;
}

.article-inline-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.article-inline-cta-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.article-inline-cta-status .status-dot {
    display: block;
    width: 11px;
    height: 11px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #23d6a8;
    box-shadow: 0 0 0 7px rgba(35, 214, 168, 0.12);
}

.article-inline-cta-status strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1rem;
}

.article-inline-cta-status small {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ==========================================================
   PASSOS
========================================================== */

.article-steps {
    display: grid;
    gap: 14px;
    padding-left: 0 !important;
    list-style: none;
}

.article-steps li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0;
    padding: 20px;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    background: #fbfcfd;
}

.article-steps li > span {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: #071826;
    color: #23d6a8;
    font-size: 0.94rem;
    font-weight: 900;
}

.article-steps strong {
    display: block;
    margin: 3px 0 5px;
    color: #102735;
    font-size: 1.02rem;
}

.article-steps p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
}

/* ==========================================================
   TABELA
========================================================== */

.article-table-wrapper {
    overflow-x: auto;
    margin: 28px 0 44px;
    border: 1px solid #e4eaf0;
    border-radius: 16px;
    background: #ffffff;
}

.article-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.article-table th,
.article-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
}

.article-table thead {
    background: #071826;
}

.article-table th {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.article-table td {
    border-bottom: 1px solid #e8edf2;
    color: #4c5c68;
    font-size: 0.94rem;
    line-height: 1.6;
}

.article-table tbody tr:last-child td {
    border-bottom: 0;
}

.article-table tbody tr:nth-child(even) {
    background: #fafcfd;
}

/* ==========================================================
   CTA FINAL
========================================================== */

.article-final-cta {
    margin-top: 58px;
    padding: 42px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(35, 214, 168, 0.1),
            rgba(35, 214, 168, 0.03)
        );
    border: 1px solid rgba(35, 214, 168, 0.22);
    text-align: center;
}

.article-final-cta .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #087d68;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-final-cta h2 {
    margin: 0 0 14px;
    color: #071826;
}

.article-final-cta p {
    max-width: 590px;
    margin: 0 auto 24px;
}

/* ==========================================================
   BARRA LATERAL
========================================================== */

.article-sidebar {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 22px;
}

.article-sidebar-card {
    overflow: hidden;
    padding: 28px;
    border: 1px solid #e4eaf0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.055);
}

.article-sidebar-card h2,
.article-sidebar-card h3 {
    margin: 0 0 14px;
    color: #071826;
    line-height: 1.3;
}

.article-sidebar-card h2 {
    font-size: 1.45rem;
}

.article-sidebar-card h3 {
    font-size: 1.1rem;
}

.article-sidebar-card p {
    margin: 0 0 20px;
    color: #596a75;
    font-size: 0.94rem;
    line-height: 1.65;
}

.article-sidebar-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.article-sidebar-card li {
    position: relative;
    padding-left: 24px;
    color: #52636e;
    font-size: 0.91rem;
    line-height: 1.5;
}

.article-sidebar-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #23d6a8;
    font-weight: 900;
}

.article-sidebar-card.support-card {
    border-color: transparent;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(35, 214, 168, 0.16),
            transparent 34%
        ),
        linear-gradient(145deg, #06111b 0%, #0d2633 100%);
}

.article-sidebar-card.support-card h2,
.article-sidebar-card.support-card p,
.article-sidebar-card.support-card li {
    color: #ffffff;
}

.article-sidebar-card.support-card p,
.article-sidebar-card.support-card li {
    color: rgba(255, 255, 255, 0.68);
}

.sidebar-card-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #76efd0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button-full {
    width: 100%;
    justify-content: center;
}

.sidebar-secondary-link {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 0.87rem;
    text-align: center;
    text-decoration: none;
}

.sidebar-secondary-link:hover {
    color: #23d6a8 !important;
}

.article-index {
    display: grid;
}

.article-index a {
    padding: 12px 0;
    border-bottom: 1px solid #edf1f4;
    color: #52636e;
    font-size: 0.92rem;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.article-index a:first-child {
    padding-top: 0;
}

.article-index a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.article-index a:hover {
    padding-left: 6px;
    color: #087d68;
}

/* ==========================================================
   CONTEÚDOS RELACIONADOS
========================================================== */

.related-content {
    padding: 100px 0;
    background: #ffffff;
}

.related-content .section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.related-content .section-heading h2 {
    margin: 10px 0 14px;
    color: #071826;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.related-content .section-heading p {
    margin: 0;
    color: #62727c;
    font-size: 1.03rem;
    line-height: 1.75;
}

.related-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-content .content-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 28px;
    border: 1px solid #e5ebf0;
    border-radius: 20px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.045);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.related-content .content-card:hover {
    transform: translateY(-7px);
    border-color: rgba(35, 214, 168, 0.45);
    box-shadow: 0 24px 54px rgba(2, 6, 23, 0.09);
}

.content-card-category {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(35, 214, 168, 0.1);
    color: #087d68;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.related-content .content-card h3 {
    margin: 0 0 14px;
    color: #0a1f2d;
    font-size: 1.3rem;
    line-height: 1.35;
}

.related-content .content-card p {
    margin: 0;
    color: #60717c;
    font-size: 0.94rem;
    line-height: 1.66;
}

.content-card-link {
    margin-top: auto;
    padding-top: 26px;
    color: #087d68;
    font-size: 0.91rem;
    font-weight: 800;
}

/* ==========================================================
   BOTÕES
========================================================== */

.article-section .button,
.article-hero .button,
.related-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.article-section .button:hover,
.article-hero .button:hover,
.related-content .button:hover {
    transform: translateY(-2px);
}

.article-section .button-primary,
.article-hero .button-primary {
    background: #23d6a8;
    color: #03120e;
    box-shadow: 0 14px 30px rgba(35, 214, 168, 0.2);
}

.article-section .button-primary:hover,
.article-hero .button-primary:hover {
    background: #50e4be;
    box-shadow: 0 18px 38px rgba(35, 214, 168, 0.28);
}

.article-section .button-secondary,
.article-hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1080px) {

    .article-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 30px;
    }

    .article-content {
        padding: 38px;
    }

    .related-content-grid {
        gap: 18px;
    }

}

@media (max-width: 900px) {

    .article-hero {
        padding: 130px 0 64px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-inline-cta {
        grid-template-columns: 1fr;
    }

    .article-inline-cta-status {
        min-height: 150px;
    }

    .related-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 680px) {

    .article-hero {
        padding: 112px 0 54px;
    }

    .article-hero h1 {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .article-meta {
        display: grid;
        gap: 8px;
    }

    .article-meta span + span::before {
        display: none;
    }

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

    .article-content {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .article-content h2 {
        margin-top: 44px;
        font-size: 1.55rem;
    }

    .article-content h3 {
        font-size: 1.14rem;
    }

    .article-content p,
    .article-content li {
        font-size: 0.97rem;
    }

    .article-introduction p {
        font-size: 1rem;
    }

    .article-alert {
        padding: 20px;
    }

    .article-inline-cta {
        margin: 42px 0;
        padding: 28px 22px;
        border-radius: 19px;
    }

    .article-inline-cta-actions {
        display: grid;
    }

    .article-inline-cta-actions .button {
        width: 100%;
    }

    .article-final-cta {
        padding: 32px 22px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .related-content {
        padding: 72px 0;
    }

    .related-content-grid {
        grid-template-columns: 1fr;
    }

    .related-content .content-card {
        min-height: auto;
    }

}

@media (max-width: 420px) {

    .article-hero h1 {
        font-size: 2rem;
    }

    .article-hero p {
        font-size: 0.98rem;
    }

    .article-content {
        padding: 23px 17px;
    }

    .article-alert {
        flex-direction: column;
    }

    .article-steps li {
        gap: 13px;
        padding: 17px;
    }

    .article-steps li > span {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

}
/* ==========================================================
   PÁGINA DE CONTATO
========================================================== */

.contact-section {
    padding: 100px 0;
    background: #f6f8fb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 46px;
    align-items: start;
}

.contact-main {
    padding: 46px;
    border: 1px solid #e5ebf0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.06);
}

.contact-main .section-heading {
    max-width: 700px;
    margin-bottom: 34px;
}

.contact-main .section-heading h2,
.remote-access-heading h2,
.contact-process-section .section-heading h2 {
    margin: 10px 0 16px;
    color: #071826;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.contact-main .section-heading p,
.remote-access-heading p,
.contact-process-section .section-heading p {
    margin: 0;
    color: #5b6d78;
    font-size: 1.03rem;
    line-height: 1.75;
}

.contact-cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid #e4eaf0;
    border-radius: 18px;
    background: #fbfcfd;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(35, 214, 168, 0.5);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.contact-card-primary {
    border-color: rgba(35, 214, 168, 0.28);
    background:
        linear-gradient(
            135deg,
            rgba(35, 214, 168, 0.12),
            rgba(35, 214, 168, 0.03)
        );
}

.contact-card-icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: #071826;
}

.contact-card-icon svg {
    width: 27px;
    height: 27px;
    fill: #23d6a8;
}

.contact-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.contact-card-content small {
    margin-bottom: 4px;
    color: #74838d;
    font-size: 0.78rem;
}

.contact-card-content strong {
    color: #071826;
    font-size: 1.2rem;
}

.contact-card-content span {
    margin-top: 3px;
    color: #087d68;
    font-weight: 700;
}

.contact-card-arrow {
    color: #23d6a8;
    font-size: 1.8rem;
}

.contact-information {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid #e8edf2;
}

.contact-information h3 {
    margin: 0 0 22px;
    color: #071826;
    font-size: 1.35rem;
}

.contact-sidebar {
    position: sticky;
    top: 105px;
}

/* ACESSO REMOTO */

.remote-access-section {
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(35, 214, 168, 0.12),
            transparent 30%
        ),
        linear-gradient(135deg, #020617, #0b2634);
}

.remote-access-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

.remote-access-heading h2 {
    color: #ffffff;
}

.remote-access-heading p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.68);
}

.remote-security {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.remote-security .status-dot {
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #23d6a8;
    box-shadow: 0 0 0 7px rgba(35, 214, 168, 0.12);
}

.remote-security strong,
.remote-security small {
    display: block;
}

.remote-security strong {
    color: #ffffff;
    font-size: 0.92rem;
}

.remote-security small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.remote-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.remote-access-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.remote-access-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.remote-access-number {
    color: #9aa6ae;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.remote-access-badge {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(35, 214, 168, 0.13);
    color: #087d68;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.remote-access-badge-secondary {
    background: #edf1f5;
    color: #4b5e6b;
}

.remote-access-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 18px;
}

.remote-access-icon svg {
    width: 38px;
    height: 38px;
}

.remote-access-anydesk {
    background: #fff0f0;
}

.remote-access-anydesk svg {
    fill: #e32636;
}

.remote-access-teamviewer {
    background: #edf5ff;
}

.remote-access-teamviewer svg {
    fill: none;
    stroke: #0866c6;
    stroke-width: 3;
}

.remote-access-card h3 {
    margin: 0 0 12px;
    color: #071826;
    font-size: 1.55rem;
}

.remote-access-card p {
    margin: 0 0 22px;
    color: #5d6e79;
    line-height: 1.7;
}

.remote-access-card ol {
    margin: 0 0 28px;
    padding-left: 20px;
}

.remote-access-card li {
    margin-bottom: 10px;
    color: #52636e;
    line-height: 1.55;
}

.remote-access-source {
    display: block;
    margin-top: 12px;
    color: #88959d;
    text-align: center;
}

.button-secondary-dark {
    border: 1px solid #dce4ea;
    background: #071826;
    color: #ffffff;
}

.remote-access-alert {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.05);
}

.remote-access-alert strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.remote-access-alert p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    line-height: 1.65;
}

/* PROCESSO */

.contact-process-section {
    padding: 105px 0;
    background: #ffffff;
}

.section-heading-center {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.contact-process-card {
    padding: 28px;
    border: 1px solid #e5ebf0;
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.05);
}

.contact-process-card > span {
    display: inline-block;
    margin-bottom: 30px;
    color: #23d6a8;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.contact-process-card h3 {
    margin: 0 0 12px;
    color: #071826;
    font-size: 1.15rem;
}

.contact-process-card p {
    margin: 0;
    color: #61717c;
    font-size: 0.93rem;
    line-height: 1.65;
}

/* CTA FINAL */

.contact-final-cta {
    padding: 80px 0;
    background: #f3f7f8;
}

.contact-final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(35, 214, 168, 0.18),
            transparent 35%
        ),
        linear-gradient(135deg, #06111b, #0b2634);
}

.contact-final-cta h2 {
    max-width: 760px;
    margin: 10px 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.contact-final-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.contact-final-cta .button {
    flex: 0 0 auto;
}

/* RESPONSIVIDADE */

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }

    .remote-access-heading {
        grid-template-columns: 1fr;
    }

    .contact-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 720px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-main {
        padding: 28px 20px;
    }

    .contact-card {
        padding: 19px;
    }

    .contact-card-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .contact-card-icon svg {
        width: 23px;
        height: 23px;
    }

    .remote-access-section,
    .contact-process-section {
        padding: 75px 0;
    }

    .remote-access-grid {
        grid-template-columns: 1fr;
    }

    .remote-access-card {
        padding: 27px 22px;
    }

    .contact-process-grid {
        grid-template-columns: 1fr;
    }

    .contact-final-cta-content {
        display: grid;
        padding: 32px 23px;
    }

    .contact-final-cta .button {
        width: 100%;
    }

}
/* ==========================================================
   PÁGINA DE SERVIÇOS
========================================================== */

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 65px;
    align-items: center;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.services-hero-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.services-hero-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -90px;
    right: -70px;
    border-radius: 50%;
    background: rgba(35, 214, 168, 0.13);
}

.services-hero-card > * {
    position: relative;
    z-index: 2;
}

.services-hero-card-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #78efd0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hero-card h2 {
    margin: 0 0 23px;
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1.3;
}

.services-hero-card ul {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.services-hero-card li {
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
}

.services-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #23d6a8;
    font-weight: 900;
}

.services-hero-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.services-hero-card-link span {
    color: #23d6a8;
    font-size: 1.4rem;
}

/* INTRODUÇÃO */

.services-intro {
    padding: 90px 0;
    background: #ffffff;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.services-intro h2 {
    margin: 10px 0 0;
    color: #071826;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.services-intro p {
    margin: 0 0 18px;
    color: #5d6e79;
    font-size: 1.04rem;
    line-height: 1.8;
}

/* LISTA DE SERVIÇOS */

.services-list-section {
    padding: 105px 0;
    background: #f5f8fa;
}

.services-heading {
    max-width: 790px;
    margin-bottom: 48px;
}

.services-heading h2 {
    margin: 10px 0 16px;
    color: #071826;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.services-heading p {
    margin: 0;
    color: #5c6d78;
    font-size: 1.03rem;
    line-height: 1.75;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-page-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border: 1px solid #e3e9ee;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(2, 6, 23, 0.05);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.service-page-card:hover {
    transform: translateY(-7px);
    border-color: rgba(35, 214, 168, 0.48);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.1);
}

.service-page-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.service-page-number {
    color: #9ca8b0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-page-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 15px;
    background: rgba(35, 214, 168, 0.1);
}

.service-page-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #087d68;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-page-card h3 {
    margin: 0 0 13px;
    color: #071826;
    font-size: 1.3rem;
    line-height: 1.35;
}

.service-page-card > p {
    margin: 0 0 22px;
    color: #61727c;
    font-size: 0.94rem;
    line-height: 1.7;
}

.service-page-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 27px;
    padding: 0;
    list-style: none;
}

.service-page-card li {
    position: relative;
    padding-left: 23px;
    color: #53646f;
    font-size: 0.9rem;
    line-height: 1.48;
}

.service-page-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #23d6a8;
    font-weight: 900;
}

.service-page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #edf1f4;
    color: #087d68;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.service-page-link span {
    font-size: 1.3rem;
    transition: transform 0.25s ease;
}

.service-page-link:hover span {
    transform: translateX(4px);
}

/* CTA INTERMEDIÁRIO */

.services-conversion-section {
    padding: 85px 0;
    background: #ffffff;
}

.services-conversion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 48px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(35, 214, 168, 0.2),
            transparent 32%
        ),
        linear-gradient(135deg, #05111b 0%, #0d2a39 100%);
}

.services-conversion-content h2 {
    margin: 10px 0 15px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.services-conversion-content p {
    max-width: 750px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
}

.services-conversion-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.services-conversion-benefits span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

/* PROCESSO */

.services-process-section {
    padding: 105px 0;
    background: #f5f8fa;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.services-process-card {
    position: relative;
    min-height: 240px;
    padding: 29px;
    border: 1px solid #e3e9ee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.045);
}

.services-process-number {
    display: inline-block;
    margin-bottom: 42px;
    color: #23d6a8;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.services-process-card h3 {
    margin: 0 0 12px;
    color: #071826;
    font-size: 1.16rem;
    line-height: 1.35;
}

.services-process-card p {
    margin: 0;
    color: #62727c;
    font-size: 0.92rem;
    line-height: 1.67;
}

/* BENEFÍCIOS */

.services-benefits-section {
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(35, 214, 168, 0.1),
            transparent 27%
        ),
        linear-gradient(135deg, #020617, #0b2634);
}

.services-benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.services-benefits-heading {
    position: sticky;
    top: 120px;
}

.services-benefits-heading h2 {
    margin: 10px 0 16px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.services-benefits-heading p {
    margin: 0 0 27px;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.75;
}

.services-benefits-list {
    display: grid;
    gap: 16px;
}

.services-benefits-list article {
    display: flex;
    gap: 22px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.services-benefits-list article > span {
    flex: 0 0 auto;
    color: #23d6a8;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.services-benefits-list h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.15rem;
}

.services-benefits-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* FAQ */

.services-faq-section {
    padding: 105px 0;
    background: #ffffff;
}

.services-faq-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.services-faq-heading {
    position: sticky;
    top: 120px;
}

.services-faq-heading h2 {
    margin: 10px 0 15px;
    color: #071826;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.15;
}

.services-faq-heading p {
    margin: 0;
    color: #61727c;
    line-height: 1.7;
}

/* RESPONSIVIDADE */

@media (max-width: 1050px) {

    .services-hero-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 35px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-benefits-grid {
        gap: 45px;
    }

}

@media (max-width: 850px) {

    .services-hero-grid,
    .services-intro-grid,
    .services-benefits-grid,
    .services-faq-layout {
        grid-template-columns: 1fr;
    }

    .services-hero-card {
        max-width: 620px;
    }

    .services-intro-grid {
        gap: 30px;
    }

    .services-conversion-content {
        display: grid;
    }

    .services-conversion-content .button {
        width: 100%;
    }

    .services-benefits-heading,
    .services-faq-heading {
        position: static;
    }

}

@media (max-width: 650px) {

    .services-hero-actions {
        display: grid;
    }

    .services-hero-actions .button {
        width: 100%;
    }

    .services-intro,
    .services-list-section,
    .services-process-section,
    .services-benefits-section,
    .services-faq-section {
        padding: 72px 0;
    }

    .services-page-grid,
    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .service-page-card {
        padding: 25px 21px;
    }

    .services-conversion-section {
        padding: 60px 0;
    }

    .services-conversion-content {
        padding: 32px 23px;
    }

    .services-benefits-list article {
        padding: 22px;
    }

}
/* ==========================================================
   PÁGINA DE SUPORTE
========================================================== */

.support-page-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 105px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(35, 214, 168, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(35, 214, 168, 0.08),
            transparent 26%
        ),
        linear-gradient(135deg, #020617 0%, #0a2432 100%);
}

.support-page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -230px;
    bottom: -250px;
    border: 1px solid rgba(35, 214, 168, 0.15);
    border-radius: 50%;
}

.support-page-hero .breadcrumbs {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.support-page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 385px;
    gap: 70px;
    align-items: center;
}

.support-page-hero-content h1 {
    max-width: 850px;
    margin: 14px 0 22px;
    color: #ffffff;
    font-size: clamp(2.65rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.support-page-hero-content h1 span {
    display: block;
    color: #23d6a8;
}

.support-page-hero-content > p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
    line-height: 1.78;
}

.support-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.support-page-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.support-page-trust span {
    position: relative;
    padding: 9px 13px 9px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.support-page-trust span::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: #23d6a8;
    font-weight: 900;
}

.support-page-hero-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(14px);
}

.support-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #8cf1d7;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.support-status .status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #23d6a8;
    box-shadow: 0 0 0 6px rgba(35, 214, 168, 0.12);
}

.support-page-hero-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1.3;
}

.support-page-hero-card > p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
}

.support-contact-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: #23d6a8;
    color: #04121b;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.support-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(35, 214, 168, 0.25);
}

.support-contact-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.12);
}

.support-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #04121b;
}

.support-contact-button > span:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.support-contact-button small {
    margin-bottom: 3px;
    font-size: 0.72rem;
}

.support-contact-button strong {
    font-size: 1.05rem;
}

.support-contact-arrow {
    font-size: 1.45rem;
}

.support-phone-link {
    display: block;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.84rem;
    text-align: center;
    text-decoration: none;
}

/* PROBLEMAS */

.support-problems-section {
    padding: 105px 0;
    background: #f5f8fa;
}

.support-section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.support-section-heading h2 {
    margin: 10px 0 16px;
    color: #071826;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.support-section-heading p {
    margin: 0;
    color: #5d6e79;
    font-size: 1.03rem;
    line-height: 1.75;
}

.support-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.support-problem-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 29px;
    border: 1px solid #e3e9ee;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(2, 6, 23, 0.05);
    transition:
        transform 0.27s ease,
        border-color 0.27s ease,
        box-shadow 0.27s ease;
}

.support-problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(35, 214, 168, 0.46);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.09);
}

.support-problem-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 16px;
    background: rgba(35, 214, 168, 0.1);
}

.support-problem-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: #087d68;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-problem-card h3 {
    margin: 0 0 12px;
    color: #071826;
    font-size: 1.25rem;
    line-height: 1.35;
}

.support-problem-card p {
    margin: 0 0 24px;
    color: #61717c;
    font-size: 0.93rem;
    line-height: 1.68;
}

.support-problem-card a {
    margin-top: auto;
    padding-top: 19px;
    border-top: 1px solid #edf1f4;
    color: #087d68;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

/* DIAGNÓSTICO */

.support-diagnostic-section {
    padding: 105px 0;
    background: #ffffff;
}

.support-diagnostic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 75px;
    align-items: center;
}

.support-diagnostic-content h2 {
    margin: 10px 0 18px;
    color: #071826;
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.support-diagnostic-content > p {
    margin: 0 0 17px;
    color: #5d6e79;
    line-height: 1.78;
}

.support-diagnostic-content .button {
    margin-top: 12px;
}

.support-diagnostic-panel {
    padding: 34px;
    border: 1px solid #e3e9ee;
    border-radius: 23px;
    background: #f6f9fa;
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.07);
}

.support-panel-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #087d68;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-diagnostic-panel h3 {
    margin: 0 0 26px;
    color: #071826;
    font-size: 1.55rem;
    line-height: 1.3;
}

.support-information-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-information-list li {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e7eb;
}

.support-information-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.support-information-list li > span {
    flex: 0 0 auto;
    color: #23d6a8;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.support-information-list strong {
    display: block;
    margin-bottom: 4px;
    color: #071826;
}

.support-information-list p {
    margin: 0;
    color: #677782;
    font-size: 0.87rem;
    line-height: 1.55;
}

/* ACESSO REMOTO */

.support-remote-section {
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(35, 214, 168, 0.14),
            transparent 28%
        ),
        linear-gradient(135deg, #020617, #0b2634);
}

.support-remote-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: end;
    margin-bottom: 44px;
}

.support-remote-heading h2 {
    margin: 10px 0 15px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.13;
}

.support-remote-heading p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.72;
}

.support-remote-security {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.support-remote-security .status-dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23d6a8;
    box-shadow: 0 0 0 7px rgba(35, 214, 168, 0.12);
}

.support-remote-security strong,
.support-remote-security small {
    display: block;
}

.support-remote-security strong {
    color: #ffffff;
    font-size: 0.91rem;
}

.support-remote-security small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.4;
}

.support-remote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.support-remote-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 29px;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.support-remote-card .button {
    grid-column: 1 / -1;
}

.support-remote-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 18px;
}

.support-remote-icon svg {
    width: 37px;
    height: 37px;
}

.anydesk-icon {
    background: #fff0f0;
}

.anydesk-icon svg {
    fill: #e32636;
}

.teamviewer-icon {
    background: #edf5ff;
}

.teamviewer-icon svg {
    fill: none;
    stroke: #0866c6;
    stroke-width: 3;
}

.support-remote-badge {
    display: inline-block;
    margin-bottom: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(35, 214, 168, 0.12);
    color: #087d68;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.support-remote-badge-dark {
    background: #edf1f5;
    color: #53646f;
}

.support-remote-card h3 {
    margin: 4px 0 7px;
    color: #071826;
    font-size: 1.32rem;
}

.support-remote-card p {
    margin: 0;
    color: #61717c;
    font-size: 0.9rem;
    line-height: 1.55;
}

.support-security-warning {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.05);
}

.support-security-warning strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.support-security-warning p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

/* PROCESSO */

.support-process-section {
    padding: 105px 0;
    background: #f5f8fa;
}

.support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.support-process-card {
    padding: 29px;
    border: 1px solid #e3e9ee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.05);
}

.support-process-card > span {
    display: inline-block;
    margin-bottom: 38px;
    color: #23d6a8;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.support-process-card h3 {
    margin: 0 0 11px;
    color: #071826;
    font-size: 1.16rem;
}

.support-process-card p {
    margin: 0;
    color: #62727c;
    font-size: 0.91rem;
    line-height: 1.65;
}

/* COBERTURA */

.support-coverage-section {
    padding: 105px 0;
    background: #ffffff;
}

.support-coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 70px;
    align-items: center;
}

.support-coverage-grid h2 {
    margin: 10px 0 17px;
    color: #071826;
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.support-coverage-grid > div:first-child > p {
    max-width: 730px;
    margin: 0;
    color: #5d6e79;
    line-height: 1.76;
}

.support-coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.support-coverage-tags span {
    padding: 9px 13px;
    border: 1px solid #dfe7eb;
    border-radius: 999px;
    background: #f7fafb;
    color: #53646f;
    font-size: 0.8rem;
    font-weight: 700;
}

.support-coverage-card {
    padding: 31px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(35, 214, 168, 0.18),
            transparent 35%
        ),
        linear-gradient(135deg, #06111b, #0b2634);
    box-shadow: 0 23px 60px rgba(2, 6, 23, 0.18);
}

.support-coverage-card-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #75e9cc;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-coverage-card h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.3;
}

.support-coverage-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.68;
}

.support-coverage-phone {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
}

/* RESPONSIVIDADE */

@media (max-width: 1050px) {

    .support-page-hero-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 38px;
    }

    .support-problems-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-diagnostic-grid {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 40px;
    }

    .support-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 850px) {

    .support-page-hero-grid,
    .support-diagnostic-grid,
    .support-coverage-grid {
        grid-template-columns: 1fr;
    }

    .support-page-hero-card {
        max-width: 620px;
    }

    .support-remote-heading {
        grid-template-columns: 1fr;
    }

    .support-coverage-card {
        max-width: 580px;
    }

}

@media (max-width: 680px) {

    .support-page-hero {
        padding-bottom: 75px;
    }

    .support-page-hero .breadcrumbs {
        margin-bottom: 36px;
    }

    .support-page-actions {
        display: grid;
    }

    .support-page-actions .button {
        width: 100%;
    }

    .support-page-trust {
        display: grid;
    }

    .support-problems-section,
    .support-diagnostic-section,
    .support-remote-section,
    .support-process-section,
    .support-coverage-section {
        padding: 72px 0;
    }

    .support-problems-grid,
    .support-remote-grid,
    .support-process-grid {
        grid-template-columns: 1fr;
    }

    .support-page-hero-card,
    .support-diagnostic-panel,
    .support-problem-card,
    .support-coverage-card {
        padding: 24px 21px;
    }

    .support-remote-card {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 23px 20px;
    }

    .support-remote-icon {
        width: 55px;
        height: 55px;
    }

    .support-remote-icon svg {
        width: 31px;
        height: 31px;
    }

}
/* ==========================================================
   CONSULTA DE MOVIMENTAÇÃO PROCESSUAL
========================================================== */

.process-search-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(37, 185, 214, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f4f8fa 0%,
            #ffffff 65%
        );
}

.process-search-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -180px;
    bottom: -210px;
    border: 1px solid rgba(8, 107, 143, 0.1);
    border-radius: 50%;
}

.process-search-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 80px;
    align-items: center;
}

.process-search-content h2 {
    max-width: 760px;
    margin: 12px 0 22px;
    color: var(--primary-950);
    font-family: "Merriweather", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
    letter-spacing: -1.6px;
}

.process-search-content h2 span {
    display: block;
    color: var(--primary-700);
}

.process-search-content > p {
    max-width: 720px;
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}

.process-search-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 28px 0 32px;
}

.process-search-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #435762;
    font-size: 13px;
    font-weight: 700;
}

.process-search-benefits svg {
    width: 19px;
    height: 19px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: var(--primary-700);
    stroke-width: 2.5;
    background: rgba(8, 107, 143, 0.1);
}

.process-search-content .button {
    min-height: 56px;
}

.process-search-disclaimer {
    display: block;
    max-width: 610px;
    margin-top: 16px;
    color: #7a8991;
    font-size: 11px;
    line-height: 1.6;
}

.process-search-panel {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(8, 107, 143, 0.15);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(2, 41, 60, 0.14);
}

.process-search-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--primary-400)
    );
}

.process-search-panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.process-search-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--primary-700);
    background: #eaf5f8;
}

.process-search-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-search-panel-header span {
    color: var(--primary-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.process-search-panel-header h3 {
    margin-top: 4px;
    color: var(--primary-950);
    font-size: 20px;
    letter-spacing: -0.5px;
}

.process-search-form {
    margin-top: 27px;
}

.process-search-form label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-950);
    font-size: 13px;
    font-weight: 800;
}

.process-search-input-group {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border: 1px solid #dce6ea;
    border-radius: 13px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.process-search-input-group:focus-within {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(7, 156, 194, 0.1);
}

.process-search-input-group input {
    min-width: 0;
    height: 56px;
    padding: 0 17px;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
}

.process-search-input-group input::placeholder {
    color: #9aa8af;
}

.process-search-input-group button {
    min-width: 110px;
    border: 0;
    color: var(--primary-950);
    background: var(--accent-light);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease;
}

.process-search-input-group button:hover {
    background: #f8dc91;
}

.process-search-form > small {
    display: block;
    margin-top: 9px;
    color: #829098;
    font-size: 11px;
}

.process-search-security {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 22px;
    padding: 15px;
    border-radius: 13px;
    background: #eff6f8;
    color: #526872;
    font-size: 11px;
    line-height: 1.55;
}

.process-search-security svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: var(--primary-700);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-search-security strong {
    color: var(--primary-950);
}

@media (max-width: 900px) {

    .process-search-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-search-content {
        text-align: center;
    }

    .process-search-content > p,
    .process-search-disclaimer {
        margin-inline: auto;
    }

    .process-search-benefits {
        justify-content: center;
    }

    .process-search-panel {
        width: min(100%, 560px);
        margin-inline: auto;
    }

}

@media (max-width: 600px) {

    .process-search-section {
        padding: 78px 0;
    }

    .process-search-panel {
        padding: 25px 18px;
    }

    .process-search-input-group {
        grid-template-columns: 1fr;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .process-search-input-group input {
        width: 100%;
        border: 1px solid #dce6ea;
        border-radius: 11px;
        background: #ffffff;
    }

    .process-search-input-group button {
        min-height: 52px;
        margin-top: 10px;
        border-radius: 11px;
    }

    .process-search-content .button {
        width: 100%;
    }

}
/* ==========================================================
   PÁGINA DE CONSULTA PROCESSUAL
========================================================== */

.consulta-page-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 105px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(37, 185, 214, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 14% 82%,
            rgba(211, 164, 55, 0.1),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            var(--primary-950) 0%,
            var(--primary-900) 58%,
            var(--primary-700) 100%
        );
}

.consulta-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image: linear-gradient(
        to right,
        black,
        transparent 88%
    );
}

.consulta-page-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -240px;
    bottom: -260px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.consulta-page-hero .container {
    position: relative;
    z-index: 2;
}

.consulta-page-hero .breadcrumbs {
    margin-bottom: 56px;
}

.consulta-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 70px;
    align-items: center;
}

.consulta-page-hero-content {
    max-width: 800px;
}

.consulta-page-hero-content h1 {
    margin: 14px 0 23px;
    color: var(--white);
    font-family: "Merriweather", serif;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.consulta-page-hero-content h1 span {
    display: block;
    color: var(--accent-light);
}

.consulta-page-hero-content > p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.consulta-page-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.consulta-page-benefits span {
    position: relative;
    padding: 9px 13px 9px 31px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.consulta-page-benefits span::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: var(--accent-light);
    font-weight: 900;
}

.consulta-page-info-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.consulta-page-info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 23px 23px 0 0;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--primary-400)
    );
}

.consulta-info-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.consulta-page-info-card h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

.consulta-page-info-card > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.7;
}

.consulta-number-example {
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
}

.consulta-number-example small,
.consulta-number-example strong {
    display: block;
}

.consulta-number-example small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.consulta-number-example strong {
    margin-top: 6px;
    color: var(--white);
    font-size: 13px;
    word-break: break-all;
}

.consulta-page-info-card ul {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.consulta-page-info-card li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.5;
}

.consulta-page-info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 900;
}

/* ==========================================================
   ÁREA PRINCIPAL DA CONSULTA
========================================================== */

.consulta-main-section {
    padding: 105px 0;
    background: var(--surface);
}

.consulta-main-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.consulta-form-column {
    display: grid;
    gap: 24px;
}

.consulta-form-card,
.consulta-result-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.consulta-form-card {
    padding: 30px;
}

.consulta-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.consulta-form-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--primary-700);
    background: #eaf5f8;
}

.consulta-form-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-form-label {
    display: block;
    color: var(--primary-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.consulta-form-header h2 {
    margin-top: 4px;
    color: var(--primary-950);
    font-size: 20px;
    letter-spacing: -0.5px;
}

.consulta-form-description {
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.68;
}

.consulta-form {
    margin-top: 25px;
}

.consulta-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-950);
    font-size: 13px;
    font-weight: 800;
}

.consulta-input-wrapper {
    position: relative;
}

.consulta-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    color: var(--primary-700);
    transform: translateY(-50%);
    pointer-events: none;
}

.consulta-input-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-input-wrapper input {
    width: 100%;
    height: 57px;
    padding: 0 16px 0 48px;
    border: 1px solid #dce6ea;
    border-radius: 12px;
    outline: 0;
    color: var(--text);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.consulta-input-wrapper input::placeholder {
    color: #a1adb3;
}

.consulta-input-wrapper input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(7, 156, 194, 0.1);
}

.consulta-input-wrapper input:disabled {
    cursor: not-allowed;
    background: #f1f4f6;
}

.consulta-field-footer {
    min-height: 22px;
    margin-top: 9px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #85939a;
    font-size: 11px;
}

.consulta-field-footer small:last-child {
    text-align: right;
}

#contador.complete {
    color: #15835f;
    font-weight: 800;
}

.consulta-submit-button {
    position: relative;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    color: var(--primary-950);
    background: var(--accent-light);
    box-shadow: 0 14px 30px rgba(211, 164, 55, 0.2);
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.consulta-submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #f8dc91;
}

.consulta-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(3, 41, 60, 0.25);
    border-top-color: var(--primary-950);
    border-radius: 50%;
    animation: consultaSpinner 0.8s linear infinite;
}

.consulta-submit-button.is-loading .spinner {
    display: block;
}

.consulta-submit-button.is-loading .button-label {
    opacity: 0.78;
}

@keyframes consultaSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================
   MENSAGENS
========================================================== */

.message {
    display: none;
    margin-top: 18px;
    padding: 14px 15px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.message:not(:empty) {
    display: block;
}

.message-success {
    border-color: rgba(25, 151, 102, 0.22);
    color: #176849;
    background: #ecfaf4;
}

.message-warning {
    border-color: rgba(211, 164, 55, 0.28);
    color: #745715;
    background: #fff9e9;
}

.message-error {
    border-color: rgba(201, 63, 63, 0.22);
    color: #8e3030;
    background: #fff2f2;
}

.consulta-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 19px;
    padding: 14px;
    border-radius: 12px;
    color: #536872;
    background: #eff6f8;
    font-size: 11px;
    line-height: 1.55;
}

.consulta-privacy-note svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: var(--primary-700);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-privacy-note strong {
    color: var(--primary-950);
}

/* ==========================================================
   CTA LATERAL
========================================================== */

.consulta-support-card {
    padding: 28px;
    border-radius: 20px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 185, 214, 0.19),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--primary-950),
            var(--primary-700)
        );
    box-shadow: var(--shadow);
}

.consulta-support-card h2 {
    margin: 10px 0 13px;
    color: var(--white);
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.consulta-support-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
}

.consulta-support-card .button {
    width: 100%;
    margin-top: 23px;
}

/* ==========================================================
   RESULTADO
========================================================== */

.consulta-result-card {
    overflow: hidden;
}

.consulta-result-header {
    min-height: 108px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #e8eef1;
}

.consulta-result-label {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.consulta-result-header h2 {
    color: var(--primary-950);
    font-size: 24px;
    letter-spacing: -0.7px;
}

.consulta-result-header p {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.5;
}

.consulta-copy-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0 15px;
    border: 1px solid #dce6ea;
    border-radius: 10px;
    color: var(--primary-700);
    background: var(--white);
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.consulta-copy-button:hover:not(:disabled) {
    border-color: var(--primary-400);
    background: #f2f9fa;
}

.consulta-copy-button:disabled {
    cursor: not-allowed;
    opacity: 0.46;
}

.consulta-copy-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-result-placeholder {
    padding: 24px 28px;
    background:
        linear-gradient(
            180deg,
            #fbfcfd 0%,
            #ffffff 100%
        );
}

.textarea-movimentos {
    width: 100%;
    min-height: 650px;
    resize: vertical;
    padding: 22px;
    border: 1px solid #dfe7eb;
    border-radius: 15px;
    outline: 0;
    color: #263a46;
    background: #f8fafb;
    font-family:
        "Consolas",
        "Courier New",
        monospace;
    font-size: 13px;
    line-height: 1.72;
    white-space: pre-wrap;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.textarea-movimentos:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(7, 156, 194, 0.09);
}

.textarea-movimentos::placeholder {
    color: #96a4ab;
}

.consulta-result-footer {
    padding: 16px 28px 20px;
    border-top: 1px solid #e8eef1;
    background: #fbfcfd;
}

.consulta-result-footer span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #718089;
    font-size: 11px;
    line-height: 1.55;
}

.consulta-result-footer svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--primary-700);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================
   JSON OCULTO
========================================================== */

.consulta-json-hidden {
    display: none !important;
}

/* ==========================================================
   PASSOS
========================================================== */

.consulta-steps-section {
    padding: 105px 0;
    background: var(--white);
}

.consulta-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.consulta-step-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.consulta-step-card > span {
    display: inline-block;
    margin-bottom: 38px;
    color: var(--primary-500);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.consulta-step-card h3 {
    color: var(--primary-950);
    font-size: 18px;
}

.consulta-step-card p {
    margin-top: 11px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

/* ==========================================================
   AVISO
========================================================== */

.consulta-disclaimer-section {
    padding: 70px 0;
    background: var(--surface);
}

.consulta-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.consulta-disclaimer-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 15px;
    color: #8c6818;
    background: #fff7df;
}

.consulta-disclaimer-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-disclaimer-content h2 {
    color: var(--primary-950);
    font-size: 21px;
}

.consulta-disclaimer-content p {
    max-width: 950px;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1080px) {

    .consulta-page-hero-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 40px;
    }

    .consulta-main-layout {
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 24px;
    }

}

@media (max-width: 900px) {

    .consulta-page-hero-grid,
    .consulta-main-layout {
        grid-template-columns: 1fr;
    }

    .consulta-page-info-card {
        width: min(100%, 580px);
    }

    .consulta-form-column {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .consulta-result-card {
        grid-row: 2;
    }

    .consulta-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .consulta-page-hero {
        padding-bottom: 78px;
    }

    .consulta-page-hero .breadcrumbs {
        margin-bottom: 38px;
    }

    .consulta-page-hero-content h1 {
        font-size: 39px;
        letter-spacing: -1.4px;
    }

    .consulta-page-hero-content > p {
        font-size: 16px;
    }

    .consulta-main-section,
    .consulta-steps-section {
        padding: 75px 0;
    }

    .consulta-form-column {
        grid-template-columns: 1fr;
    }

    .consulta-form-card,
    .consulta-result-header,
    .consulta-result-placeholder {
        padding-left: 20px;
        padding-right: 20px;
    }

    .consulta-result-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .consulta-copy-button {
        width: 100%;
    }

    .textarea-movimentos {
        min-height: 520px;
        padding: 17px;
        font-size: 12px;
    }

    .consulta-steps-grid {
        grid-template-columns: 1fr;
    }

    .consulta-step-card {
        min-height: auto;
    }

    .consulta-disclaimer-content {
        padding: 25px 20px;
    }

}

@media (max-width: 480px) {

    .consulta-page-benefits {
        display: grid;
    }

    .consulta-page-info-card,
    .consulta-form-card,
    .consulta-support-card {
        padding: 24px 19px;
    }

    .consulta-field-footer {
        flex-direction: column;
        gap: 5px;
    }

    .consulta-field-footer small:last-child {
        text-align: left;
    }

    .consulta-result-header h2 {
        font-size: 21px;
    }

    .consulta-disclaimer-content {
        flex-direction: column;
    }

}

@media (prefers-reduced-motion: reduce) {

    .spinner {
        animation-duration: 1.6s;
    }

}
/* ==========================================================
   MODAL MOVIJUS
========================================================== */

.movijus-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.movijus-modal.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.movijus-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(8px);
}

.movijus-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    max-height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s ease;
}

.movijus-modal.is-visible .movijus-modal-dialog {
    transform: translateY(0) scale(1);
}

.movijus-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 5;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 50%;
    color: #52636e;
    background: rgba(255, 255, 255, 0.92);
    font-family: Arial, sans-serif;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.movijus-modal-close:hover {
    color: #020617;
    background: #ffffff;
    transform: rotate(5deg);
}

.movijus-modal-content {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
}

/* VISUAL */

.movijus-modal-visual {
    position: relative;
    display: flex;
    min-height: 630px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 48px 38px;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(35, 214, 168, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(35, 214, 168, 0.12),
            transparent 35%
        ),
        linear-gradient(145deg, #020617 0%, #0a2432 100%);
}

.movijus-modal-visual::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    top: -140px;
    right: -140px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.movijus-modal-brand {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.movijus-modal-brand span {
    color: #23d6a8;
}

.movijus-phone {
    position: relative;
    z-index: 2;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(13px);
}

.movijus-phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 3px 16px;
}

.movijus-phone-avatar {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    color: #020617;
    background: #23d6a8;
    font-size: 0.77rem;
    font-weight: 900;
}

.movijus-phone-header strong,
.movijus-phone-header small {
    display: block;
}

.movijus-phone-header strong {
    color: #ffffff;
}

.movijus-phone-header small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.72rem;
}

.movijus-message {
    padding: 19px;
    border-radius: 5px 17px 17px 17px;
    background: #dcf8c6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.movijus-message-label {
    display: block;
    margin-bottom: 7px;
    color: #087d68;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.movijus-message strong {
    display: block;
    color: #102735;
    font-size: 1.02rem;
}

.movijus-message p {
    margin: 8px 0 11px;
    color: #405149;
    font-size: 0.84rem;
    line-height: 1.55;
}

.movijus-message small {
    display: block;
    color: #66786f;
    font-size: 0.66rem;
    text-align: right;
}

.movijus-monitor-status {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.movijus-status-dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23d6a8;
    box-shadow: 0 0 0 7px rgba(35, 214, 168, 0.13);
}

.movijus-monitor-status strong,
.movijus-monitor-status small {
    display: block;
}

.movijus-monitor-status strong {
    color: #ffffff;
    font-size: 0.89rem;
}

.movijus-monitor-status small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* INFORMAÇÕES */

.movijus-modal-information {
    padding: 58px 50px 48px;
}

.movijus-modal-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #087d68;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.movijus-modal-information h2 {
    margin: 0 0 18px;
    color: #071826;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.movijus-modal-information > p {
    margin: 0;
    color: #5d6e79;
    font-size: 0.97rem;
    line-height: 1.75;
}

.movijus-modal-information > p strong {
    color: #087d68;
}

.movijus-benefits {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.movijus-benefits li {
    position: relative;
    padding-left: 31px;
    color: #445762;
    font-size: 0.9rem;
    line-height: 1.55;
}

.movijus-benefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    color: #087d68;
    background: rgba(35, 214, 168, 0.15);
    font-size: 0.73rem;
    font-weight: 900;
}

.movijus-warning {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 25px 0;
    padding: 17px;
    border: 1px solid #f1e1b7;
    border-radius: 14px;
    background: #fff9e9;
}

.movijus-warning > span {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #bd8515;
    font-weight: 900;
}

.movijus-warning p {
    margin: 0;
    color: #715a27;
    font-size: 0.82rem;
    line-height: 1.58;
}

.movijus-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.movijus-primary-button,
.movijus-secondary-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 11px;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.movijus-primary-button {
    border: 1px solid #23d6a8;
    color: #020617;
    background: #23d6a8;
    box-shadow: 0 15px 32px rgba(35, 214, 168, 0.22);
}

.movijus-primary-button:hover {
    color: #020617;
    background: #4ce4bd;
    transform: translateY(-2px);
}

.movijus-secondary-button {
    border: 1px solid #dfe6ea;
    color: #52636e;
    background: #ffffff;
}

.movijus-secondary-button:hover {
    color: #071826;
    background: #f5f8fa;
}

.movijus-modal-note {
    display: block;
    margin-top: 16px;
    color: #8a979e;
    font-size: 0.7rem;
    line-height: 1.5;
}

body.movijus-modal-open {
    overflow: hidden;
}

/* RESPONSIVIDADE */

@media (max-width: 860px) {

    .movijus-modal {
        align-items: flex-start;
        padding: 16px;
        overflow-y: auto;
    }

    .movijus-modal-dialog {
        max-height: none;
        margin: auto;
    }

    .movijus-modal-content {
        grid-template-columns: 1fr;
    }

    .movijus-modal-visual {
        min-height: auto;
        padding: 35px 28px;
    }

    .movijus-phone {
        max-width: 480px;
    }

    .movijus-modal-information {
        padding: 38px 28px;
    }

}

@media (max-width: 540px) {

    .movijus-modal {
        padding: 10px;
    }

    .movijus-modal-dialog {
        border-radius: 20px;
    }

    .movijus-modal-close {
        top: 12px;
        right: 12px;
    }

    .movijus-modal-visual {
        padding: 32px 20px 25px;
    }

    .movijus-modal-brand {
        margin-right: 50px;
    }

    .movijus-modal-information {
        padding: 31px 20px;
    }

    .movijus-modal-information h2 {
        font-size: 1.8rem;
    }

    .movijus-modal-actions {
        display: grid;
    }

    .movijus-primary-button,
    .movijus-secondary-button {
        width: 100%;
    }

}