/* =========================================
   VARIÁVEIS E RESET
========================================= */
:root {
    --primaria: #3703B8;
    --destaque: #FE6603;
    --branco: #FFFFFF;
    --escuro: #0D0524;
    --cinza-claro: #F4F5F7;
    --terminal-bg: #0D1117;
    --terminal-green: #39d353;
    --terminal-blue: #79c0ff;
    --terminal-orange: #ffa657;
    --terminal-purple: #d2a8ff;
    --terminal-comment: #8b949e;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { color: var(--escuro); background-color: var(--branco); line-height: 1.6; overflow-x: hidden; }

section { scroll-margin-top: 70px; }
#inicio { scroll-margin-top: 0; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }


/* =========================================
   HEADER
========================================= */
header {
    background-color: var(--branco);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}
header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
header .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 28px; font-weight: 700; color: var(--primaria); text-decoration: none; z-index: 101; }
.logo span { color: var(--destaque); }

nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a { text-decoration: none; color: var(--escuro); font-weight: 500; font-size: 15px; transition: 0.3s; }
nav ul li a:hover { color: var(--destaque); }

/* =========================================
   TOP WRAPPER
========================================= */
.top-wrapper {
    background: radial-gradient(circle at 20% 30%, #4a09f0 0%, var(--primaria) 50%, #20026b 100%);
    display: flex;
    flex-direction: column;
    position: relative;
}
.top-wrapper::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: var(--destaque);
    filter: blur(150px);
    opacity: 0.2;
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   WHATSAPP
========================================= */
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000; text-decoration: none; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-btn__icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


/* =========================================
   FOOTER COMPACTO & MINIMALISTA
========================================= */
.footer-compacto {
    background-color: #050112;
    padding: 40px 0 20px;
    color: var(--branco);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo-menor {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #FFFFFF;
    line-height: 1;
}

.logo-menor img {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 3px;
}

.logo-texto {
    display: inline-block;
    white-space: nowrap;
}

.ponto { color: var(--destaque); }

.footer-identidade p {
    font-size: 12px;
    color: #615a7a;
    margin-top: 5px;
    font-weight: 400;
}

.footer-contato {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.email-link:hover { color: var(--destaque); }

.social-mini {
    font-size: 12px;
    color: #615a7a;
}
.social-mini a {
    color: #615a7a;
    text-decoration: none;
    transition: color 0.3s;
}
.social-mini a:hover { color: var(--branco); }
.social-mini .sep { margin: 0 5px; opacity: 0.3; }

.footer-copy {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #413b58;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-pag {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.topo-link {
    color: #413b58;
    text-decoration: none;
    transition: color 0.3s;
}
.topo-link:hover { color: var(--destaque); }


/* =========================================
   BOTÕES
========================================= */
.btn-destaque {
    background-color: var(--destaque); color: var(--branco); padding: 15px 32px;
    text-decoration: none; border-radius: 8px; font-weight: 600; transition: 0.3s;
    display: inline-block; border: none; cursor: pointer;
    box-shadow: 0 10px 20px rgba(254,102,3,0.3);
}
.btn-destaque:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(254,102,3,0.5); }
.btn-destaque:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
    background-color: transparent; color: var(--primaria); border: 2px solid var(--primaria);
    padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600;
    transition: 0.3s; display: inline-block;
}
.btn-outline:hover { background-color: var(--primaria); color: var(--branco); }

.btn-outline-claro {
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}
.btn-outline-claro:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-hero {
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.1); border-color: var(--branco); }

.btn-link-laranja {
    color: var(--destaque);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: 1px solid rgba(254,102,3,0.3);
    padding: 10px 20px;
    border-radius: 24px;
}
.btn-link-laranja:hover {
    background: rgba(254,102,3,0.08);
    transform: translateX(4px);
}

/* Stack tags */
.stack-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.stack-tag {
    background: #F4F0FF;
    color: var(--primaria);
    border: 1px solid rgba(55,3,184,0.15);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

h2.section-title { color: var(--escuro); font-size: 36px; margin-bottom: 50px; }

.form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}
.form-feedback.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-feedback.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }


/* =========================================
   ANIMAÇÕES DE SCROLL
========================================= */
.escondido {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.aparecer { opacity: 1; transform: translateY(0); }


/* =========================================
   HELPERS
========================================= */
.section-title--center { text-align: center; margin-bottom: 60px; }
.section-title--no-margin { margin-bottom: 0; }
.destaque-roxo { color: #A78BFA; }


/* =========================================
   HERO
========================================= */
.hero { padding: 60px 0 100px; color: var(--branco); position: relative; z-index: 1; }
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }

.hero-text { flex: 1.1; max-width: 650px; }

.hero h1 {
    font-size: clamp(42px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1.5px;
}
.hero h1 .highlight { color: #a78bfa; }

.hero p { font-size: 17px; color: #b8aedf; margin-bottom: 40px; line-height: 1.6; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 45px; flex-wrap: wrap; }

.hero-benefits { display: flex; flex-wrap: wrap; gap: 24px; }
.benefit-item { display: flex; gap: 12px; align-items: center; }
.benefit-icon { color: #a78bfa; opacity: 0.8; }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-txt strong { display: block; font-size: 13px; color: var(--branco); }
.benefit-txt span { font-size: 11px; color: #837da1; }

/* Lado direito: Órbita Tech */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tech-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ring-1 { width: 380px; height: 380px; border-top-color: var(--primaria); animation: spin 15s linear infinite; }
.ring-2 { width: 280px; height: 280px; border-right-color: var(--destaque); border-bottom-color: rgba(254,102,3,0.2); animation: spinReverse 10s linear infinite; }
.ring-3 { width: 180px; height: 180px; border: 1px dashed rgba(167,139,250,0.3); animation: spin 20s linear infinite; }

.orbit-core {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.core-solid {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primaria) 0%, var(--destaque) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(254,102,3,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    position: relative;
    z-index: 2;
}
.core-solid svg { width: 28px; height: 28px; }

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--destaque);
    animation: pulseEnergy 2.5s infinite ease-out;
    z-index: 1;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spinReverse { 100% { transform: rotate(-360deg); } }
@keyframes pulseEnergy {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Cursor do typewriter */
.cursor-hero {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #a78bfa;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }


/* =========================================
   SOBRE / IDEAIS
========================================= */
.sobre-ideais {
    padding: 100px 0;
    background-color: #FAFAFC;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.ideais-wrapper { max-width: 900px; margin: 0 auto; }

.ideais-header { text-align: center; margin-bottom: 40px; }

.ideais-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--primaria);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.ideais-header h2 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--escuro);
    letter-spacing: -1px;
}

.ideais-content { text-align: center; margin-bottom: 60px; }

.ideais-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primaria);
    margin-bottom: 24px;
    line-height: 1.4;
}

.ideais-content p {
    font-size: 16px;
    color: #615a7a;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ideais-content strong { color: var(--escuro); font-weight: 600; }

.ideais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ideal-card {
    background: var(--branco);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.01);
}
.ideal-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(55,3,184,0.05); border-color: rgba(55,3,184,0.1); }

.ideal-icon {
    width: 50px; height: 50px;
    background: rgba(167,139,250,0.1);
    color: #A78BFA;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}
.ideal-card:hover .ideal-icon { background: #A78BFA; color: var(--branco); transform: scale(1.1) rotate(-5deg); }
.ideal-icon svg { width: 24px; height: 24px; }
.ideal-card h4 { font-size: 16px; font-weight: 700; color: var(--escuro); margin-bottom: 12px; }
.ideal-card p { font-size: 13px; color: #837da1; line-height: 1.5; margin: 0; }


/* =========================================
   PARA QUEM — BENTO WHITE
========================================= */
.bento-white {
    background-color: var(--branco);
    padding: 50px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bento-header-compacto { margin-bottom: 30px; }

.bento-header-compacto h2 {
    font-size: 32px;
    letter-spacing: -1px;
    color: var(--escuro);
}

.bento-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--primaria);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.bento-grid-white {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bento-card-white {
    background: #FAFAFC;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.bento-card-white:hover { border-color: var(--primaria); background: var(--branco); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.03); }

.card-principal {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    background: #F4F0FF;
    border-color: rgba(55,3,184,0.1);
}
.bento-inner { flex: 1; }

.bento-card-white h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--escuro); }
.bento-card-white p { font-size: 13px; color: #615a7a; line-height: 1.5; margin: 0; }

.bento-icon-small {
    width: 36px; height: 36px;
    background: var(--branco);
    color: var(--primaria);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.bento-mini-stats { display: flex; gap: 20px; padding-left: 20px; border-left: 1px solid rgba(0,0,0,0.1); }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat strong { font-size: 20px; color: var(--primaria); line-height: 1; }
.mini-stat span { font-size: 10px; text-transform: uppercase; color: #837da1; }


/* =========================================
   SERVIÇOS DARK
========================================= */
.servicos-dark {
    background-color: #050112;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    color: var(--branco);
}
.servicos-dark::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(167,139,250,0.06) 0%, transparent 70%);
    top: -200px; left: -200px;
    border-radius: 50%;
    pointer-events: none;
}
.servicos-dark::after {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(254,102,3,0.04) 0%, transparent 70%);
    bottom: -300px; right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.servicos-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }

.servicos-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #A78BFA;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.servicos-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.servico-card-dark {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.servico-card-dark:hover { background: rgba(255,255,255,0.04); border-color: rgba(167,139,250,0.3); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(5,1,18,0.5); }

.servico-icon-dark {
    width: 44px; height: 44px;
    background: rgba(167,139,250,0.1);
    color: #A78BFA;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}
.servico-card-dark:hover .servico-icon-dark { background: #A78BFA; color: #050112; }
.servico-icon-dark svg { width: 20px; height: 20px; }
.servico-card-dark h3 { font-size: 15px; font-weight: 600; color: var(--branco); margin-bottom: 10px; line-height: 1.3; }
.servico-card-dark p { font-size: 12px; color: #a09ab0; line-height: 1.5; margin-bottom: 24px; flex: 1; }

.servico-arrow { margin-top: auto; align-self: flex-end; color: #413b58; transition: 0.3s; display: flex; }
.servico-card-dark:hover .servico-arrow { color: var(--branco); transform: translateX(4px); }

.servicos-footer { text-align: center; position: relative; z-index: 2; }

.btn-servicos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
}


/* =========================================
   PROCESSO
========================================= */
#processo {
    padding: 100px 0;
    background-color: var(--branco);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.processo-layout { display: flex; gap: 60px; align-items: flex-start; }

.processo-intro { flex: 0 0 320px; }

.processo-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--primaria);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.processo-intro h2 { font-size: 32px; color: var(--escuro); line-height: 1.2; margin-bottom: 16px; }
.processo-intro p { font-size: 14px; color: #615a7a; margin-bottom: 24px; line-height: 1.6; }

.processo-steps-horizontal {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 10px;
}
.processo-steps-horizontal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%; right: 12%;
    border-top: 2px dashed #D1C5F0;
    z-index: 1;
}

.step-item { position: relative; z-index: 2; }

.step-icon {
    width: 60px; height: 60px;
    background: var(--branco);
    border: 2px solid #E6D9FF;
    color: var(--primaria);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}

.step-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }

.step-number {
    width: 22px; height: 22px;
    background: var(--primaria);
    color: var(--branco);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-header h3 { font-size: 16px; font-weight: 700; color: var(--escuro); margin: 0; }
.step-item p { font-size: 13px; color: #615a7a; line-height: 1.5; margin: 0; }


/* =========================================
   PROJETOS
========================================= */
#projetos {
    padding: 50px 0;
    background: linear-gradient(135deg, #FE6603 0%, #d94e00 100%);
    position: relative;
    overflow: hidden;
}
#projetos::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.15);
    filter: blur(120px);
    bottom: -200px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.projetos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.projetos-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
#projetos .section-title { color: var(--branco); text-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.projetos-header h2 { margin-bottom: 0; }

.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--branco);
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-ver-mais:hover { background: var(--branco); color: var(--destaque); border-color: var(--branco); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.projeto-card {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.projeto-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(55,3,184,0.08); border-color: rgba(55,3,184,0.1); }

.projeto-thumb {
    height: 140px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}
.projeto-thumb-1 { background: linear-gradient(135deg, #0D1117 0%, #161b22 100%); }
.projeto-thumb-2 { background: linear-gradient(135deg, #050112 0%, #20026b 100%); }
.projeto-thumb-3 { background: linear-gradient(135deg, #1a0a00 0%, #b34600 100%); }

.projeto-thumb-code { padding: 15px; color: var(--terminal-green); font-size: 11px; line-height: 1.6; width: 100%; }
.projeto-thumb-code .tc { color: var(--terminal-comment); }
.projeto-thumb-code .tk { color: var(--terminal-purple); }
.projeto-thumb-code .tf { color: var(--terminal-blue); }
.projeto-thumb-code .ts { color: var(--terminal-orange); }

.projeto-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.projeto-body h3 { font-size: 18px; font-weight: 700; color: var(--escuro); margin-bottom: 8px; letter-spacing: -0.5px; }
.projeto-body p  { font-size: 13px; color: #615a7a; line-height: 1.5; flex: 1; }

.projeto-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 15px; }
.projeto-tag {
    background: #F4F5F7;
    color: #413b58;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid rgba(0,0,0,0.05);
}

.projeto-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: space-between;
    background: #FAFAFC;
}
.projeto-tipo { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primaria); opacity: 0.8; }
.projeto-link { font-size: 12px; color: var(--escuro); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 4px; transition: 0.3s; }
.projeto-link:hover { color: var(--destaque); transform: translateX(3px); }


/* =========================================
   CTA FINAL / CONTATO
========================================= */
#contato { padding: 80px 0; background-color: var(--branco); }

.cta-final-box {
    background: #050112;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--branco);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(5,1,18,0.1);
}
.cta-final-box::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: var(--primaria);
    filter: blur(150px);
    opacity: 0.15;
    top: -100px; left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.cta-left { flex: 1; position: relative; z-index: 1; }
.cta-eyebrow { font-size: 12px; font-weight: 700; color: var(--destaque); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 16px; }
.cta-left h2 { font-size: clamp(32px, 4vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.cta-left p { font-size: 16px; color: #a09ab0; max-width: 450px; margin-bottom: 30px; line-height: 1.6; }

.cta-actions-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-left .btn-destaque { padding: 15px 30px; font-size: 15px; }

.cta-right { flex: 0 0 380px; position: relative; z-index: 1; }

.cta-benefits-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.benefits-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #d9d2f6; font-weight: 500; }
.benefits-list svg { width: 18px; height: 18px; color: #A78BFA; flex-shrink: 0; }

.social-proof { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.avatar-group { display: flex; }
.avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #050112; margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.bg-1 { background: linear-gradient(135deg, #FE6603, #ff9a57); }
.bg-2 { background: linear-gradient(135deg, #3703B8, #7a3df0); }
.bg-3 { background: linear-gradient(135deg, #A78BFA, #d2a8ff); }
.social-proof-text { display: flex; flex-direction: column; }
.social-proof-text strong { font-size: 13px; color: var(--branco); }
.social-proof-text span { font-size: 11px; color: #837da1; }


/* =========================================
   MIDDLE WRAPPER
========================================= */
.middle-wrapper {
    background: linear-gradient(180deg, #E6D9FF 0%, #FFFFFF 50%, #FFE5D4 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding-top: 110px;
}




/* =========================================
   RESPONSIVO — TABLET (≤ 1024px)
========================================= */
@media (max-width: 1024px) {
    /* Hero */
    .hero .container { flex-direction: column; text-align: center; gap: 50px; }
    .hero-text { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero-btns { justify-content: center; }
    .hero-benefits { justify-content: center; }
    .hero-visual { justify-content: center; width: 100%; }
    .tech-orbit { width: 300px; height: 300px; margin-top: 20px; }
    .ring-1 { width: 300px; height: 300px; }
    .ring-2 { width: 220px; height: 220px; }
    .ring-3 { width: 140px; height: 140px; }
    .orbit-core { width: 60px; height: 60px; }

    /* Processo */
    .processo-layout { flex-direction: column; gap: 40px; }
    .processo-intro { flex: none; max-width: 100%; }
    .processo-steps-horizontal::before { display: none; }
    .processo-steps-horizontal { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    /* Serviços */
    .servicos-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    /* Bento */
    .bento-grid-white { grid-template-columns: repeat(2, 1fr); }
    .card-principal { grid-column: span 2; }

    /* CTA */
    .cta-right { flex: 0 0 320px; }
}


/* =========================================
   RESPONSIVO — MOBILE (≤ 768px)
========================================= */
@media (max-width: 768px) {

    /* ── Container ── */
    .container { width: 92%; }

    /* ── Header / Nav ── */
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }
    nav ul {
        gap: 10px 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    nav ul li a { font-size: 13px; }

    /* ── Hero ── */
    .hero { padding: 48px 0 60px; }
    .hero h1 { font-size: clamp(30px, 8vw, 40px); letter-spacing: -1px; text-align: left; }
    .hero-text { align-items: flex-start; text-align: left; }
    .hero p { font-size: 15px; }
    .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
    .btn-destaque,
    .btn-outline-hero { width: 100%; text-align: center; padding: 14px 24px; }
    .hero-benefits { flex-direction: column; gap: 14px; width: 100%; }
    .benefit-item { align-items: flex-start; }

    /* Órbita menor */
    .tech-orbit { width: 220px; height: 220px; }
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 160px; height: 160px; }
    .ring-3 { width: 100px; height: 100px; }
    .orbit-core { width: 52px; height: 52px; }
    .core-solid svg { width: 22px; height: 22px; }

    /* ── Middle Wrapper ── */
    .middle-wrapper { padding-top: 0; }

    /* ── Sobre / Ideais ── */
    .sobre-ideais { padding: 60px 0; }
    .ideais-lead { font-size: 17px; }
    .ideais-grid { grid-template-columns: 1fr; gap: 16px; }
    .ideal-card { padding: 24px 20px; }

    /* ── Bento (Para Quem) ── */
    .bento-grid-white { grid-template-columns: 1fr; }
    .card-principal {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .bento-mini-stats {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding: 16px 0 0;
        width: 100%;
    }
    .bento-header-compacto h2 { font-size: 26px; }

    /* ── Serviços ── */
    .servicos-dark { padding: 48px 0; }
    .servicos-header { margin-bottom: 36px; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .servicos-footer { margin-top: 10px; }
    .btn-servicos { width: 100%; max-width: 280px; justify-content: center; }

    /* ── Processo ── */
    #processo { padding: 60px 0; }
    .processo-intro { text-align: center; }
    .btn-link-laranja { justify-content: center; }
    .processo-steps-horizontal { grid-template-columns: 1fr; gap: 24px; }
    .step-item {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-left: 3px solid var(--primaria);
        border-radius: 0 12px 12px 0;
        background: #FAFAFC;
    }
    .step-icon { margin-bottom: 16px; }

    /* ── Projetos ── */
    #projetos { padding: 48px 0; }
    .projetos-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .projetos-grid { grid-template-columns: 1fr; gap: 16px; }
    .projeto-thumb { height: 120px; }

    /* ── CTA / Contato ── */
    #contato { padding: 40px 0; }
    .cta-final-box {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
        gap: 32px;
    }
    .cta-left p { margin: 0 auto 24px; }
    .cta-actions-row { flex-direction: column; align-items: center; gap: 12px; }
    .cta-left .btn-destaque,
    .btn-outline-claro { width: 100%; max-width: 300px; text-align: center; }
    .cta-right { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }
    .benefits-list li { justify-content: flex-start; }
    .social-proof { justify-content: center; }

    /* ── Footer ── */
    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .footer-contato { text-align: center; align-items: center; }
    .footer-copy { flex-direction: column; align-items: center; gap: 10px; }
    .footer-pag { justify-content: center; gap: 8px 14px; }

    /* ── WhatsApp ── */
    .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .whatsapp-btn__icon { width: 26px; height: 26px; }
}


/* =========================================
   RESPONSIVO — MOBILE PEQUENO (≤ 480px)
========================================= */
@media (max-width: 480px) {

    .container { width: 94%; }

    /* Hero */
    .hero h1 { font-size: clamp(26px, 9vw, 34px); }
    .hero p { font-size: 14px; }

    /* Órbita mínima */
    .tech-orbit { width: 180px; height: 180px; }
    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 130px; height: 130px; }
    .ring-3 { width: 82px;  height: 82px; }
    .orbit-core { width: 44px; height: 44px; }
    .core-solid svg { width: 18px; height: 18px; }

    /* Serviços — coluna única em telas muito pequenas */
    .servicos-grid { grid-template-columns: 1fr; }

    /* Processo */
    .processo-intro h2 { font-size: 26px; }

    /* CTA */
    .cta-final-box { padding: 28px 18px; border-radius: 16px; }
    .cta-left h2 { font-size: 26px; }
}
