/* TOKENS E VARIÁVEIS INICIAIS */
:root {
    /* Cores */
    --color-bg: #0B0D0D;
    --color-surface: #111414;
    --color-white: #F5F5F5;
    --color-text: #F5F5F5;
    --color-text-muted: #B9BEC0;
    --color-orange: #FF650F;
    --color-border: rgba(255, 255, 255, 0.12);
    
    /* Tipografia */
    --font-primary: 'Manrope', sans-serif;
    
    /* Espaçamento e Layout */
    --container-max: 1280px;
    
    /* Transições */
    --transition-fast: 200ms ease;
}

/* RESET BÁSICO */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* UTILITÁRIOS */
.container {
    max-width: var(--container-max);
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 48px;
    padding: 0 24px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 48px;
    transition: all var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: #e55a0d;
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-white);
    border: 1px solid var(--color-border);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-orange);
}
.btn-outline:hover {
    background-color: rgba(255,101,15,0.1);
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(11, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    width: clamp(140px, 14vw, 180px);
    height: auto;
    object-fit: contain;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    color: var(--color-white);
    padding: 8px;
}

/* Navegação Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-white);
}

.desktop-only { display: block; }
.mobile-only { display: none; }

/* ================= HERO ================= */
.hero {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
    padding-top: 24px; /* Slight offset for balance */
}

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-orange);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 4.8vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: var(--color-white);
}

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

.hero-title .highlight {
    color: var(--color-orange);
}

@media (min-width: 1025px) {
    .hero-title .highlight {
        white-space: nowrap;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Soft border blending mask */
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, black 92%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, black 92%, transparent 100%);
    -webkit-mask-composite: source-in;
}

.hero-signature {
    position: absolute;
    top: 40px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.signature-img {
    display: block;
    width: clamp(145px, 14vw, 160px);
    height: auto;
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
    margin-bottom: 10px;
}

.signature-caption {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.16em;
    color: #C5C7C9;
    text-align: left;
}

.signature-caption .cap-line {
    display: block;
}

/* ================= SOBRE (Apresentação) ================= */
.sobre {
    position: relative;
    z-index: 2;
    --sobreposicao: 120px;
    margin-top: calc(-1 * var(--sobreposicao));
    padding-bottom: 80px; 
}

.sobre-card {
    display: grid;
    grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.43fr) auto minmax(0, 0.29fr);
    background-color: #101313;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

/* Esquerda: Foto */
.sobre-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.sobre-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.15);
    transform-origin: top center;
    mask-image: linear-gradient(to left, transparent 0%, black 25%), linear-gradient(to top, transparent 0%, black 15%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%), linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-composite: source-in;
}

/* Centro: Conteúdo */
.sobre-content {
    padding: 32px 32px 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sobre-title {
    font-size: clamp(30px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 12px;
    color: var(--color-white);
}

.sobre-title .highlight {
    color: var(--color-orange);
}

.sobre-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 95%;
}

.signature-img-sm {
    width: clamp(140px, 15vw, 190px);
    margin-bottom: 0;
    margin-top: 8px;
    align-self: center;
}

/* Divisor */
.sobre-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin: 48px 0;
}

/* Direita: Benefícios */
.sobre-benefits {
    padding: 32px 40px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.benefits-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: center;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.2;
}

.benefit-text {
    font-size: 15.5px;
    line-height: 1.35;
    color: var(--color-text-muted);
}


/* ================= SERVIÇOS ================= */
.servicos {
    padding-top: 56px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

.section-header {
    margin-bottom: 24px;
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.line-deco {
    width: 24px;
    height: 1px;
    background-color: var(--color-orange);
}

.eyebrow-text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-orange);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-orange);
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 16px;
    min-height: 440px;
    position: relative;
}

