/* ==========================================================
   R.R CONSTRUÇÕES - CSS (LOOPS INFINITOS E LIGHTBOX SPLIT)
   ========================================================== */
:root {
    --c-bg: transparent;
    --c-bg-alt: transparent;
    --c-surface: transparent;
    --c-surface-2: transparent;
    --c-surface-3: transparent;
    --c-ink: #0f172a;
    --c-ink-2: #1e293b;
    --c-ink-3: #334155;
    --c-muted: #64748b;
    --c-muted-2: #475569;
    --c-line: rgba(15, 23, 42, 0.1);
    --c-line-strong: rgba(15, 23, 42, 0.2);
    --c-blue: #3b82f6;
    --c-blue-2: #2563eb;
    --c-blue-3: #60a5fa;
    --c-blue-4: #93c5fd;
    --c-blue-deep: #05080f;
    --c-blue-mid: #0f1f3d;
    --c-blue-soft: #1e3a8a;
    --c-cyan: #22d3ee;
    --c-accent: var(--c-blue);
    --c-accent-2: var(--c-blue-3);
    --c-red: #ef4444;
    --c-green: #10b981;
    --c-whats: #25d366;
    --c-primary: #f1f5f9;
    --c-primary-fg: #0a0e1a;
    --c-primary-2: #3b82f6;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 14px 32px -12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 32px 64px -24px rgba(0, 0, 0, 0.7);
    --shadow-blue: 0 18px 40px -16px rgba(59, 130, 246, 0.55);
    --container: 1200px;
    --container-narrow: 820px;
    --gutter: clamp(16px, 4vw, 32px);
    --t-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-med: 320ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-spring: 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --header-h: 76px;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 6px);
    -webkit-text-size-adjust: 100%;
    background: #ffffff;
}

body {
    min-height: 100dvh;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--c-ink);
    background: transparent !important;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.hero__title,
.section__title {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.025em;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

:focus {
    outline: none;
}

:focus-visible {

    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: start;
}

/* Botões */
.btn {
    --bg: var(--c-primary);
    --fg: var(--c-primary-fg);
    --bd: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font: 600 0.95rem/1 'Inter', sans-serif;
    border: 1.5px solid var(--bd);
    cursor: pointer;
    background: var(--bg);
    color: var(--fg);
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn--primary {
    --bg: var(--c-blue);
    --fg: #ffffff;
    background: var(--c-blue) !important;
    color: #ffffff !important;
    border-color: var(--c-blue);
    box-shadow: 0 4px 18px -4px rgba(59, 130, 246, 0.4);
    font-weight: 700;
}

.btn--primary:hover {
    background: var(--c-blue-2) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 28px -6px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn--ghost {
    --bg: transparent;
    --fg: var(--c-ink);
    --bd: rgba(15, 23, 42, 0.25);
}

.btn--ghost:hover {
    --bg: rgba(15, 23, 42, 0.06);
    --fg: var(--c-ink);
    --bd: rgba(15, 23, 42, 0.5);
}

.btn--whats {
    --bg: var(--c-whats);
    --fg: #fff;
}

/* Botão Laranja Meio Amarelado (Ver Todos os Projetos) */
.btn--portfolio-action,
#openAllPortfolio {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(254, 215, 170, 0.4) !important;
    box-shadow: 0 4px 18px -2px rgba(234, 88, 12, 0.38) !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 999px;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#openAllPortfolio {
    margin: 8px auto 0;
}

.btn__icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: transform var(--t-fast);
}

.btn--portfolio-action:hover .btn__icon-img,
#openAllPortfolio:hover .btn__icon-img {
    transform: scale(1.15) rotate(-5deg);
}

.btn--portfolio-action:hover,
#openAllPortfolio:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px -2px rgba(234, 88, 12, 0.52) !important;
    border-color: #fef08a !important;
}

.btn--lg {
    padding: 16px 28px;
    font-size: 1.02rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 8, 15, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-line);
    transition: background var(--t-med), box-shadow var(--t-med);
}

.header.is-scrolled {
    background: rgba(5, 8, 15, 0.98);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand__logo {
    height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: transform var(--t-fast);
    margin-left: 85px;
}

.brand:hover .brand__logo {
    transform: scale(1.03);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav a {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    color: #ffffff;
    transition: all var(--t-fast);
}

.nav a:hover,
.nav a.is-active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--c-blue-3);
}

