﻿
:root {
    --bg: #070f1d;
    --bg-soft: #0c162b;
    --surface: rgba(14, 24, 41, 0.78);
    --surface-strong: #13203a;
    --line: rgba(148, 163, 184, 0.24);
    --text: #f3f7ff;
    --muted: #adc0d8;
    --brand: #37b4e6;
    --brand-strong: #1f9dd2;
    --success: #2db68a;
    --warning: #f5a947;
    --danger: #ef5f5f;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-lg: 0 22px 56px rgba(2, 8, 22, 0.48);
    --shadow-md: 0 14px 32px rgba(2, 8, 22, 0.36);
    --font-ui: "Manrope", "IBM Plex Sans", sans-serif;
    --section-bg: radial-gradient(circle at 15% 18%, rgba(55, 180, 230, 0.12) 0%, rgba(7, 15, 30, 0.94) 46%, rgba(5, 10, 20, 0.98) 100%);
    --section-grid: rgba(148, 163, 184, 0.08);
    --section-glow-a: rgba(55, 180, 230, 0.18);
    --section-glow-b: rgba(45, 182, 138, 0.14);
}

html[data-theme="light"] {
    --bg: #f6f9ff;
    --bg-soft: #eef4ff;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --line: rgba(25, 41, 66, 0.16);
    --text: #0b1b34;
    --muted: #415a77;
    --brand: #0c8fbf;
    --brand-strong: #0a7aa2;
    --shadow-lg: 0 18px 46px rgba(16, 28, 51, 0.12);
    --shadow-md: 0 12px 26px rgba(16, 28, 51, 0.09);
    --section-bg: radial-gradient(circle at 14% 20%, rgba(12, 143, 191, 0.12) 0%, rgba(246, 250, 255, 0.78) 50%, rgba(242, 247, 255, 0.92) 100%);
    --section-grid: rgba(25, 41, 66, 0.07);
    --section-glow-a: rgba(12, 143, 191, 0.2);
    --section-glow-b: rgba(45, 182, 138, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
}

body::before {
    background: var(--section-bg);
}

body::after {
    z-index: -2;
    opacity: 0.46;
    background-image:
        linear-gradient(90deg, transparent 0%, var(--section-grid) 1px, transparent 1px),
        linear-gradient(180deg, transparent 0%, var(--section-grid) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.05));
}

body[data-section="home"] {
    --section-bg: radial-gradient(circle at 16% 18%, rgba(56, 189, 248, 0.16) 0%, rgba(7, 15, 30, 0.94) 44%, rgba(5, 10, 20, 0.98) 100%);
}

body[data-section="services"] {
    --section-bg: radial-gradient(circle at 14% 16%, rgba(46, 125, 255, 0.18) 0%, rgba(7, 18, 36, 0.95) 43%, rgba(5, 10, 20, 0.98) 100%);
    --section-glow-a: rgba(46, 125, 255, 0.22);
    --section-glow-b: rgba(36, 184, 156, 0.16);
}

body[data-section="products"] {
    --section-bg: radial-gradient(circle at 12% 16%, rgba(61, 204, 162, 0.14) 0%, rgba(6, 18, 29, 0.95) 45%, rgba(4, 10, 20, 0.98) 100%);
    --section-glow-a: rgba(61, 204, 162, 0.22);
    --section-glow-b: rgba(56, 189, 248, 0.14);
}

body[data-section="cases"] {
    --section-bg: radial-gradient(circle at 18% 16%, rgba(247, 169, 71, 0.16) 0%, rgba(25, 16, 13, 0.88) 42%, rgba(10, 8, 9, 0.98) 100%);
    --section-glow-a: rgba(247, 169, 71, 0.22);
    --section-glow-b: rgba(239, 95, 95, 0.12);
}

body[data-section="testimonials"] {
    --section-bg: radial-gradient(circle at 16% 16%, rgba(125, 117, 255, 0.16) 0%, rgba(14, 12, 30, 0.9) 42%, rgba(7, 7, 18, 0.98) 100%);
    --section-glow-a: rgba(125, 117, 255, 0.22);
    --section-glow-b: rgba(55, 180, 230, 0.14);
}

body[data-section="blog"] {
    --section-bg: radial-gradient(circle at 15% 16%, rgba(31, 157, 210, 0.2) 0%, rgba(9, 19, 31, 0.9) 44%, rgba(4, 10, 18, 0.98) 100%);
    --section-glow-a: rgba(31, 157, 210, 0.24);
    --section-glow-b: rgba(45, 182, 138, 0.12);
}

