@charset "UTF-8";

:root {
    --bg: #020617;
    --bg-alt: #030617;
    --bg-soft: #050b24;
    --primary: #0b1f3b; /* azul escuro principal */
    --primary-soft: rgba(15, 111, 255, 0.18);
    --primary-strong: #5ab0ff; /* azul destaque */
    --accent: #3b82f6;
    --accent-soft: rgba(59, 130, 246, 0.16);
    --text: #e5ecff;
    --text-soft: #9ca3ff;
    --border-subtle: rgba(148, 163, 255, 0.18);
    --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.9);
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --transition-fast: 150ms ease-out;
    --transition-base: 220ms ease-out;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top left, #020617 0%, #00010a 45%, #000 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.noise-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    z-index: -1;
}

.grid-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.7) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.45;
    mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 1), transparent 60%);
    z-index: -2;
    animation: grid-shift 26s linear infinite;
}

@keyframes grid-shift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-80px, -40px, 0);
    }
}

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

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

.gs-container-hero {
    min-height: calc(100vh - 10rem) !important; 
}

.gs-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-alt {
    background: radial-gradient(circle at top, #020617 0%, #020617 40%, #010313 100%);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: linear-gradient(120deg, rgba(15, 111, 255, 0.25), rgba(56, 189, 248, 0.1));
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-strong);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.4rem, 3.4vw + 1rem, 3.8rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.6rem);
}

h3 {
    font-size: 1.1rem;
}

.section-text {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-top: 0.2rem;
}

.section-text.narrow {
    max-width: 640px;
}

.section-text.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* HEADER – menu flutuante em estilo pílula */

.gs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 1rem 1.5rem;
    pointer-events: none;
    transition: padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Início da página: menu em pílula flutuante */
.gs-header--pill .gs-header-pill {
    pointer-events: auto;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.6rem 1.4rem 0.6rem 1rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.88);
    border: 1px solid rgba(148, 163, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: max-width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-radius 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Após rolar: barra fixa no topo, largura total; conteúdo alinhado ao container no desktop */
.gs-header.is-scrolled {
    padding: 0;
    background: rgba(3, 8, 22, 0.98);
    border-bottom: 2px solid rgba(56, 189, 248, 0.55);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.gs-header.is-scrolled .gs-header-pill {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0.65rem 1.5rem;
}

.gs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.logo-mark img {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

.logo-text {
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: 1.05rem;
}

.gs-header--pill .logo-text {
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gs-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 1rem;
}

.gs-nav a {
    color: var(--text-soft);
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

.gs-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
    transition: width var(--transition-fast);
}

.gs-nav a:hover {
    color: var(--text);
}

.gs-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 255, 0.6);
    background: radial-gradient(circle at top, rgba(15, 111, 255, 0.4), rgba(2, 6, 23, 0.95));
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5ecff;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* BUTTONS */

.btn-primary,
.btn-ghost {
    border-radius: var(--radius-pill);
    border: none;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base), color var(--transition-fast);
}

.btn-primary {
    background:
        radial-gradient(circle at 0 0, #22d3ee, transparent 55%),
        linear-gradient(120deg, #1d4ed8, #0ea5e9);
    color: #e5f2ff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.55);
}

.btn-ghost {
    border: 1px solid rgba(148, 163, 255, 0.5);
    background: rgba(15, 23, 42, 0.75);
    color: var(--text-soft);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.95);
    color: var(--text);
}

.btn-small {
    padding-inline: 1.2rem;
    padding-block: 0.45rem;
    font-size: 0.85rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.btn-full {
    width: 100%;
}

/* HERO */

.hero {
    padding: 6rem 0 4.8rem;
    position: relative;
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -1;
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.25),
        0 0 160px rgba(14, 165, 233, 0.15);
    animation: hero-orbit-glow 8s ease-in-out infinite;
}

@keyframes hero-orbit-glow {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.02); }
}

.hero-orbit--left {
    width: 520px;
    height: 520px;
    left: -120px;
    top: -80px;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.8), transparent 60%),
        radial-gradient(circle at 60% 80%, rgba(14, 165, 233, 0.7), transparent 70%);
}