.nav__cta {
    margin-left: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: 12px;
    z-index: 60;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--t-fast);
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(570px, 88vh, 880px);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
    position: relative;
    z-index: 5;
    flex: 1;
}

.hero__title {
    font-size: clamp(2rem, 5.4vw, 3.8rem);
    line-height: 1.04;
    font-weight: 800;
    margin: 14px 0 18px;
    color: var(--c-ink);
}

.grad {
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-3) 40%, var(--c-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__lead {
    color: var(--c-ink-2);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    max-width: 56ch;
    margin: 0 0 16px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 36px;
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.hero-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-carousel__track {
    display: flex;
    width: 100%;
    max-width: 380px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: var(--radius-lg);
}

.hero-carousel__track::-webkit-scrollbar {
    display: none;
}

.hero-carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
}

.hero-carousel__dots {
    display: flex;
    gap: 8px;
}

.hero-carousel__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--c-line-strong);
    cursor: pointer;
    padding: 0;
    transition: background var(--t-fast), transform var(--t-fast);
}

.hero-carousel__dot.is-active {
    background: var(--c-blue);
    transform: scale(1.25);
}

.hero-info-card {
    background: rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.hero-info-card__img {
    width: 100%;
    height: 275px;
    overflow: hidden;
}

.hero-info-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-info-card__desc {
    padding: 20px 22px 24px;
    color: var(--c-ink-2);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.hero-services-card {
    background: rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    width: 100%;
    max-width: 380px;
    text-decoration: none;
    color: inherit;
}

.hero-services-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-blue);
}

.hero-services-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-blue), var(--c-blue-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-services-card__content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-services-card__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.hero-services-card__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--c-ink-2);
    font-weight: 500;
}

.hero-services-card__content li i {
    color: var(--c-blue-3);
    font-size: 1.1rem;
}

.hero-services-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 700;
    color: var(--c-blue);
    font-size: 0.95rem;
    transition: gap var(--t-fast);
}

.hero-services-card:hover .hero-services-card__cta {
    gap: 14px;
}

.hero__strip {
    margin-top: auto;
    padding: 14px 0;
    background: var(--c-blue-deep);
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 5;
    user-select: none;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 500;
    flex-shrink: 0;
}

.marquee-group span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: var(--radius);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #000000;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.eyebrow__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    text-align: center;
}

.eyebrow__sub,
.hero__region {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    text-align: center;
}

.eyebrow__sub i,
.hero__region i {
    font-size: 0.72rem;
    color: #dc2626;
    flex-shrink: 0;
}

.eyebrow__highlight {
    color: #dc2626;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2.5px;
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 50%;
    background: #50C964;
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Sections */
.section {
    padding: clamp(32px, 4vw, 48px) 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.section--alt {
    background: transparent;
}

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.modal__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-blue-3);
    margin-bottom: 10px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
}

.modal__head {
    margin-bottom: 20px;
}

.modal__head h2 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.section__title {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    line-height: 1.12;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--c-ink);
}

/* Seção Sobre Nós - Design Refinado */
.section--sobre {
    position: relative;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(241, 245, 249, 0.8) 100%);
    overflow: hidden;
}

.section--sobre::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.sobre__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sobre__lead {
    color: var(--c-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 8px;
    font-weight: 450;
}

.badges-wrapper {
    margin-top: 12px;
}

.badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.badge {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    transition: all var(--t-fast);
    overflow: hidden;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.4);
}

.badge__num {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.85rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--c-blue-3) 0%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.badge__txt {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-muted);
    line-height: 1.35;
}

.differentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.diff {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 16px;
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 18px -3px rgba(15, 23, 42, 0.04);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.diff::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.3s ease;
}

.diff:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -5px rgba(15, 23, 42, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
}

.diff:hover::after {
    background: linear-gradient(90deg, var(--c-blue), var(--c-blue-2));
}

/* Animação gradual para cada card individual */
.differentials .diff:nth-child(1) {
    transition-delay: 0.05s;
}

.differentials .diff:nth-child(2) {
    transition-delay: 0.15s;
}

.differentials .diff:nth-child(3) {
    transition-delay: 0.25s;
}

.differentials .diff:nth-child(4) {
    transition-delay: 0.35s;
}

/* Card Compacto - Garantia de Serviço */
.diff--compact {
    padding: 14px 16px;
}