body[data-section="company"] {
    --section-bg: radial-gradient(circle at 15% 16%, rgba(45, 182, 138, 0.15) 0%, rgba(7, 18, 27, 0.9) 44%, rgba(4, 10, 18, 0.98) 100%);
    --section-glow-a: rgba(45, 182, 138, 0.22);
    --section-glow-b: rgba(31, 157, 210, 0.14);
}

body[data-section="legal"],
body[data-section="error"] {
    --section-bg: radial-gradient(circle at 16% 16%, rgba(148, 163, 184, 0.16) 0%, rgba(12, 16, 27, 0.9) 42%, rgba(6, 8, 16, 0.98) 100%);
    --section-glow-a: rgba(148, 163, 184, 0.2);
    --section-glow-b: rgba(55, 180, 230, 0.1);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.site-main {
    min-height: calc(100vh - 260px);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2001;
    background: var(--text);
    color: var(--bg);
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 700;
    transform: translateY(-120%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1700;
    background: linear-gradient(90deg, #8be0ff 0%, var(--brand) 58%, #5fd8b5 100%);
    box-shadow: 0 0 22px rgba(55, 180, 230, 0.42);
    transition: width 0.14s linear;
}

.bg-glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    will-change: transform;
    animation: float-glow 16s ease-in-out infinite alternate;
}

.bg-glow-a {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: var(--section-glow-a);
}

.bg-glow-b {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 35%;
    background: var(--section-glow-b);
    animation-duration: 20s;
}

@keyframes float-glow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(20px, -18px, 0) scale(1.05);
    }
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1200;
    border-bottom: 1px solid transparent;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(9, 15, 28, 0.78);
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(3, 8, 21, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

html[data-theme="light"] .site-header.scrolled {
    background: rgba(247, 251, 255, 0.86);
    box-shadow: 0 10px 28px rgba(24, 36, 59, 0.12);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.brand img {
    width: 190px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.brand span {
    font-size: 1rem;
}

.desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 10px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--text);
    background: rgba(148, 163, 184, 0.12);
}

.nav-cta {
    margin-left: 4px;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
}

.mobile-nav {
    border-top: 1px solid var(--line);
    background: rgba(9, 15, 28, 0.96);
}

html[data-theme="light"] .mobile-nav {
    background: rgba(247, 251, 255, 0.98);
}

.mobile-nav[hidden] {
    display: none !important;
}

.mobile-nav-inner {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 16px 24px 24px;
    display: grid;
    gap: 8px;
}

.mobile-link {
    color: var(--text);
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 11px 12px;
    background: rgba(148, 163, 184, 0.08);
}

.mobile-link[aria-current="page"] {
    border-color: var(--brand);
}

.theme-toggle {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 0.82rem;
    padding: 9px 11px;
    cursor: pointer;
    font-weight: 700;
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--brand);
}

.page-shell {
    padding-top: 138px;
    padding-bottom: 84px;
}

.page-shell.compact {
    padding-top: 124px;
}

.page-hero {
    margin-bottom: 26px;
    position: relative;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.page-hero p {
    margin: 0;
    max-width: 70ch;
    color: var(--muted);
}

.page-hero::after {
    content: "";
    display: block;
    width: min(340px, 56%);
    height: 1px;
    margin-top: 16px;
    background: linear-gradient(90deg, rgba(55, 180, 230, 0.6), rgba(55, 180, 230, 0));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(55, 180, 230, 0.34);
    background: rgba(55, 180, 230, 0.12);
    color: #d4f3ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 22px;
    overflow: clip;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    transform-style: preserve-3d;
}

.card:hover {
    border-color: rgba(55, 180, 230, 0.42);
    box-shadow: 0 18px 44px rgba(4, 11, 24, 0.4);
}

.card[data-hover-tilt] {
    perspective: 1000px;
}

.card h2,
.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card p + p {
    margin-top: 10px;
}

.card + .card {
    margin-top: 0;
}

.metric-card {
    text-align: center;
    padding: 18px;
}

.metric-value {
    font-size: clamp(1.7rem, 5vw, 2.7rem);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 800;
}

.metric-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.list-clean {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-clean li {
    position: relative;
    padding-left: 18px;
    margin-top: 8px;
    color: var(--muted);
}

.list-clean li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
    position: absolute;
    left: 0;
    top: 0.55em;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

.tag {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(148, 163, 184, 0.1);
    padding: 6px 10px;
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 11px 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #05152a;
    background: linear-gradient(135deg, #6fd2f3 0%, var(--brand) 100%);
    box-shadow: 0 10px 24px rgba(31, 157, 210, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #87ddf7 0%, #42bfe9 100%);
}

.btn-outline {
    border-color: var(--line);
    background: transparent;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--brand);
}

.btn-block {
    width: 100%;
}

.breadcrumb {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--text);
}

.small {
    font-size: 0.85rem;
}

.muted {
    color: var(--muted);
}

.alert {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid transparent;
    font-weight: 600;
}

.alert.success {
    color: #d5fff0;
    background: rgba(45, 182, 138, 0.14);
    border-color: rgba(45, 182, 138, 0.3);
}

form {
    margin: 0;
}

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

.form-row-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--muted);
}

input,
textarea,
select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(148, 163, 184, 0.08);
    color: var(--text);
    font: inherit;
    padding: 11px 12px;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
    outline: 2px solid rgba(55, 180, 230, 0.45);
    outline-offset: 2px;
}

