﻿/* ===================================
   DESIGN SYSTEM â€” LIGHT MODE
   Cor primÃ¡ria: Azul Royal sÃ³lido
   =================================== */
:root {
    /* Cor primÃ¡ria sÃ³lida e poderosa */
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;

    /* Fundos claros */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --bg-muted: #e2e8f0;

    /* Texto escuro */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Acentos */
    --accent-green: #22c55e;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;

    /* Tipografia */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* EspaÃ§amentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Containers */
    --container: 1200px;
    --container-sm: 900px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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


ul {
    list-style: none;
}

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

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

/* ===================================
   UTILITIES
   =================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   HEADER â€” Clean, horizontal
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    /* --- OPÇÕES DE FONTE PARA LOGO (Descomente uma para testar) --- */
    
    /* OPÇÃO 1: Tech & Geométrica (Atual - Space Grotesk) */
    /* font-family: 'Space Grotesk', sans-serif; */
    
    /* OPÇÃO 2: Clean & Premium (Recomendada) */
    font-family: 'Outfit', sans-serif;
    
    /* OPÇÃO 3: High-End & Sofisticada (Clash Display) */
    /* font-family: 'Clash Display', sans-serif; */
    
    /* OPÇÃO 4: Startup & Amigável */
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    
    /* OPÇÃO 5: Robusta & Moderna */
    /* font-family: 'Manrope', sans-serif; */
    
    /* OPÇÃO 6: Artística & Criativa */
    /* font-family: 'Syne', sans-serif; */
    
    /* OPÇÃO 7: Futurista & Wide */
    /* font-family: 'Unbounded', sans-serif; */
    
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.header-cta {
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

.header-cta:hover {
    background: var(--primary);
}

.burger {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.burger span {
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    top: 50%;
    transform: translateY(-50%);
}

.burger span::before,
.burger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

.burger span::before {
    top: -8px;
}

.burger span::after {
    bottom: -8px;
}

@media (max-width: 768px) {

    .nav,
    .header-cta {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* ===================================
   HERO â€” AssimÃ©trico, tipografia bold
   =================================== */
.hero {
    padding: 80px 0 var(--space-lg);
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xxl);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-creative-visual {
        order: 1;
        /* Imagem acima */
        margin-bottom: var(--space-md);
    }

    .hero-content-stack {
        order: 2;
        /* Texto abaixo */
        text-align: center;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.15em;
    background: var(--primary);
    opacity: 0.25;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 400px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.2s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-numbers {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.number-item {
    display: flex;
    flex-direction: column;
}

.number-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.number-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-numbers {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
}

/* ===================================
   MARQUEE â€” Clientes, movimento sutil
   =================================== */
.marquee-section {
    padding: var(--space-lg) 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   WORK â€” Grid assimÃ©trico
   =================================== */
.work {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.section-intro {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.work-card {
    background: var(--bg-subtle);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.work-card-large {
    grid-column: span 7;
    min-height: 400px;
}

.work-card:nth-child(2) {
    grid-column: span 5;
}

.work-card:nth-child(3) {
    grid-column: span 5;
}

.work-card-wide {
    grid-column: span 7;
}

.work-card-inner {
    padding: var(--space-lg);
    width: 100%;
}

.work-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.work-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

    .work-card,
    .work-card-large,
    .work-card-wide {
        grid-column: span 1;
        min-height: 240px;
    }
}

/* ===================================
   ABOUT â€” Layout dividido
   =================================== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.about-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.value-icon {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-left {
        position: static;
    }
}

/* ===================================
   SERVICES â€” Linhas horizontais
   =================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.services-list {
    border-top: 1px solid var(--border);
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 2fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, padding 0.2s;
    cursor: pointer;
}

.service-row:hover {
    background: var(--bg-subtle);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
}

.service-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.2s;
}

.service-row:hover .service-arrow {
    transform: translate(4px, -4px);
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .service-num {
        font-size: 0.75rem;
    }

    .service-arrow {
        display: none;
    }
}

/* ===================================
   PROCESS â€” Timeline horizontal
   =================================== */
.process {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
    margin-top: var(--space-xl);
}

.step {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.step-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--space-sm);
    display: block;
}

.step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.step-line {
    flex: 0.5;
    height: 2px;
    background: var(--border-dark);
    margin-top: 24px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: var(--space-md);
    }

    .step {
        text-align: left;
        display: flex;
        align-items: center;
        gap: var(--space-md);
        max-width: 100%;
    }

    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-line {
        display: none;
    }
}

/* ===================================
   FAQ â€” Accordion limpo
   =================================== */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: 'âˆ’';
}

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

.faq-item p {
    padding: 0 0 var(--space-lg);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CTA â€” Bold, cor primÃ¡ria
   =================================== */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-icon {
    width: 24px;
    height: 24px;
}

.btn-cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-extras {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   FOOTER â€” Minimalista
   =================================== */
.footer {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

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

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-contact {
    display: flex;
    gap: var(--space-lg);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-contact a svg {
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ===================================
   WHATSAPP FLUTUANTE
   =================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===================================
   ANIMAÃ‡Ã•ES SUTIS
   =================================== */
@media (prefers-reduced-motion: no-preference) {

    .hero-title,
    .hero-desc,
    .btn-primary,
    .hero-numbers {
        animation: fadeUp 0.6s ease both;
    }

    .hero-desc {
        animation-delay: 0.1s;
    }

    .btn-primary {
        animation-delay: 0.2s;
    }

    .hero-numbers {
        animation-delay: 0.3s;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   HERO DARK — Tech Wave Background
   =================================== */
.hero-dark {
    position: relative;
    padding: 80px 0 var(--space-lg);
    background-image: url('assets/images/hero-tech-wave.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #020617;
    /* Fallback */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hover-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content-dark {
    max-width: 650px;
}

.hero-tag-dark {
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    /* Blue 400 */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    background: rgba(29, 78, 216, 0.1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(29, 78, 216, 0.3);
}

.hero-title-dark {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-highlight-dark {
    color: #3b82f6;
    position: relative;
}

.hero-desc-dark {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e2e8f0;
    /* Slate 200 */
    margin-bottom: var(--space-xl);
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-numbers-dark {
    display: flex;
    gap: var(--space-xxl);
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.number-item-dark {
    display: flex;
    flex-direction: column;
}

.number-item-dark .number-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.number-item-dark .number-label {
    font-size: 0.875rem;
    color: #94a3b8;
    /* Slate 400 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-dark {
        background-position: center;
        padding-top: 100px;
    }

    .hero-content-dark {
        max-width: 100%;
        text-align: center;
    }

    .hero-numbers-dark {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .hero-cta-wrapper {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* ===================================
   HERO LIGHT — Tech Wave Background
   =================================== */
.hero-light {
    position: relative;
    padding: 80px 0 var(--space-lg);
    background-image: url('assets/images/hero-tech-wave-light.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #f8fafc;
    /* Slate 50 */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hover-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content-light {
    max-width: 600px;
}

.hero-tag-light {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    background: rgba(29, 78, 216, 0.1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(29, 78, 216, 0.2);
}

.hero-title-light {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    /* Dark Blue */
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.hero-highlight-light {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero-highlight-light::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.2);
    /* Blue 500 alpha */
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-desc-light {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    /* Slate 600 */
    margin-bottom: var(--space-xl);
    max-width: 90%;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--primary);
}

/* Métricas na parte inferior */
.hero-numbers-light {
    display: flex;
    gap: var(--space-xxl);
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.number-item-light {
    display: flex;
    flex-direction: column;
}

.number-item-light .number-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.number-item-light .number-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-light {
        background-image: none;
        background-color: #f8fafc;
        padding-top: 80px;
        min-height: auto;
    }

    .hero-content-light {
        max-width: 100%;
        text-align: center;
    }

    .hero-numbers-light {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .number-item-light {
        min-width: 100px;
        text-align: center;
    }

    .hero-cta-wrapper {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* ===================================
   TRUST BADGES FIX — Layout Organizado
   =================================== */
.hero-numbers-light {
    display: flex;
    gap: var(--space-xxl);
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.number-item-light {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.number-item-light .number-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-item-light .number-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-numbers-light {
        justify-content: center;
        gap: var(--space-xl);
    }

    .number-item-light {
        align-items: center;
        text-align: center;
    }
}

/* ===================================
   PROCESS RESPONSIVIDADE APRIMORADA
   =================================== */
@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .step {
        flex: 0 0 calc(50% - var(--space-md));
        max-width: calc(50% - var(--space-md));
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .process {
        padding: var(--space-xl) 0;
    }

    .process-steps {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: stretch;
    }

    .step {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-md);
        padding: var(--space-md);
        background: var(--bg-light);
        border-radius: 12px;
    }

    .step-number {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-content {
        flex: 1;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .step-image {
        width: 100%;
        max-width: 280px;
        margin: var(--space-md) auto 0;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-bottom: var(--space-sm);
    }
}

/* ===================================
   WORK CHECKOUT — Imagens de Fundo
   =================================== */
.work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.work-card:hover .work-bg {
    transform: scale(1.05);
}

/* Quando houver imagem, precisamos de um overlay para ler o texto */

/* Forçar texto branco quando tem imagem */
.work-card:has(.work-bg) h3,
.work-card:has(.work-bg) p {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}

.work-card:has(.work-bg) .work-tag {
    background: var(--primary) !important;
    color: var(--primary);
}

/* ===================================
   FIX: Work Cards Z-Index & Mobile Responsivo
   =================================== */

/* Garantir que picture fica atrás de tudo */
.work-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Garantir que o texto fica acima da imagem */
.work-card-inner {
    position: relative;
    z-index: 2;
}

/* Work Tag sempre visível */
.work-tag {
    position: relative;
    z-index: 3;
}

/* Mobile: Ajustar altura para imagens horizontais (screenshot) */
@media (max-width: 768px) {

    .work-card,
    .work-card-large,
    .work-card-wide {
        min-height: 200px;
        aspect-ratio: 9 / 16;
        /* Proporção ideal para screenshots horizontais */
    }

    .work-card h3 {
        font-size: 1.25rem;
    }

    .work-card p {
        font-size: 0.85rem;
    }

    .work-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

/* FIX: Overlay para cards COM imagem - Mantém work-tag compacto */
.work-card:has(.work-bg-wrapper)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Work-tag sobre imagem: fundo branco, texto azul */
.work-card:has(.work-bg-wrapper) .work-tag {
    background: #ffffff;
    color: #ffffff;
}

/* Texto branco sobre imagem */
.work-card:has(.work-bg-wrapper) h3,
.work-card:has(.work-bg-wrapper) p {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