.diff--compact .diff__header {
    margin-bottom: 8px;
}

.diff--compact .diff__icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    border-radius: 10px;
}

.diff--compact h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.diff--compact p {
    font-size: 0.82rem;
    line-height: 1.42;
}

/* Card Destacado (Proximidade e Escuta Ativa) */
.diff--featured {
    background: linear-gradient(165deg, #ffffff 0%, rgba(240, 249, 255, 0.7) 100%);
    border: 1.5px solid rgba(14, 165, 233, 0.35);
    box-shadow: 0 6px 20px -3px rgba(14, 165, 233, 0.09);
}

.diff--featured::after {
    background: linear-gradient(90deg, var(--c-blue-3), var(--c-blue));
}

.diff__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.diff__tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-blue);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 3px 8px;
    border-radius: 999px;
}

.diff__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-blue-3) 0%, var(--c-blue) 100%);
    color: #fff;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px -2px rgba(14, 165, 233, 0.24);
    transition: transform var(--t-fast);
}

.diff:hover .diff__icon {
    transform: scale(1.06) rotate(3deg);
}

.diff h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.diff p {
    color: var(--c-muted);
    font-size: 0.86rem;
    line-height: 1.48;
    margin: 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: all var(--t-spring);
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-blue);
}

.service__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--c-blue-3);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.service h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--c-ink);
    letter-spacing: -0.02em;
}

.service p {
    color: var(--c-ink);
    font-size: 0.9rem;
    line-height: 1.55;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-muted);
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid var(--c-line);
    cursor: pointer;
    transition: all var(--t-fast);
}

.filter-btn:hover {
    color: #fff;
    border-color: var(--c-blue);
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.filter-btn.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--c-blue), var(--c-blue-2));
    border-color: transparent;
}

.portfolio-item.is-hidden {
    display: none !important;
}

.gallery-wrapper {
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -20px;
}

.gallery {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-gallery 160s linear infinite;
}

.gallery:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}

.gallery__item {
    position: relative;
    flex: 0 0 auto;
    width: 340px;
    height: 500px;
    max-height: min(500px, 85vh);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-blue-deep);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__item img,
.gallery__item video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.gallery__item:hover img,
.gallery__item:hover video {
    transform: scale(1.05);
}

.gallery__item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(5, 8, 15, 0.92));
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.gallery__item figcaption strong {
    font-family: 'Outfit';
    font-size: 1.1rem;
    display: block;
}

.gallery__item figcaption small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gallery__item:hover .play-icon {
    opacity: 0;
}

.section--cta {
    background: radial-gradient(800px 500px at 80% 0%, rgba(59, 130, 246, 0.2), transparent 60%), rgba(5, 8, 15, 0.5);
    color: #fff;
}

.cta__content {
    max-width: 720px;
}

.cta__content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 12px 0 24px;
}

.eyebrow--light {
    color: var(--c-blue-3) !important;
    background: rgba(59, 130, 246, 0.12) !important;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.footer {
    background: var(--c-blue-deep);
    color: #cbd5e1;
    padding: 56px 0 0px;
    z-index: 1;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px 24px;
    align-items: start;
}

.footer__col--brand,
.footer__col--info,
.footer__col--links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col--info h4,
.footer__col--links h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.footer__col--info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

.footer__col--info i {
    color: var(--c-blue-3);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer__col--links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__col--links a:hover {
    color: var(--c-blue-3);
}

.footer__brand {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer__logo {
    height: 150px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.footer__line {
    font-family: 'Archivo Black';
    font-style: italic;
    color: var(--c-blue-3);
    font-size: 0.88rem;
    line-height: 1.4;
}

.footer__legal {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.8rem;
    color: #475569;
    text-align: center;
}

/* Botões Flutuantes */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-whats);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 40;
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
}

.wa-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--c-whats);
    z-index: -1;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}





/* Modais */
.modal {
    padding: 0;
    border: 0;
    background: transparent;
    max-width: 100%;
    width: 100%;
    margin: auto;
    inset: 0;
    position: fixed;
    display: none;
}

.modal[open] {
    display: grid;
    place-items: center;
    padding: 16px;
}

.modal::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal__panel {
    background: rgba(13, 20, 36, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: clamp(20px, 5vw, 40px);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    color: #fff;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal__panel::-webkit-scrollbar {
    display: none;
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.1);
    display: grid;
    place-items: center;
    transition: all var(--t-fast);
    z-index: 10;
}