.validation {
    margin-top: 5px;
    display: block;
    color: #ffb4b4;
    font-size: 0.8rem;
}

.section-spaced {
    margin-top: 20px;
}

.post-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.post-list li a {
    display: block;
}

.chart-card {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.chart-card h3 {
    margin: 0 0 10px;
}

.chart-card canvas {
    width: 100% !important;
    height: 100% !important;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 14, 28, 0.82) 0%, rgba(6, 11, 22, 0.9) 100%);
}

.footer-grid {
    padding-top: 58px;
    padding-bottom: 42px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.footer-brand p {
    margin-top: 14px;
    margin-bottom: 0;
    color: var(--muted);
    max-width: 36ch;
}

.footer-title {
    margin: 0 0 10px;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--text);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-bottom {
    border-top: 1px solid var(--line);
}

.footer-bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links a {
    color: var(--muted);
}

.footer-bottom-links a:hover {
    color: var(--text);
}

.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 1250;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.5);
    background: #25d366;
    color: #003014;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(7, 65, 30, 0.36);
}

.chat-widget {
    position: fixed;
    right: 20px;
    bottom: 84px;
    z-index: 1250;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(55, 180, 230, 0.6);
    background: linear-gradient(145deg, var(--brand) 0%, #5fd8b5 100%);
    color: #052033;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 157, 210, 0.34);
}

.chat-panel {
    position: fixed;
    right: 18px;
    bottom: 148px;
    width: min(360px, calc(100vw - 22px));
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    z-index: 1255;
}

.chat-panel.open {
    display: block;
}

.chat-header {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.chat-header button {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-size: 0.78rem;
    padding: 6px 8px;
    cursor: pointer;
}

.chat-messages {
    max-height: 320px;
    min-height: 140px;
    overflow-y: auto;
    padding: 10px 10px 4px;
    display: grid;
    gap: 8px;
}

.msg {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.msg.bot {
    background: rgba(55, 180, 230, 0.08);
}

.msg.user {
    background: rgba(148, 163, 184, 0.1);
}

.msg .sender {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.msg p {
    margin: 0;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 8px;
}

.chat-options button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.78rem;
    cursor: pointer;
}

.chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding: 10px;
}

.chat-form input {
    min-width: 0;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1300;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(9, 15, 28, 0.95);
    box-shadow: var(--shadow-md);
    padding: 12px;
    display: grid;
    gap: 10px;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-actions label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--muted);
}

.cookie-actions input {
    width: auto;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal].is-visible,
[data-reveal].show {
    opacity: 1;
    transform: none;
}

[data-reveal][data-delay="1"] {
    transition-delay: 0.08s;
}

[data-reveal][data-delay="2"] {
    transition-delay: 0.16s;
}

[data-reveal][data-delay="3"] {
    transition-delay: 0.24s;
}

[data-reveal][data-delay="4"] {
    transition-delay: 0.32s;
}

.page-shell.module-page {
    position: relative;
    isolation: isolate;
}

.page-shell.module-page::before {
    content: "";
    position: absolute;
    inset: 78px 0 auto;
    height: 260px;
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
    filter: blur(0.4px);
}

.module-page.theme-software::before {
    background: radial-gradient(circle at 16% 18%, rgba(46, 125, 255, 0.2) 0%, rgba(46, 125, 255, 0.02) 62%, transparent 100%);
}

.module-page.theme-web::before {
    background: radial-gradient(circle at 16% 18%, rgba(31, 157, 210, 0.22) 0%, rgba(31, 157, 210, 0.04) 62%, transparent 100%);
}

.module-page.theme-mobile::before {
    background: radial-gradient(circle at 16% 18%, rgba(45, 182, 138, 0.22) 0%, rgba(45, 182, 138, 0.04) 62%, transparent 100%);
}

.module-page.theme-automation::before {
    background: radial-gradient(circle at 16% 18%, rgba(247, 169, 71, 0.24) 0%, rgba(247, 169, 71, 0.03) 62%, transparent 100%);
}

.module-page.theme-food::before {
    background: radial-gradient(circle at 16% 18%, rgba(239, 95, 95, 0.22) 0%, rgba(239, 95, 95, 0.03) 62%, transparent 100%);
}

.module-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.module-layout.triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card {
    display: grid;
    gap: 12px;
}

.module-card h2,
.module-card h3 {
    margin: 0;
}

.module-card p {
    margin: 0;
    color: var(--muted);
}

.module-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-badge {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 10px;
}

.module-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.module-step {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.08);
    padding: 12px;
}