.hero-orbit--right {
    width: 520px;
    height: 520px;
    right: -120px;
    bottom: -120px;
    background:
        radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.9), transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(56, 189, 248, 0.7), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 3.2rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin: 0 0 1.3rem;
}

.hero-title-line {
    display: block;
}

.hero-title-line--highlight {
    background: linear-gradient(120deg, #e0f2fe, #38bdf8, #2563eb, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: accent-shift 14s ease-in-out infinite;
}

@keyframes accent-shift {
    0% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.4);
    }
    100% {
        filter: saturate(1);
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 255, 0.45);
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 1.2rem;
    backdrop-filter: blur(12px);
}

.hero-gradient {
    background: linear-gradient(120deg, #e0f2fe, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin-top: 0.8rem;
    margin-bottom: 1.6rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.1rem;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    font-size: 0.88rem;
}

.hero-metrics div {
    min-width: 90px;
}

.metric-number {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
}

.metric-label {
    color: var(--text-soft);
}

.hero-visual {
    position: relative;
    min-height: 320px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    position: relative;
    right: auto;
    left: auto;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 255, 0.6);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.55), rgba(2, 6, 23, 0.98));
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.98);
    transform-style: preserve-3d;
    font-size: 0.88rem;
    overflow: hidden;
}

.hero-visual-card--primary {
    width: min(400px, 95%);
    padding: 1.4rem 1.6rem 1.5rem;
}

.hero-visual-card--glass {
    width: min(270px, 85%);
    padding: 0.9rem 1rem 1rem;
    backdrop-filter: blur(20px);
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.4), rgba(15, 23, 42, 0.96));
}

.hero-visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(52, 211, 153, 0.8);
    font-size: 0.8rem;
    color: #bbf7d0;
}

.badge-live .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
}

.hero-visual-logo {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.hero-visual-main {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.hero-visual-kpi .kpi-label {
    font-size: 0.8rem;
    color: var(--text-soft);
}

.hero-visual-kpi .kpi-number {
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -0.06em;
    margin-top: 0.2rem;
}

.kpi-unit {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.hero-visual-graph {
    flex: 1;
    height: 78px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    position: relative;
    overflow: hidden;
}

.hero-visual-line {
    position: absolute;
    inset: auto 0 0 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.1), rgba(56, 189, 248, 0.9));
    border-radius: 999px;
    transform-origin: bottom;
    animation: graph-pulse 8s ease-in-out infinite;
}

.hero-visual-line--one {
    width: 24%;
    left: 6%;
    animation-delay: 0s;
}

.hero-visual-line--two {
    width: 24%;
    left: 38%;
    animation-delay: 0.8s;
}

.hero-visual-line--three {
    width: 24%;
    left: 70%;
    animation-delay: 1.6s;
}

@keyframes graph-pulse {
    0% {
        transform: scaleY(0.35);
    }
    35% {
        transform: scaleY(1);
    }
    70% {
        transform: scaleY(0.6);
    }
    100% {
        transform: scaleY(0.35);
    }
}

.hero-visual-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.hero-visual-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-visual-footer i {
    color: var(--primary-strong);
}

.hero-visual-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
}

.mini-label {
    color: var(--text-soft);
}

.mini-tag {
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 255, 0.7);
    font-size: 0.78rem;
}

.hero-visual-thumb {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 255, 0.7);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 1);
}

.hero-visual-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center;
    transition: transform 1600ms ease-out;
}

.hero-visual-card--glass:hover img {
    transform: scale(1.05);
}

.hero-floating-label {
    position: absolute;
    left: 0;
    bottom: 10%;
    max-width: 280px;
    padding: 0.7rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.93);
    border: 1px solid rgba(148, 163, 255, 0.7);
    font-size: 0.85rem;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 1);
}

.pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, #22d3ee, transparent 60%);
    color: #e5f2ff;
}

.layer-parallax {
    transition: transform 260ms ease-out, box-shadow 260ms ease-out;
}

/* SOBRE */

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: flex-start;
}

.section-cards {
    display: grid;
    gap: 1.4rem;
}

.info-card {
    padding: 1.3rem 1.4rem;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
    border: 1px solid rgba(148, 163, 255, 0.35);
    box-shadow: var(--shadow-soft);
}