.modal__close:hover {
    background: var(--c-blue);
    color: #fff;
    transform: rotate(90deg);
}

.lightbox-close-fix {
    top: -15px;
    right: -15px;
    background: var(--c-blue);
    color: #fff;
}

.modal__panel--full {
    max-width: 1100px;
    width: 95vw;
    max-height: 90vh;
    padding: clamp(20px, 5vw, 36px) clamp(16px, 4vw, 28px);
    display: flex;
    flex-direction: column;
}

.all-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
    overflow-y: auto;
    max-height: 70vh;
    padding: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.all-portfolio-grid::-webkit-scrollbar {
    display: none;
}

.all-portfolio-card {
    position: relative;
    height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-blue-deep);
    border: 1px solid var(--c-line);
    cursor: pointer;
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.all-portfolio-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-blue);
    box-shadow: var(--shadow-md);
}

.all-portfolio-card img,
.all-portfolio-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.all-portfolio-card:hover img,
.all-portfolio-card:hover video {
    transform: scale(1.05);
}

.all-portfolio-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(5, 8, 15, 0.94));
    color: #fff;
    pointer-events: none;
}

.all-portfolio-card figcaption strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    display: block;
}

.all-portfolio-card figcaption small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.lightbox-split {
    display: flex;
    background: rgba(13, 20, 36, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 95vw;
    max-height: 90vh;
    box-shadow: var(--shadow-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lightbox-split::-webkit-scrollbar {
    display: none;
}

.lightbox-media {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050811;
    padding: 20px;
    max-width: 65vw;
    max-height: 85vh;
    overflow: hidden;
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.lightbox-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-cat {
    display: inline-block;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-blue-3);
    margin-bottom: 16px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 999px;
}

.lightbox-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.2;
    margin: 0 0 16px;
    color: #fff;
}

.lightbox-desc {
    font-size: 1rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* Formulário */
.form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
}

.field span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.4);
    color: #ffffff;
    font-family: inherit;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.field select option {
    color: #0a0e1a;
    background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.field--file__drop {
    border: 2px dashed rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(15, 23, 42, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.field--file__drop:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    backdrop-filter: blur(11px);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--c-blue);
    z-index: 1000;
}

#toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-blue-deep);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9999;
    border: 1px solid var(--c-line);
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.bg-carousel {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.bg-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.bg-track img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    filter: saturate(1.05) contrast(1.02) brightness(1);
}

.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.94) 85%);
}

/* ==========================================================
   RESPONSIVIDADE COMPLETA E POLIDA (TABLETS E CELULARES)
   ========================================================== */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item {
        flex: 0 0 auto;
        width: auto;
        height: min(580px, 70vh);
    }
}