.module-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    margin-bottom: 8px;
    font-size: 0.75rem;
}

.module-step h3 {
    margin: 0 0 4px;
    font-size: 0.94rem;
}

.module-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.module-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.module-kpi {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.08);
    padding: 12px;
    text-align: center;
}

.module-kpi strong {
    display: block;
    font-size: 1.14rem;
    margin-bottom: 4px;
}

.module-kpi span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.module-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.module-table th,
.module-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
}

.module-table th {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(148, 163, 184, 0.08);
}

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

.services-intro {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.services-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-badge {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    color: var(--muted);
    background: rgba(148, 163, 184, 0.08);
    font-weight: 700;
}

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

.services-card {
    display: grid;
    gap: 10px;
}

.services-card h3 {
    margin: 0;
}

.services-card p {
    margin: 0;
}

.services-score {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-score li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 700;
}

.services-process {
    margin-top: 14px;
}

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

.services-estimator .card {
    display: grid;
    gap: 10px;
}

.services-estimator output {
    display: block;
    font-weight: 800;
    font-size: 1.16rem;
}

.services-estimator small {
    color: var(--muted);
}

.catalog-toolbar {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.catalog-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    color: var(--muted);
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.catalog-chip.active {
    border-color: var(--brand);
    background: rgba(55, 180, 230, 0.16);
    color: var(--text);
}

.catalog-goals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.catalog-goal {
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.06);
    color: var(--muted);
    padding: 8px 12px;
    font-size: 0.82rem;
    cursor: pointer;
}

.catalog-count {
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 10px;
}

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

.catalog-card {
    display: grid;
    gap: 10px;
}

.catalog-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-badge {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 700;
}

.catalog-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.catalog-highlights li {
    position: relative;
    padding-left: 14px;
    color: var(--muted);
    font-size: 0.88rem;
}

.catalog-highlights li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand);
    position: absolute;
    left: 0;
    top: 0.52em;
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.story-card {
    display: grid;
    gap: 10px;
}

.story-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.quote-card {
    display: grid;
    gap: 12px;
}

.quote-card blockquote {
    margin: 0;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.62;
}

.quote-card figcaption {
    color: var(--muted);
    font-size: 0.84rem;
}

.content-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.content-list .card > a {
    display: grid;
    gap: 8px;
}

.article-shell {
    max-width: 860px;
    margin: 0 auto;
}

.article-shell h2 {
    margin-top: 24px;
}

.article-shell p {
    color: var(--muted);
}

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

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
}

.contact-checklist {
    display: grid;
    gap: 10px;
}

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

.numbers-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.numbers-chart-grid .chart-card {
    min-height: 300px;
}

@media (max-width: 1060px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

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

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

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

    .module-layout.triple,
    .services-grid,
    .quote-grid,
    .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .services-estimator {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand span {
        display: none;
    }

    .page-shell {
        padding-top: 110px;
        padding-bottom: 64px;
    }

    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid,
    .story-grid,
    .quote-grid,
    .about-grid,
    .numbers-grid,
    .numbers-chart-grid,
    .module-layout,
    .module-layout.triple,
    .module-kpis,
    .module-process,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-search {
        grid-template-columns: 1fr;
    }

    .catalog-actions .btn,
    .module-actions .btn,
    .services-estimator .btn {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .chat-widget {
        bottom: 80px;
    }

    .float-whatsapp {
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .bg-glow,
    .card {
        animation: none !important;
        transform: none !important;
    }
}