.info-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.7), transparent 65%);
    color: #e5f2ff;
    margin-bottom: 0.7rem;
}

.stacked-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.stacked-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 255, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-soft);
}

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

/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.feature-card {
    padding: 1.2rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 255, 0.35);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.98));
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -20% 0 -20%;
    height: 40%;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base), transform var(--transition-base);
    transform: translateY(40%);
}

.feature-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    background: rgba(15, 23, 42, 0.8);
}

.feature-card p {
    margin: 0.35rem 0 0;
    color: var(--text-soft);
    line-height: 1.6;
}

/* SERVIÇOS */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-grid-modern {
    align-items: stretch;
}

.service-card {
    border-radius: 22px;
    padding: 1.4rem 1.4rem 1.5rem;
    background: radial-gradient(circle at top, var(--bg-soft), #020617);
    border: 1px solid rgba(148, 163, 255, 0.6);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.service-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.6), transparent 60%);
    color: #e5f2ff;
}

.service-tag {
    font-size: 0.8rem;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 255, 0.7);
    color: var(--text-soft);
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
    display: grid;
    gap: 0.3rem;
}

.service-card li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.service-card li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-strong);
}

/* CASES */

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-bottom: 1.8rem;
}

.case-card {
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 255, 0.55);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.case-preview {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    min-height: 180px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
}

.case-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease-out;
}

.case-preview:hover img {
    transform: scale(1.04);
}

.case-preview-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    color: var(--primary-strong);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 220ms ease-out;
}

.case-preview:hover .case-preview-label {
    opacity: 1;
}

.case-card .case-badge,
.case-card h3,
.case-card p,
.case-card .case-list {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

.case-card .case-badge {
    padding-top: 1.1rem;
    padding-bottom: 0;
}

.case-card h3 {
    padding-top: 0.5rem;
}

.case-card p {
    padding-bottom: 0.5rem;
}

.case-card .case-list {
    padding-bottom: 1.4rem;
    margin-bottom: 0;
}

.case-card--highlight {
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow: 0px 0px 70px rgba(37, 99, 235, 0.7);
}

.case-card p {
    margin: 0.4rem 0 0.7rem;
    color: var(--text-soft);
}

.case-meta {
    font-size: 0.88rem;
    color: var(--text-soft);
}

.case-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 255, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-strong);
}

.case-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
}

.case-pill {
    padding: 0.12rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--primary-strong);
}

.case-type {
    color: var(--text-soft);
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.case-list {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0;
    display: grid;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.case-list li::before {
    content: "◆";
    margin-right: 0.4rem;
    color: var(--primary-strong);
}

/* FAQ */

.gs-container--full {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.faq-grid {
    display: grid;
    gap: 0.8rem;
    width: 100%;
    max-width: none;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 255, 0.4);
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
    padding: 0.85rem 1.1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-right: 1.2rem;
}

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

.faq-item summary::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.85rem;
    color: var(--primary-strong);
}

.faq-item[open] summary::after {
    content: "—";
}

.faq-item p {
    margin: 0.6rem 0 0.1rem;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* CTA WHATSAPP */

.section-cta {
    position: relative;
    padding: 5.5rem 1.5rem 6rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(37, 99, 235, 0.25), transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(56, 189, 248, 0.18), transparent 50%),
        linear-gradient(180deg, #030617 0%, #020617 50%, #010410 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.cta-glow--left {
    width: 400px;
    height: 400px;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 70%);
}

.cta-glow--right {
    width: 400px;
    height: 400px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
}

.cta-whatsapp-block {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-strong);
    margin-bottom: 1.2rem;
    animation: cta-badge-pulse 3s ease-in-out infinite;
}

@keyframes cta-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.2); }
    50% { box-shadow: 0 0 24px 4px rgba(56, 189, 248, 0.15); }
}

.cta-whatsapp-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin: 0 0 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #e5f2ff 0%, #93c5fd 35%, #38bdf8 70%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: cta-title-shine 8s ease-in-out infinite;
}

@keyframes cta-title-shine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.cta-whatsapp-text {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0 0 2.2rem;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 16px 40px rgba(37, 99, 235, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6), 0 24px 56px rgba(37, 99, 235, 0.55), 0 0 60px rgba(56, 189, 248, 0.25);
}