@media (max-width: 860px) {
    :root {
        --header-h: 80px;
    }

    .header__inner {
        padding-inline: 12px;
        position: relative;
    }

    /* Logo no mobile: maior e perfeitamente centralizada */
    .brand {
        margin: 0 auto;
        justify-content: center;
        flex: 1;
    }

    .brand__logo {
        margin-left: 0 !important;
        height: 52px;
        max-width: 170px;
    }

    /* Posiciona o botão hamburger à direita sem empurrar a logo */
    .header__actions {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Esconde o botão grande no menu mobile para usar o flutuante */
    .nav__cta {
        display: none !important;
    }

    /* Menu Mobile Full-Screen Refeito */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: rgba(5, 8, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
        z-index: 90;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav a {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
    }

    .hamburger {
        display: block;
        z-index: 100;
        position: relative;
    }

    /* Botão Flutuante de Orçamento e WhatsApp adaptados */
    .budget-float {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 82px;
        bottom: 16px;
        height: 52px;
        padding: 0 18px;
        border-radius: 999px;
        background: #ffffff;
        color: #0a0e1a;
        z-index: 40;
        box-shadow: 0 6px 20px -3px rgba(0, 0, 0, 0.45);
        font-size: 0.85rem;
        font-weight: 800;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        transition: transform var(--t-fast), box-shadow var(--t-fast);
    }

    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .wa-float i {
        font-size: 24px !important;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding-inline: 20px;
        padding-top: 24px;
        padding-bottom: 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero__title {
        font-size: clamp(1.8rem, 6vw, 2.35rem);
        margin-bottom: 14px;
    }

    .hero__lead {
        font-size: 0.95rem;
        max-width: 44ch;
        margin-bottom: 12px;
    }

    .hero__cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 250px;
        margin: 16px auto 0;
    }

    .hero__cta .btn {
        width: 100%;
        padding: 11px 18px;
        font-size: 0.9rem;
    }

    .hero-carousel {
        width: 100%;
        max-width: 100%;
    }

    .hero-carousel__track {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-carousel__dots {
        margin-bottom: 16px;
    }

    .hero-info-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-info-card__img {
        height: 190px;
    }

    .hero-info-card__desc {
        padding: 14px 16px;
        font-size: 0.88rem;
    }

    .hero-services-card {
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
        gap: 14px;
    }

    .hero-services-card__icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 10px;
    }

    .hero-services-card__content h3 {
        font-size: 1.05rem;
        margin: 0 0 10px;
    }

    .hero-services-card__content ul {
        gap: 8px;
    }

    .hero-services-card__content li {
        font-size: 0.86rem;
    }

    .hero-services-card__cta {
        font-size: 0.86rem;
        margin-top: 8px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta__buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-top: 24px;
    }

    .cta__buttons .btn {
        width: 100%;
    }

    /* Lightbox ocupa tela cheia em mobile */
    .modal[open] {
        padding: 0;
    }

    .lightbox-split {
        flex-direction: column;
        max-height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: 0;
    }

    .lightbox-media {
        height: auto;
        width: 100%;
        max-width: 100%;
        max-height: 50vh;
        padding: 12px;
    }

    .lightbox-media img,
    .lightbox-media video {
        max-width: 100%;
        max-height: 45vh;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .lightbox-info {
        padding: 24px 20px;
        max-width: 100%;
    }

    .modal__panel {
        max-height: 100dvh;
        height: 100dvh;
        border-radius: 0;
        border: 0;
        padding: 28px 20px;
    }

    .modal__panel--full {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        border: 0;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
    }

    .footer__logo {
        height: 76px;
        max-width: 190px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 84px;
    }

    .hero__inner {
        padding-inline: 14px;
        padding-top: 12px;
        padding-bottom: 20px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        padding-inline: 4px;
        box-sizing: border-box;
    }

    .eyebrow {
        width: 100%;
        max-width: 100%;
        padding: 8px 10px;
    }

    .eyebrow__main,
    .eyebrow__sub {
        font-size: 0.72rem;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .hero__title {
        font-size: clamp(1.45rem, 5.2vw, 1.85rem);
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.15;
        word-break: break-word;
    }

    .hero__lead {
        font-size: 0.86rem;
        line-height: 1.45;
        max-width: 100%;
        padding-inline: 6px;
    }

    .hero__cta {
        width: 100%;
        max-width: 260px;
        margin: 14px auto 0;
        gap: 10px;
    }

    .hero__cta .btn {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.9rem;
    }

    .hero-carousel {
        width: 100%;
        max-width: 100%;
    }

    .hero-carousel__track {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-info-card,
    .hero-services-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-info-card__img {
        height: 160px;
    }

    .hero-info-card__desc {
        padding: 12px 14px;
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .hero-services-card {
        padding: 14px;
        gap: 10px;
    }

    .hero-carousel__dots {
        margin-bottom: 14px;
    }

    .section {
        padding: 40px 0;
    }

    .brand__logo {
        height: 48px;
        max-width: 155px;
    }

    .badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .differentials {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .diff {
        padding: 18px 16px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__cta {
        width: 100%;
        max-width: 260px;
        flex-direction: column;
        align-items: center;
        margin: 20px auto 0;
        gap: 12px;
    }

    .hero__cta .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .cta__buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .cta__buttons .btn {
        width: 100%;
    }

    .gallery__item {
        flex: 0 0 auto;
        width: auto;
        height: min(420px, 58vh);
    }

    .gallery-wrapper {
        margin: 0 -16px;
    }

    .portfolio-filter {
        gap: 8px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.86rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer__brand {
        justify-content: center;
        margin-bottom: 14px;
    }

    .footer__logo {
        height: 68px;
        max-width: 175px;
    }

    .footer__col--info p,
    .footer__col--links a {
        justify-content: center;
    }

    .budget-float {
        padding: 0 16px;
        font-size: 0.82rem;
        height: 50px;
        right: 76px;
        bottom: 14px;
    }

    .wa-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }
}