.grid-glow {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 45%, rgba(255, 255, 255, 0.025) 100%);
    background-color: rgba(12, 16, 15, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.service-card:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card:hover .card-arrow svg {
    transform: translateX(3px);
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-orange);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.card-arrow svg {
    transition: transform 0.2s ease;
}

.service-card:hover .card-arrow {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Card Principal */
.main-card {
    grid-column: span 1;
    grid-row: span 2;
}

.mc-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 67%; /* Extended to fade into title */
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.mockup-window {
    position: absolute;
    width: 90%;
    background-color: rgba(15, 17, 18, 0.85);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.mw-back {
    top: 32px;
    height: 250px;
    transform: scale(0.92);
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mw-front {
    top: 46px;
    height: 280px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mw-header {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.mw-dots {
    display: flex;
    gap: 6px;
}

.mw-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mw-dots span:first-child { background-color: #ff5f56; }
.mw-dots span:nth-child(2) { background-color: #ffbd2e; }
.mw-dots span:nth-child(3) { background-color: #27c93f; }

.mw-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mw-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-icon {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background-color: var(--color-orange);
}

.brand-text {
    width: 32px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 14px;
}

.nav-links span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.nav-cta {
    font-size: 9px;
    padding: 6px 10px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 12px;
    font-weight: 600;
}

.mw-hero {
    display: flex;
    gap: 20px;
    height: 100px;
}

.mw-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.mw-line {
    height: 6px;
    border-radius: 3px;
}
.mw-line-1 { width: 85%; background-color: rgba(255, 255, 255, 0.35); }
.mw-line-2 { width: 70%; background-color: rgba(255, 255, 255, 0.2); }
.mw-line-3 { width: 50%; background-color: rgba(255, 255, 255, 0.1); }

.mw-img-col {
    flex: 1.2;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.mc-bottom {
    padding: 310px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    height: 100%;
}

.mc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mc-icon {
    color: var(--color-orange);
    flex-shrink: 0;
}

.mc-icon svg {
    width: 56px;
    height: 56px;
}

.mc-header h3 {
    font-size: clamp(23px, 2vw, 26px);
    font-weight: 600;
    color: var(--color-white);
}

.mc-body p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 370px;
}

.main-card .card-arrow {
    margin-top: auto;
    align-self: flex-end;
}

/* Cards Menores */
.small-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-content {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.sc-icon {
    color: var(--color-orange);
    flex-shrink: 0;
}

.sc-icon svg {
    width: 48px;
    height: 48px;
}

.sc-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    margin-top: 4px;
}

.sc-text p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.sc-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

/* ================= PROCESSO ================= */
.processo {
    padding-top: 80px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

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

.process-step {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    align-items: flex-start;
}

/* Vertical divider except on the last one */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.step-icon {
    color: var(--color-orange);
    flex-shrink: 0;
}

.step-icon svg {
    width: 52px;
    height: 52px;
    stroke-width: 2.5px;
}

.step-content {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.step-num {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* ================= FAQ ================= */
.faq {
    padding-top: 80px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: flex-start;
}

.faq-right {
    margin-top: 8px; /* Optically aligns the top border with the eyebrow dash */
}

.faq-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* First item needs a top border to match design */
.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.2s ease;
}

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

.faq-item summary:hover {
    color: var(--color-orange);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--color-orange);
}

.faq-answer {
    padding-bottom: 24px;
    padding-right: 32px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ================= CONTATO ================= */
.contato {
    padding-top: 80px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

.contato-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 45%, rgba(255, 255, 255, 0.025) 100%);
    background-color: rgba(12, 16, 15, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.contato-preheading {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contato-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--color-white);
}

.btn-contato {
    flex-shrink: 0;
}

/* ================= RODAPÉ ================= */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-slogan {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links, .footer-legal {
    display: flex;
    gap: 24px;
}

.footer-links a, .footer-legal a {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-orange);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .sobre {
        --sobreposicao: 80px;
    }
    
    .container {
        width: calc(100% - 64px);
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .hero-title {
        font-size: clamp(40px, 4.5vw, 56px);
    }
    
    .hero-signature {
        top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-card {
        grid-column: span 2;
        grid-row: span 1;
    }

    .mc-illustration {
        min-height: 180px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .process-step:nth-child(2)::after,
    .process-step:last-child::after {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .sobre {
        --sobreposicao: 40px;
    }
    
    .sobre-card {
        grid-template-columns: 1fr;
    }
    
    .sobre-media {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        min-height: auto;
        max-height: none;
    }
    
    .sobre-img {
        object-fit: contain;
        object-position: center top;
        transform: scale(1);
        mask-image: linear-gradient(to top, transparent 0%, black 20%);
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
    }
    
    .sobre-divider {
        width: calc(100% - 64px);
        height: 1px;
        margin: 0 auto;
    }
    
    .sobre-content {
        padding: 0 32px 24px;
        margin-top: -16px;
        position: relative;
        z-index: 2;
    }

    .sobre-benefits {
        padding: 24px 32px 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .main-card {
        grid-column: span 1;
    }

    .mc-bottom {
        padding: 260px 24px 24px 24px;
    }

    .small-card {
        padding: 24px;
    }

    .mc-icon svg,
    .sc-icon svg {
        width: 38px;
        height: 38px;
    }

    .mw-front {
        height: 140px;
    }

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

    .process-step::after {
        display: none;
    }

    .contato-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
        gap: 24px;
    }

    .btn-contato {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-right, .footer-links, .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-divider {
        display: none;
    }

    .container {
        width: calc(100% - 48px);
    }

    .header-container {
        height: 72px;
    }

    .desktop-only { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: 32px 24px;
        gap: 32px;
        border-bottom: 1px solid var(--color-border);
        
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        text-align: center;
    }
    
    .mobile-only { 
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .mobile-only .btn {
        width: 100%;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        margin: 0 auto;
        padding-top: 0;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-media {
        justify-content: center;
    }
    
    .hero-signature {
        position: relative;
        top: auto;
        right: auto;
        align-items: center;
        text-align: center;
        margin-top: -20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 40px);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ================= VS SISTEMAS CUSTOM BADGES ================= */
.hero-badge-seal {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.sobre-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: rgba(255, 101, 15, 0.08);
    border: 1px solid rgba(255, 101, 15, 0.25);
    color: var(--color-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 12px;
}

.sobre-badge-tag .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-orange);
    box-shadow: 0 0 8px var(--color-orange);
}

/* ================= LGPD BANNER & MODAL ================= */
.lgpd-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 760px);
    background-color: rgba(17, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.lgpd-banner.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
    pointer-events: none;
}

.lgpd-content p {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.lgpd-content button.link-inline {
    background: none;
    border: none;
    color: var(--color-orange);
    text-decoration: underline;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

.lgpd-btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .lgpd-banner {
        flex-direction: column;
        align-items: stretch;
        bottom: 16px;
        padding: 16px;
        gap: 14px;
    }
    
    .lgpd-btn .btn {
        width: 100%;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.modal-close:hover {
    color: var(--color-white);
    background-color: rgba(255,255,255,0.08);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-body strong {
    color: var(--color-white);
}

.modal-body h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-orange);
    margin-top: 8px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: flex-end;
}

/* ================= PROJETOS / PORTFÓLIO ================= */
.projetos {
    padding-top: 56px;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

.projects-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    height: 38px;
    padding: 0 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    color: var(--color-white);
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

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

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 45%, rgba(255, 255, 255, 0.025) 100%);
    background-color: rgba(12, 16, 15, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.project-card.is-hidden {
    display: none !important;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.project-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #090c0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.04);
}

.project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: rgba(11, 13, 13, 0.88);
    color: var(--color-orange);
    border: 1px solid rgba(255, 101, 15, 0.35);
    backdrop-filter: blur(8px);
}

.project-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.project-tag {
    font-size: 11.5px;
    padding: 3px 9px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-orange);
    transition: color 0.2s ease, gap 0.2s ease;
    text-decoration: none;
}

.project-card:hover .project-cta {
    color: #ff853f;
    gap: 12px;
}

/* INTERAÇÃO DAS TELAS NOS CARDS */
.project-thumb {
    cursor: pointer;
}

.project-title[role="button"] {
    cursor: pointer;
    transition: color 0.2s ease;
}

.project-title[role="button"]:hover {
    color: var(--color-orange);
}

.project-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 13, 0.2) 0%, rgba(11, 13, 13, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.project-thumb:hover .project-thumb-overlay {
    opacity: 1;
}

.thumb-view-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background-color: rgba(255, 101, 15, 0.95);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(255, 101, 15, 0.45);
    transform: translateY(6px);
    transition: transform 0.25s ease, background-color 0.2s ease;
}

.project-thumb:hover .thumb-view-badge {
    transform: translateY(0);
}

.project-screens-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.project-screens-btn:hover {
    background-color: rgba(255, 101, 15, 0.15);
    border-color: rgba(255, 101, 15, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.project-screens-btn svg {
    color: var(--color-orange);
    transition: transform 0.2s ease;
}

.project-screens-btn:hover svg {
    transform: scale(1.1);
}

.project-tech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 31px;
    min-width: 32px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    margin-right: auto;
}

.project-tech-btn:hover {
    background-color: rgba(255, 101, 15, 0.15);
    border-color: rgba(255, 101, 15, 0.4);
    color: var(--color-orange);
    transform: translateY(-1px);
}

.project-tech-btn:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

/* ================= MODAL DA GALERIA DE TELAS (LIGHTBOX) ================= */
.gallery-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gallery-modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #131618 0%, #0d0f11 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 101, 15, 0.15);
    overflow: hidden;
    animation: galleryModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes galleryModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Cabeçalho do Modal */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(18, 22, 24, 0.7);
    backdrop-filter: blur(10px);
}

.gallery-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: rgba(255, 101, 15, 0.14);
    color: var(--color-orange);
    border: 1px solid rgba(255, 101, 15, 0.3);
}

.gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.gallery-counter {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.gallery-close-btn:hover {
    background-color: rgba(255, 101, 15, 0.2);
    border-color: rgba(255, 101, 15, 0.5);
    color: var(--color-orange);
    transform: rotate(90deg);
}

/* Palco / Stage */
.gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #07090a;
    min-height: 360px;
    max-height: 58vh;
    overflow: hidden;
    padding: 16px 20px;
}

.gallery-image-frame {
    width: 100%;
    height: 100%;
    max-height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    max-width: 100%;
    max-height: 54vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.gallery-main-img.is-loading {
    opacity: 0.4;
    transform: scale(0.99);
}

/* Botões de Navegação */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(15, 18, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.gallery-nav-btn:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.gallery-nav-btn.prev {
    left: 20px;
}

.gallery-nav-btn.next {
    right: 20px;
}

.gallery-nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

/* Área de Legenda & Detalhes */
.gallery-caption-box {
    padding: 16px 24px;
    background-color: rgba(17, 20, 22, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-caption-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-screen-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.gallery-privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 600;
    background-color: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.gallery-screen-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Fita de Miniaturas */
.gallery-thumbs-wrapper {
    padding: 12px 24px;
    background-color: #0b0d0e;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 101, 15, 0.3) transparent;
}

.gallery-thumbs-track {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-thumb-item {
    position: relative;
    flex: 0 0 105px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.gallery-thumb-item:hover {
    border-color: rgba(255, 101, 15, 0.6);
}

.gallery-thumb-item:hover img {
    opacity: 0.9;
}

.gallery-thumb-item.active {
    border-color: var(--color-orange);
    box-shadow: 0 0 16px rgba(255, 101, 15, 0.4);
}

.gallery-thumb-item.active img {
    opacity: 1;
}

/* Rodapé do Modal */
.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background-color: rgba(14, 17, 19, 0.98);
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-footer-hint {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.gallery-cta {
    margin-left: auto;
}

/* ================= MODAL DE FICHA TÉCNICA (BOTÃO </>) ================= */
.tech-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
    box-sizing: border-box;
}

.tech-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.tech-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tech-modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #141719 0%, #0d0f11 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 101, 15, 0.15);
    overflow: hidden;
    animation: galleryModalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(18, 22, 24, 0.85);
    gap: 16px;
}

.tech-modal-header-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tech-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    background-color: rgba(255, 101, 15, 0.14);
    color: var(--color-orange);
    border: 1px solid rgba(255, 101, 15, 0.3);
    white-space: nowrap;
}

.tech-modal-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 2px;
}

.tech-modal-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

.tech-modal-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-modal-close-btn:hover {
    background-color: rgba(255, 101, 15, 0.2);
    border-color: rgba(255, 101, 15, 0.5);
    color: var(--color-orange);
}

.tech-modal-close-btn:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

.tech-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 101, 15, 0.3) transparent;
}

.tech-category-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
}

.tech-category-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-orange);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.tech-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 12px;
    transition: border-color 0.2s ease;
}

.tech-item-card:hover {
    border-color: rgba(255, 101, 15, 0.3);
}

.tech-item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.tech-item-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin: 0;
}

.tech-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(14, 17, 19, 0.95);
    gap: 16px;
    flex-wrap: wrap;
}

.tech-modal-note {
    font-size: 12px;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-modal-note svg {
    color: #34d399;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .gallery-modal-overlay,
    .tech-modal-overlay {
        padding: 10px;
    }

    .gallery-modal-container,
    .tech-modal-container {
        max-height: 98vh;
        border-radius: 12px;
    }

    .tech-modal-header {
        padding: 16px;
    }

    .tech-modal-body {
        padding: 16px;
        gap: 14px;
    }

    .tech-items-grid {
        grid-template-columns: 1fr;
    }

    .tech-modal-footer {
        padding: 12px 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .tech-modal-footer .btn {
        width: 100%;
    }

    .gallery-header {
        padding: 12px 16px;
    }

    .gallery-title {
        font-size: 16px;
    }

    .gallery-stage {
        min-height: 240px;
        max-height: 44vh;
        padding: 8px 10px;
    }

    .gallery-image-frame,
    .gallery-main-img {
        max-height: 42vh;
    }

    .gallery-nav-btn {
        width: 38px;
        height: 38px;
    }

    .gallery-nav-btn.prev {
        left: 8px;
    }

    .gallery-nav-btn.next {
        right: 8px;
    }

    .gallery-caption-box {
        padding: 12px 16px;
    }

    .gallery-screen-title {
        font-size: 14.5px;
    }

    .gallery-screen-desc {
        font-size: 12.5px;
    }

    .gallery-thumbs-wrapper {
        padding: 8px 16px;
    }

    .gallery-thumb-item {
        flex: 0 0 80px;
        height: 50px;
    }

    .gallery-footer {
        padding: 10px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .gallery-footer-hint {
        text-align: center;
        font-size: 11.5px;
    }

    .gallery-cta {
        width: 100%;
        margin-left: 0;
    }

    .project-footer {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .project-screens-btn {
        flex: 1;
        justify-content: center;
    }

    .project-tech-btn {
        margin-right: 0;
        width: 40px;
        height: 35px;
    }

    .project-cta {
        width: 100%;
        justify-content: center;
    }
}