.btn-cta-whatsapp:hover::before {
    opacity: 1;
}

.btn-cta-icon {
    font-size: 1.4rem;
    display: inline-flex;
}

.btn-cta-text {
    letter-spacing: 0.02em;
}

.btn-cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.btn-cta-whatsapp:hover .btn-cta-arrow {
    transform: translateX(4px);
}

.cta-whatsapp-note {
    margin-top: 1.4rem;
    font-size: 0.92rem;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cta-whatsapp-note i {
    color: var(--primary-strong);
}

/* FOOTER */

.gs-footer {
    border-top: 1px solid rgba(30, 64, 175, 0.6);
    background: radial-gradient(circle at top, #020617, #00010a);
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3.2rem;
    padding: 2.6rem 1.5rem 2.2rem;
}

.footer-brand p {
    margin: 0.7rem 0 0;
    color: var(--text-soft);
    max-width: 260px;
}

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

.footer-columns h4 {
    margin: 0 0 0.7rem;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-soft);
}

.footer-columns a,
.footer-columns p {
    display: block;
    margin: 0.15rem 0;
    color: var(--text-soft);
}

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

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 1);
    padding: 0.7rem 0;
    background: #020617;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* UTILIDADES */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 380ms ease-out, transform 380ms ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.8rem;
    }

    .hero-visual {
        order: 2;
        min-height: 260px;
    }

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

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

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

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

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

    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .gs-header-inner {
        padding-inline: 1.1rem;
    }

    .gs-header--pill .gs-header-pill {
        width: calc(100% - 1.6rem);
        margin: 0 0.8rem;
        padding: 0.5rem 0.8rem 0.5rem 0.9rem;
    }

    /* Barra fixa no topo também no mobile quando rolar */
    .gs-header.is-scrolled .gs-header-pill {
        width: 100%;
        margin: 0;
        padding: 0.5rem 1rem 0.5rem 0.9rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .gs-nav {
        position: fixed;
        inset: 4.2rem 0.8rem auto 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1rem 1rem;
        border-radius: 18px;
        background: rgba(3, 7, 18, 0.98);
        border: 1px solid rgba(148, 163, 255, 0.4);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 1);
        transform-origin: top;
        transform: scaleY(0.8);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .hero-orbit--right{
        bottom: -80px;
        right: -80px;
        width: 350px;
        height: 350px;
        background:
            radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.9), transparent 60%),
            radial-gradient(circle at 20% 70%, rgba(56, 189, 248, 0.7), transparent 70%);
    }

    .hero-orbit--left{
        left: -80px;
        top: -80px;
        width: 350px;
        height: 350px;
        background:
            radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.8), transparent 60%),
            radial-gradient(circle at 60% 80%, rgba(14, 165, 233, 0.7), transparent 70%);
    }

    .hero-content{
        padding-top: 2.5rem;
    }

    .gs-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .gs-nav a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn-small {
        display: none;
    }

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

    /* Container e seções – mais respiro no mobile */
    .gs-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gs-container-hero {
        min-height: auto !important;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 1.8rem;
    }

    .section-header.text-center .section-label,
    .section-header.text-center h2,
    .section-header.text-center .section-text {
        text-align: center;
    }

    .section-text.narrow {
        max-width: 100%;
    }

    /* Hero mobile */
    .hero {
        padding: 3.8rem 0 2.5rem;
    }

    .hero-tag {
        font-size: 0.78rem;
        padding: 0.25rem 0.7rem;
        margin-bottom: 0.9rem;
    }

    .hero-title {
        margin-bottom: 1rem;
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
    }

    .hero-metrics {
        gap: 1.25rem;
        font-size: 0.82rem;
        justify-content: space-between;
    }

    .hero-metrics div {
        min-width: 0;
        flex: 1;
        text-align: center;
    }

    .metric-number {
        font-size: 1.1rem;
    }

    .hero-visual {
        min-height: 220px;
        margin-bottom: 0.5rem;
    }

    .hero-visual-card--primary {
        width: min(340px, 92%);
        padding: 1rem 1.2rem 1.1rem;
    }

    .hero-visual-kpi .kpi-number {
        font-size: 1.75rem;
    }

    .hero-visual-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    /* Sobre – uma coluna, about-grid empilhado */

    .section-split h2 {
        font-size: clamp(1.5rem, 5vw, 1.85rem);
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .info-card {
        padding: 1rem 1.1rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .stacked-badges {
        margin-top: 1rem;
        font-size: 0.8rem;
    }

    .stacked-badges span {
        padding: 0.25rem 0.6rem;
    }

    /* Serviços – uma coluna, cards mais compactos */
    .service-grid-modern {
        gap: 1rem !important;
    }

    .service-grid-modern .col-sm-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .service-card {
        padding: 1.1rem 1.2rem 1.25rem;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card ul {
        margin-top: 0.25rem;
    }

    /* Cases – uma coluna, preview e texto alinhados */
    .cases-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .case-card .case-badge,
    .case-card h3,
    .case-card p,
    .case-card .case-list {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .case-card .case-badge {
        padding-top: 0.9rem;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .case-card h3 {
        font-size: 1.05rem;
    }

    .case-card p,
    .case-card .case-list {
        font-size: 0.9rem;
    }

    .case-preview {
        min-height: 160px;
    }

    .section#cases .text-center {
        margin-top: 2rem;
    }

    .section#cases .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* CTA WhatsApp – destaque no mobile, seção mais alta para rolagem confortável */
    .section-cta {
        padding: 4rem 1rem 5.5rem;
        min-height: 65vh;
        background:
            radial-gradient(ellipse 100% 80% at 50% 50%, rgba(37, 99, 235, 0.35), transparent 55%),
            radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.28), transparent 50%),
            linear-gradient(180deg, #040a1a 0%, #020617 50%, #010410 100%);
        border-top: 1px solid rgba(56, 189, 248, 0.45);
        border-bottom: 1px solid rgba(56, 189, 248, 0.35);
    }

    .cta-whatsapp-block {
        width: 100%;
        padding: 2.5rem 1.5rem 2.75rem;
        margin: 0 auto;
        background: rgba(15, 23, 42, 0.75);
        border: 1px solid rgba(56, 189, 248, 0.5);
        border-radius: 24px;
        box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.15), 0 24px 48px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(16px);
    }

    .cta-badge {
        background: rgba(56, 189, 248, 0.2);
        border-color: rgba(56, 189, 248, 0.9);
        color: #7dd3fc;
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
        margin-bottom: 1.5rem;
    }

    .cta-whatsapp-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.35rem;
        line-height: 1.25;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #7dd3fc 70%, #38bdf8 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .cta-whatsapp-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: #c7ddff;
        line-height: 1.75;
        padding: 0 0.25rem;
    }

    .btn-cta-whatsapp {
        width: 100%;
        padding: 1.15rem 1.5rem;
        font-size: 1.05rem;
        box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5), 0 16px 40px rgba(37, 99, 235, 0.5);
    }

    .cta-whatsapp-note {
        font-size: 0.9rem;
        margin-top: 1.75rem;
        flex-wrap: wrap;
        justify-content: center;
        color: #b8d4ff;
    }

    .cta-whatsapp-note i {
        color: #7dd3fc;
    }

    /* FAQ */
    .section-faq-full .section-header {
        margin-bottom: 1.5rem;
    }

    .faq-item {
        padding: 0.75rem 1rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding-right: 1.5rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Footer */
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem 1.5rem;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-columns {
        text-align: center;
        gap: 1.5rem;
    }

    .footer-columns h4 {
        margin-bottom: 0.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Mobile pequeno – telas até ~480px */
@media (max-width: 480px) {
    .hero {
        padding: 3.2rem 0 2rem;
    }

    .hero-visual {
        min-height: 200px;
    }

    /* Opcional: esconder o card visual no hero em telas muito pequenas para priorizar CTA */
    .hero-visual-inner {
        transform: scale(0.92);
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .hero-metrics div {
        flex: 0 0 auto;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-split h2,
    .section-header h2 {
        font-size: 1.45rem;
    }

    .cta-whatsapp-title {
        font-size: 1.4rem;
    }

    .gs-header--pill .gs-header-pill {
        padding: 0.45rem 0.65rem 0.45rem 0.75rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }
}

