:root {
    --navy: #08142e;
    --navy-mid: #0d2146;
    --navy-light: #12305e;
    --blue: #0e6fd8;
    --blue-dark: #0a5dbf;
    --blue-bright: #3b9eff;
    --cyan: #0dcfea;
    --orange: #f97316;
    --orange-light: #fb923c;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --radius: 0.75rem;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(8, 20, 46, 0.12);
    --shadow-lg: 0 12px 48px rgba(8, 20, 46, 0.18);
    --shadow-blue: 0 6px 20px rgba(14, 111, 216, 0.35);
    
  --primary: hsl(152, 55%, 32%);
  --primary-dark: hsl(152, 55%, 24%);
  --primary-light: hsla(152, 55%, 32%, 0.07);
  --primary-light2: hsla(152, 55%, 32%, 0.14);
  --primary-fg: #fff;
  --bg: hsl(120, 10%, 96%);
  --fg: hsl(120, 20%, 8%);
  --card: #fff;
  --muted: hsl(120, 8%, 46%);
  --border: hsl(120, 12%, 88%);
  --secondary: hsl(148, 40%, 93%);
  --secondary-fg: hsl(152, 55%, 27%);
  --accent: hsl(42, 88%, 49%);
  --destructive: hsl(0, 68%, 45%);
  --destructive-light: hsla(0, 68%, 45%, 0.07);
  --destructive-border: hsla(0, 68%, 45%, 0.18);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-primary: 0 4px 14px hsla(152, 55%, 32%, 0.25);
  --shadow-primary-dark: 0 6px 20px rgba(35,122,79,0.3);
  --shadow-primary-xl: 0 8px 24px hsla(152, 55%, 32%, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s, box-shadow 0.35s;
    padding: 0 2rem;
}

#navbar.scrolled {
    background: rgba(8, 20, 46, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    font-family: var(--font-head);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links .nav-cta {
    background: var(--orange);
    color: var(--white);
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
    background: var(--orange-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(14, 111, 216, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(13, 207, 234, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0a1f4a 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 68px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.slide-text {}

.slide-eyebrow {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

.slide.active .slide-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s 0.35s ease, transform 0.6s 0.35s ease;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s 0.65s ease, transform 0.6s 0.65s ease;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon-box {
    width: 260px;
    height: 260px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    opacity: 0;
    transform: scale(0.85) rotate(-5deg);
    transition: opacity 0.8s 0.4s ease, transform 0.8s 0.4s ease;
    position: relative;
}

.slide.active .slide-icon-box {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.slide-icon-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 31px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dot.active {
    background: var(--cyan);
    width: 28px;
    border-radius: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-family: var(--font-head);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ── SECTIONS ── */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-label {
    color: var(--cyan);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 580px;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* ── SOBRE ── */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.sobre-text p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    text-align: justify;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* ── OFERECEMOS ── */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-bright);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.offer-title {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.offer-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    text-align: justify;
}

/* ── SISTEMAS TABS ── */
.sistemas-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.tab-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border: none;
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    color: var(--gray-600);
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 600;
    width: 100%;
    border: 1px solid transparent;
}

.tab-btn i {
    width: 20px;
    font-size: 1rem;
}

.tab-btn:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.tab-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(8, 20, 46, 0.2);
}

.tab-btn.active i {
    color: var(--cyan);
}

.tab-panels {}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel-inner {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.tab-panel-inner h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.tab-panel-inner > p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 0.85rem;
    font-size: 0.97rem;
    text-align: justify;
}

.feature-title {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 1.75rem 0 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--cyan);
    margin-top: 6px;
}

.feature-list.single-col {
    grid-template-columns: 1fr;
}

/* Mobile accordion for sistemas */
.sistemas-accordion {
    display: none;
    margin-top: 2rem;
}

.acc-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.acc-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
    background: var(--gray-50);
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.acc-header:hover {
    background: var(--gray-100);
}

.acc-header.open {
    background: var(--navy);
    color: var(--white);
}

.acc-header.open i {
    color: var(--cyan);
}

.acc-header .acc-arrow {
    margin-left: auto;
    transition: transform 0.3s;
}

.acc-header.open .acc-arrow {
    transform: rotate(180deg);
}

.acc-body {
    display: none;
    padding: 1.5rem;
    background: var(--white);
}

.acc-body.open {
    display: block;
}

.acc-body p {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    text-align: justify;
}

.acc-body ul {
    list-style: none;
}

.acc-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
}

.acc-body ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--cyan);
    margin-top: 6px;
}

/* ── CLIENTES ── */
.clientes-header {
    margin-bottom: 3rem;
}

.clientes-section-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.clientes-section-title i {
    color: var(--blue);
    font-size: 1.1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.client-placeholder {
    aspect-ratio: 2/1;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.client-placeholder:hover {
    border-color: var(--blue-bright);
    color: var(--blue);
    background: #eff8ff;
}

/* ── CONTATO ── */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.45rem;
    font-family: var(--font-head);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(14, 111, 216, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.info-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    color: var(--white);
}

.info-box h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.info-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1rem;
}

.info-item-text p:first-child {
    font-size: 0.78rem;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.2rem;
}

.info-item-text p:last-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ── TRABALHE CONOSCO ── */
.trab-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.trab-info-box {
    background: linear-gradient(135deg, var(--blue), #0a4fa8);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    color: var(--white);
}

.trab-info-box h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.trab-info-box p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.85rem;
}

.trab-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.value-badge {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-family: var(--font-head);
    font-weight: 600;
}

/* ── SUPORTE / DOWNLOAD ── */
.suporte-cards {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 520px;
    margin: 0 auto;
    margin-top: 2rem;
}

.suporte-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.15rem 1.4rem;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--navy);
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.suporte-card:hover {
    border-color: var(--blue);
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(14, 111, 216, 0.15);
    color: var(--blue);
}

.suporte-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.suporte-card-text {}

.suporte-card-name {
    font-family: var(--font-head);
    font-size: 0.97rem;
    font-weight: 700;
}

.suporte-card-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.1rem;
}

.suporte-card-arrow {
    margin-left: auto;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.suporte-card:hover .suporte-card-arrow {
    color: var(--blue);
}

/* ── FOOTER ── */
footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.55rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── FORM SUCCESS ── */
.form-success {
    display: none;
    background: #ecfdf5;
    border: 1.5px solid #86efac;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: #15803d;
    font-size: 0.92rem;
    font-weight: 600;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.form-success.show {
    display: flex;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sistemas-layout {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        display: none;
    }

    .tab-panels {
        display: none;
    }

    .sistemas-accordion {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(8, 20, 46, 0.97);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 6px;
    }

    .hamburger {
        display: flex;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slide-visual {
        display: none;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid,
    .trab-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .sobre-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 1.25rem;
    }
}
/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #e63946;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-4px);
}

@media (max-width: 480px) {
    #backToTop {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
    }
}


.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--blue);
    color: var(--white);
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(14, 111, 216, 0.35);
}

.ml-0 { margin-left: 0; } 
.ml-1 { margin-left: .25rem; } 
.ml-2 { margin-left: .5rem; } 
.ml-3 { margin-left: 1rem; } 
.ml-4 { margin-left: 1.5rem; } 
.ml-5 { margin-left: 3rem; } 

.mr-0 { margin-right: 0; } 
.mr-1 { margin-right: .25rem; } 
.mr-2 { margin-right: .5rem; } 
.mr-3 { margin-right: 1rem; } 
.mr-4 { margin-right: 1.5rem; } 
.mr-5 { margin-right: 3rem; } 

.req { color: var(--primary); }

.form-footer { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 1rem; line-height: 1.7; }
.form-footer a { color: var(--primary); text-decoration: underline; }

.form-submit { 
    width: 100%; 
    padding: 1rem; 
    background:  var(--blue);
    color:  var(--white);
    border: none; 
    font-size: 1rem; 
    font-weight: 700; 
    border-radius: var(--radius);
    font-family: var(--font-head);
    cursor: pointer; 
    transition: all .25s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem; 
    margin-top: 0.5rem; 
    letter-spacing: -0.01em; 
}
.form-submit:hover:not(:disabled) { 
    background: var(--blue-dark);
    transform: translateY(-1px); 
    box-shadow: var(--shadow-blue); 
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-submit .spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.form-submit.loading .spinner { display: block; }
.form-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 1rem 1.5rem; box-shadow: var(--shadow-md);
  transform: translateY(120%); opacity: 0; transition: all 0.4s;
  max-width: 360px; font-size: 0.875rem;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-color: var(--destructive); }
.toast-title { font-weight: 700; margin-bottom: 0.25rem; }
.toast-desc { color: var(--muted); }

.form-toast.success { display: flex; background: rgba(35,122,79,0.08); border: 1px solid rgba(35,122,79,0.2); color: var(--primary-dark); }
.form-toast.error { display: flex; background: var(--destructive-light); border: 1px solid var(--destructive-border); color: var(--destructive); }
.form-toast-icon { font-size: 1.25rem; flex-shrink: 0; }
