:root {
  /* Fundo Escuro Absoluto */
  --bg-dark: #05070D; 
  --text-main: #ffffff;
  
  /* PALETA OFICIAL PRISMCUT */
  --pc-cyan: #00acff;
  --pc-indigo: #6545ff;
  --pc-magenta: #fb00ff;
  --pc-muted: #656cdb; 
  --pc-ice: #b4bde1;   

  /* Textos secundários */
  --text-muted: rgba(180, 189, 225, 0.65); 
  
  /* Transparências super sutis */
  --border-glass: rgba(101, 108, 219, 0.15); 
  --bg-glass: rgba(101, 108, 219, 0.02);
  --bg-glass-hover: rgba(101, 69, 255, 0.05);
}
/* --- PRESETS DO LENIS --- */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =========================================
   CURSOR CUSTOMIZADO PRISMCUT
========================================= */
/* Esconde o cursor padrão no site todo, forçando a barra nos elementos teimosos */
body, a, button, input, select, textarea, details, summary, .pc-price-box, .modal { 
    cursor: none !important; 
}

/* Estiliza a nossa bolinha elegante */
.custom-cursor {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 8px; /* Tamanho delicado */
    height: 8px; 
    background-color: var(--pc-cyan); /* Usando o Cyan do seu tema */
    border-radius: 50%; 
    pointer-events: none; /* Garante que o cursor não bloqueie seus cliques */
    z-index: 99999999; /* Mantém o cursor acima de absolutamente tudo */
    transform: translate(-50%, -50%); /* Centraliza a bolinha exatamente na ponta do mouse */
    box-shadow: 0 0 12px rgba(0, 172, 255, 0.5); /* Glow sutil */
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s, 
                border 0.3s;
    /* Inverte a cor dependendo do fundo para nunca sumir */
    mix-blend-mode: difference; 
}

/* O comportamento quando passa o mouse sobre algo clicável */
.custom-cursor.hover { 
    width: 45px; 
    height: 45px; 
    background-color: transparent; 
    border: 1px solid var(--pc-magenta); /* Borda magenta no hover */
    box-shadow: none; 
}

/* Esconde o cursor customizado em telas menores (mobile) */
@media (max-width: 768px) {
    .custom-cursor { display: none; } 
    body, a, button, input, select, textarea, details, summary { cursor: auto !important; }
}

/* =========================================
   BASE E TIPOGRAFIA
========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* 1. TRAVA ABSOLUTA DE ROLAGEM HORIZONTAL */
html, body {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-weight: 300; 
  letter-spacing: 0.2px;
}

/* Efeito de Grain (Ruído Cinematográfico) */
body::after {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; opacity: 0.04; z-index: 9999;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainMove 6s steps(10) infinite;
}
@keyframes grainMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-10%, -10%); }
}

/* =========================================
   UTILITÁRIOS E LAYOUTS
========================================= */
.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.max-w-800 { max-width: 800px; }
.text-center { text-align: center; }
.align-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.full-width { width: 100%; }

.section { padding: 120px 0; }
.transparent-bg { background-color: transparent; position: relative; z-index: 1; }
.solid-section {
    background-color: var(--bg-dark); 
    position: relative; z-index: 2;
    box-shadow: 0 -50px 100px rgba(7,8,18,1), 0 50px 100px rgba(7,8,18,1);
}

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* =========================================
   ESTILOS GERAIS DOS CARTÕES
   ========================================= */
.service-card {
  text-decoration: none;
  display: flex;
  align-items: center;   
  justify-content: center;  
  min-height: 140px;
  position: relative;     
  overflow: hidden;       
  padding: 24px;
  border-radius: 12px;  
  transition: all 0.3s ease;
}

.card-content {
  position: relative;
  z-index: 2; 
}

.bg-icon {
  position: absolute;
  right: -5px;           
  bottom: -25px;         
  width: 100px;           
  height: 140px;
  z-index: 1;             
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease, filter 0.4s ease; 
}

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

/* =========================================
   AS CORES: IDLE -> HOVER
   ========================================= */
#servicos .grid-3 a:nth-child(1) .bg-icon { color: rgba(0, 191, 255, 0.15); }
#servicos .grid-3 a:nth-child(1):hover .bg-icon { color: #00bfff; filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.4)) drop-shadow(0 0 12px rgba(0, 191, 255, 0.2)); }

#servicos .grid-3 a:nth-child(2) .bg-icon { color: rgba(58, 134, 255, 0.15); }
#servicos .grid-3 a:nth-child(2):hover .bg-icon { color: #3a86ff; filter: drop-shadow(0 0 5px rgba(58, 134, 255, 0.4)) drop-shadow(0 0 12px rgba(58, 134, 255, 0.2)); }

#servicos .grid-3 a:nth-child(3) .bg-icon { color: rgba(99, 102, 241, 0.15); }
#servicos .grid-3 a:nth-child(3):hover .bg-icon { color: #6366f1; filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.4)) drop-shadow(0 0 12px rgba(99, 102, 241, 0.2)); }

#servicos .flex-row-2 a:nth-child(1) .bg-icon { color: rgba(157, 78, 221, 0.15); }
#servicos .flex-row-2 a:nth-child(1):hover .bg-icon { color: #9d4edd; filter: drop-shadow(0 0 5px rgba(157, 78, 221, 0.4)) drop-shadow(0 0 12px rgba(157, 78, 221, 0.2)); }

#servicos .flex-row-2 a:nth-child(2) .bg-icon { color: rgba(178, 0, 255, 0.15); }
#servicos .flex-row-2 a:nth-child(2):hover .bg-icon { color: #b200ff; filter: drop-shadow(0 0 5px rgba(178, 0, 255, 0.4)) drop-shadow(0 0 12px rgba(178, 0, 255, 0.2)); }

.service-card:hover .bg-icon { transform: scale(1.15) rotate(-8deg); }

.flex-row-2 {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.bottom-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

/* =========================================
   DEGRADÊS PRISMCUT
========================================= */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { font-size: 2.8rem; font-weight: 400; margin-bottom: 16px; letter-spacing: -0.04em; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; font-weight: 300; }

.grad { background: linear-gradient(135deg, var(--pc-cyan) 0%, var(--pc-indigo) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad1 { background: linear-gradient(135deg, var(--pc-ice) 0%, var(--pc-magenta) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad2 { background: linear-gradient(135deg, var(--pc-ice) 0%, var(--pc-muted) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad4 { background: linear-gradient(135deg, var(--pc-indigo) 0%, var(--pc-cyan) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =========================================
   HEADER
========================================= */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem; background: rgba(7, 8, 18, 0.75); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(101, 69, 255, 0.15); 
}
.brand { justify-self: start; display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-main); }
.brand__logo { width: 32px; height: 32px; object-fit: contain; }
.brand__name { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.4px; }

.nav { justify-self: center; display: flex; gap: 2.5rem; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.3s; }
.nav a:hover { color: var(--pc-cyan); }

.topbar__cta { justify-self: end; display: flex; align-items: center; gap: 15px; }
.btn-header {
  background: rgba(101, 69, 255, 0.05); border: 1px solid rgba(101, 69, 255, 0.3);
  padding: 10px 22px; border-radius: 12px; color: var(--text-main); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: all 0.4s ease;
}
.btn-header:hover { 
  background: rgba(101, 69, 255, 0.15); 
  border-color: var(--pc-cyan);
  box-shadow: 0 0 15px rgba(0, 172, 255, 0.15);
}

/* =========================================
   EFEITO MORPH (Hero)
========================================= */
.morph-container {
  display: inline-block; position: relative; filter: url(#threshold);
  padding: 20px 30px; margin: -20px -30px; vertical-align: bottom; overflow: visible; 
}
.word-rotator {
  position: relative; height: 1.5em; width: 100%; min-width: 11ch; 
  display: flex; justify-content: center; align-items: center; padding-bottom: 0.1em; 
}
.word-rotator .word {
  position: absolute; left: 50%; transform: translateX(-50%); opacity: 0; white-space: nowrap;
  animation: rotate-words-6 15s infinite ease-in-out; font-family: inherit; font-weight: inherit; line-height: 2; 
}

.word-rotator .word:nth-child(1) { animation-delay: 0s; }
.word-rotator .word:nth-child(2) { animation-delay: 2.5s; }
.word-rotator .word:nth-child(3) { animation-delay: 5.0s; }
.word-rotator .word:nth-child(4) { animation-delay: 7.5s; }
.word-rotator .word:nth-child(5) { animation-delay: 10.0s; }
.word-rotator .word:nth-child(6) { animation-delay: 12.5s; }

@keyframes rotate-words-6 {
  0% { opacity: 0; filter: blur(15px); transform: translateX(-50%) scale(0.9) translateY(20px); }
  3% { opacity: 1; filter: blur(0px); transform: translateX(-50%) scale(1) translateY(0); }
  14% { opacity: 1; filter: blur(0px); transform: translateX(-50%) scale(1) translateY(0); }
  18% { opacity: 0; filter: blur(15px); transform: translateX(-50%) scale(1.1) translateY(-20px); }
  100% { opacity: 0; filter: blur(15px); transform: translateX(-50%) scale(1.1) translateY(-20px); }
}

/* =========================================
   BOTÕES PRINCIPAIS
========================================= */
.btn--primary,
.btn--ghost {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; border-radius: 14px; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif; cursor: pointer; text-decoration: none;
  background: var(--bg-dark); color: #ffffff;
  border: 1px solid rgba(101, 69, 255, 0.4); 
  box-shadow: 0 5px 15px rgba(101, 69, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: 1; overflow: hidden;
}

.btn--primary::before, .btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(0, 172, 255, 0.15) 0%, rgba(251, 0, 255, 0.15) 100%);
  opacity: 0; transition: opacity 0.5s ease;
}

.btn--primary:hover, .btn--ghost:hover {
  transform: translateY(-2px); 
  border-color: var(--pc-cyan); 
  box-shadow: 0 10px 30px rgba(101, 69, 255, 0.3), 0 0 15px rgba(0, 172, 255, 0.2);
}
.btn--primary:hover::before, .btn--ghost:hover::before { opacity: 1; }
.btn--primary:active, .btn--ghost:active { transform: translateY(0) scale(0.98); }

.btn--center {
  margin: 24px auto 0 auto; 
  display: block; 
  width: 100%;
  max-width: 380px;
  text-align: center;
}

/* =========================================
   CHIPS
========================================= */
.chip {
  position: relative; display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px;
  background: rgba(101, 69, 255, 0.08); border: 1px solid rgba(101, 69, 255, 0.3);
  color: var(--pc-ice); font-weight: 500; font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chip::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-150%); transition: transform 0.6s ease-in-out;
}
.chip:hover {
  background: rgba(101, 69, 255, 0.15); border-color: rgba(101, 69, 255, 0.6); color: #ffffff;
  box-shadow: 0 4px 15px rgba(101, 69, 255, 0.25), 0 0 0 1px rgba(101, 69, 255, 0.1) inset; transform: translateY(-2px);
}
.chip:hover::before { transform: translateX(150%); }

/* =========================================
   CARDS DE VIDRO
========================================= */
.glass-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.glass-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 400; letter-spacing: -0.02em; }
.glass-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-weight: 300; }

.hover-premium:hover {
  transform: translateY(-4px); border-color: rgba(101, 69, 255, 0.5); 
  background: linear-gradient(180deg, rgba(101, 69, 255, 0.08), transparent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(101, 69, 255, 0.08);
}

.step__n {
  font-weight: 400; font-size: 16px; width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: var(--pc-ice);
  background: rgba(101, 69, 255, 0.05); border: 1px solid rgba(101, 69, 255, 0.3); 
  position: relative; overflow: hidden;
}
.step__n::before {
  content:""; position:absolute; inset: -10px; border-radius: inherit;
  background: linear-gradient(135deg, var(--pc-cyan), var(--pc-magenta));
  opacity: 0.15; filter: blur(8px); z-index: -1;
}

/* =========================================
   HERO & SCROLL
========================================= */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 80px; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.05; font-weight: 400; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.hero p { color: var(--text-muted); font-size: 1.15rem; max-width: 680px; line-height: 1.6; margin-bottom: 2.5rem; font-weight: 300; }
.cta-row { display: flex; gap: 1.2rem; justify-content: center; }
.cta-row--manual-center { display: flex; width: 100%; justify-content: center; margin-top: 40px; }

/* =========================================
   SEÇÃO INTERATIVA (DRAGGABLE)
========================================= */
.drag-section { background: rgba(5, 5, 5, 0.45); backdrop-filter: blur(26px); position: relative; min-height: 90vh; display: flex; flex-direction: column; overflow: hidden; }
.drag-section::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(101, 69, 255, 0.06) 0%, transparent 70%); pointer-events: none; z-index: 1;
}
.drag-container { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; z-index: 5; }

.drag-card {
  position: absolute; width: min(340px, 85vw); aspect-ratio: 1 / 1; height: auto; 
  background: linear-gradient(135deg, rgba(101, 69, 255, 0.25), rgba(18, 18, 18, 0.9));
  border: 1px solid rgba(101, 69, 255, 0.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8); display: flex; flex-direction: column; justify-content: flex-end; will-change: transform;
  cursor: none !important;
}
.drag-card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 15px; letter-spacing: -0.02em; }
.drag-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-weight: 300; margin: 0; }

.d-card-1 { z-index: 4; transform: rotate(-8deg) translateX(-20px); }
.d-card-2 { z-index: 3; transform: rotate(4deg) translateY(-10px); }
.d-card-3 { z-index: 2; transform: rotate(-3deg) translateX(10px); }
.d-card-4 { z-index: 1; transform: rotate(6deg) translateY(15px); }

/* =========================================
   PORTFÓLIO & MOSAICO
========================================= */
.portfolio-mosaic { display: flex; justify-content: center; gap: 10px; align-items: flex-start; margin-top: 80px; padding-bottom: 20px; }
.mosaic-col { display: flex; flex-direction: column; }
.mosaic-col.col-center { width: 37%; gap: 12px; }
.mosaic-col.col-side { width: 31.5%; gap: 12px; margin-top: 10%; }

.mosaic-card {
  position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(101, 69, 255, 0.15); background: var(--bg-dark); text-decoration: none !important; transform: translateZ(0);
}
.mosaic-card img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.15) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease; z-index: 0;
}
.mosaic-card:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.05) brightness(1); }
.mosaic-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); z-index: 1; transition: opacity 0.5s; pointer-events: none;
}

.mosaic-pill {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; 
  width: calc(100% - 48px); max-width: 400px; padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 999px;
  color: #ffffff; font-size: 15px; font-weight: 500; letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mosaic-card:hover .mosaic-pill {
  background: linear-gradient(135deg, rgba(101, 69, 255, 0.6) 0%, rgba(251, 0, 255, 0.2) 100%);
  border-color: rgba(0, 172, 255, 0.5); backdrop-filter: blur(16px); transform: translate(-50%, -6px); box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cursor-pill {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999;
  opacity: 0; visibility: hidden;
  background-color: rgba(18, 18, 18, 0.3); border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 12px 32px; border-radius: 999px;
  color: #ffffff; font-size: 14px; font-weight: 600; letter-spacing: 0.8px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cursor-pill.active { opacity: 1; visibility: visible; }

.arrow-wrapper { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 24px;  height: 24px; overflow: hidden; }
.arrow-wrapper svg { position: absolute; width: 100%; height: 100%; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.arrow-main { transform: translate(0, 0); }
.arrow-hover { transform: translate(-150%, 150%); }
.portfolio-card:hover .arrow-main { transform: translate(150%, -150%); }
.portfolio-card:hover .arrow-hover { transform: translate(0, 0); }

/* =========================================
   MODAIS CINEMATOGRÁFICOS
========================================= */
.pc-modal { position: fixed; inset: 0; z-index: 999999; display: none; }
.pc-modal.is-open { display: block; }
.pc-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 8, 18, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.pc-modal__panel { position: absolute; inset: 3vh 3vw; border-radius: 24px; border: 1px solid var(--border-glass); background: rgba(7, 8, 18, 0.95); box-shadow: 0 40px 120px rgba(0,0,0,0.9); overflow: hidden; }
.pc-modal__panel::before { content:""; position:absolute; inset:-120px; background: radial-gradient(circle at 10% 20%, rgba(0,172,255,0.06), transparent 50%), radial-gradient(circle at 90% 80%, rgba(251,0,255,0.04), transparent 50%); filter: blur(40px); opacity: 1; pointer-events: none; z-index: 0; }
.pc-modal__layout { display: flex; height: 100%; position: relative; z-index: 1; }

.pc-modal__info {
  display: flex; flex-direction: column; justify-content: flex-start; flex: 0 0 340px; 
  padding: 40px; border-right: 1px solid rgba(255, 255, 255, 0.05); background: rgba(0, 0, 0, 0.15); overflow-y: auto;
}
.pc-modal__info::-webkit-scrollbar { width: 4px; }
.pc-modal__info::-webkit-scrollbar-track { background: transparent; }
.pc-modal__info::-webkit-scrollbar-thumb { background: rgba(101, 69, 255, 0.4); border-radius: 10px; }

.pc-info-content { display: flex; flex-direction: column; gap: 16px; }
.pc-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: #6545ff; margin-bottom: 6px; }
.pc-modal__title { font-size: 28px; line-height: 1.15; font-weight: 700; color: #ffffff; margin: 0; letter-spacing: -0.5px; }
.pc-modal__sub { font-size: 15px; font-weight: 400; color: rgba(255, 255, 255, 0.5); margin: 0; margin-bottom: 4px; }
.pc-text, #pcDesc { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin: 0; }
.pc-text strong, #pcDesc strong { color: #ffffff; font-weight: 600; }
#pcCta { margin-top: 32px !important; border-radius: 999px; border-color: rgba(101, 69, 255, 0.7); }

.pc-modal__gallery-wrapper { flex: 1; height: 100%; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.pc-modal__gallery-wrapper::-webkit-scrollbar { display: none; }
.pc-gallery-filmstrip { display: flex; gap: 24px; height: 100%; padding: 40px; align-items: center; width: max-content; }

.pc-shot { position: relative; height: 100%; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; cursor: zoom-in; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease; will-change: transform; }
.pc-shot img, .pc-shot video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.pc-shot:hover { transform: translateY(-8px); border-color: rgba(101, 69, 255, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.pc-shot:hover img { transform: scale(1.04); }
.pc-shot.pc-shot--video { aspect-ratio: 9 / 16; background: #000; }
.pc-video { border-radius: 16px; width: 100%; height: 100%; object-fit: cover; }

.pc-modal__close { position: absolute; top: 20px; right: 20px; font-size: 26px; z-index: 10; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.5); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(8px); }
.pc-modal__close:hover { background: var(--pc-cyan); border-color: var(--pc-cyan); color: #000; transform: rotate(90deg); }

/* LIGHTBOX (Centralizada - Patch 4) */
.pc-lightbox { position: fixed; inset: 0; z-index: 9999999; display: none; }
.pc-lightbox.is-open { display:block; }
.pc-lightbox__backdrop { position:absolute; inset:0; background: rgba(7,8,18,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pc-lightbox__panel { position: fixed; inset: 0; width: 100%; height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 16px; box-sizing: border-box; pointer-events: none; }
.pc-lightbox__img { margin: 0 auto; max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 18px; border: 1px solid rgba(101,69,255,0.3); box-shadow: 0 30px 90px rgba(0,0,0,.80); pointer-events: auto; }
.pc-lightbox__close { position:absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(101,69,255,.2); background: rgba(101,69,255,.05); color: var(--text-muted); cursor: pointer; font-size: 22px; display:grid; place-items:center; transition: .2s ease; pointer-events: auto; z-index: 10; }
.pc-lightbox__close:hover { background: rgba(101, 69, 255, .3); color: #fff; transform: rotate(90deg); }

#pcDesc { display: flex; flex-direction: column; gap: 16px;  text-align: left; }
#pcDesc p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.badge-wrapper { display: flex; justify-content: flex-start; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 20px; margin-top: 8px; }
#pcDesc .badge-wrapper:first-child, #pcDescSites .badge-wrapper:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.badge { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.15); }
#pcDescSites { display: flex; flex-direction: column; gap: 16px; text-align: left; }
#pcDescSites p { margin: 0; color: rgba(255, 255, 255, 0.85); }

/* =========================================
   MODAL SITES - DESKTOP
========================================= */
.pc-sites-modal .pc-modal__backdrop { background: rgba(7, 8, 18, 0.58); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pc-sites-modal .pc-sites-modal__panel { inset: 32px 64px; border-radius: 28px; overflow: hidden; }
.pc-sites-modal .pc-sites-modal__layout { display: grid; grid-template-columns: 340px minmax(0, 1fr); height: 100%; min-height: 0; }
.pc-sites-modal .pc-sites-modal__sidebar { padding: 32px 28px; border-right: 1px solid rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.02); overflow-y: auto; min-height: 0; }
.pc-sites-modal .pc-sites-modal__sidebar::-webkit-scrollbar { width: 6px; }
.pc-sites-modal .pc-sites-modal__sidebar::-webkit-scrollbar-thumb { background: rgba(101, 69, 255, 0.35); border-radius: 999px; }
.pc-sites-modal .pc-sites-stage { display: flex; flex-direction: column; gap: 16px; padding: 24px 28px; min-width: 0; min-height: 0; height: 100%; width: 100%; align-items: stretch; }
.pc-sites-modal .pc-sites-stage > * { width: 100%; }

.pc-sites-modal .pc-sites-stage__header { position: relative; flex-shrink: 0; width: 100%; min-height: 86px; display: flex; align-items: flex-start; justify-content: flex-start; }
.pc-sites-modal .pc-sites-stage__header > div:first-child { position: relative; z-index: 1; }
.pc-sites-modal .pc-sites-stage__eyebrow { display: inline-block; margin-bottom: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.6px; color: rgba(255, 255, 255, 0.5); font-weight: 700; }
.pc-sites-modal .pc-sites-stage__title { font-size: 26px; line-height: 1.08; letter-spacing: -0.03em; margin: 0; color: #fff; font-weight: 700; }

.pc-sites-modal .pc-sites-stage__actions { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 14px; z-index: 2; padding: 10px 14px; border-radius: 999px; background: rgba(8, 10, 24, 0.38); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 12px 36px rgba(0,0,0,0.24), inset 0 0 0 1px rgba(255,255,255,0.02); }
.pc-sites-modal .pc-sites-counter { min-width: 62px; text-align: center; font-size: 14px; font-weight: 800; color: #ffffff; letter-spacing: 0.3px; text-shadow: 0 0 16px rgba(255,255,255,0.12); }

.pc-sites-modal .pc-sites-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.pc-sites-modal .pc-sites-item { width: 100%; text-align: left; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); border-radius: 16px; padding: 16px 18px; color: #fff; cursor: pointer; transition: all 0.3s ease; }
.pc-sites-modal .pc-sites-item:hover { transform: translateY(-2px); border-color: rgba(0, 172, 255, 0.35); background: rgba(101, 69, 255, 0.08); }
.pc-sites-modal .pc-sites-item.is-active { border-color: rgba(0, 172, 255, 0.55); background: linear-gradient(135deg, rgba(101, 69, 255, 0.16), rgba(0, 172, 255, 0.08)); box-shadow: 0 0 0 1px rgba(0, 172, 255, 0.08) inset; }
.pc-sites-modal .pc-sites-item__name { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pc-sites-modal .pc-sites-item__meta { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 1px; }

.pc-sites-modal .browser-mockup--single { position: relative; flex: 1; width: 100% !important; max-width: none !important; min-width: 0; min-height: 0; height: auto; margin: 0; border-radius: 20px; overflow: hidden; background: #070812; border: 1px solid rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 60px rgba(0,0,0,0.22); }
.pc-sites-modal .browser-mockup--clean .browser-header, .pc-sites-modal .browser-mockup--clean .browser-dots, .pc-sites-modal .browser-mockup--clean .browser-url, .pc-sites-modal .browser-mockup--clean .pc-sites-open-live { display: none !important; }
.pc-sites-modal .browser-body--single { width: 100%; height: 100%; overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; scrollbar-color: rgba(101, 69, 255, 0.55) transparent; padding-bottom: 96px; }
.pc-sites-modal .browser-body--single::-webkit-scrollbar { width: 8px; }
.pc-sites-modal .browser-body--single::-webkit-scrollbar-thumb { background: rgba(101, 69, 255, 0.55); border-radius: 999px; }
.pc-sites-modal .browser-body--single .scroll-img { display: block; width: 100%; height: auto; }

.pc-sites-modal .pc-sites-nav { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); background: linear-gradient(135deg, rgba(19, 22, 44, 0.95), rgba(8, 10, 24, 0.88)); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #ffffff; font-size: 18px; font-weight: 800; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 18px rgba(101, 69, 255, 0.12); }
.pc-sites-modal .pc-sites-nav:hover:not(:disabled) { background: linear-gradient(135deg, rgba(101, 69, 255, 0.75), rgba(0, 172, 255, 0.32)); border-color: rgba(0, 172, 255, 0.5); transform: translateY(-1px) scale(1.04); box-shadow: 0 14px 34px rgba(0,0,0,0.32), 0 0 24px rgba(0, 172, 255, 0.16); }
.pc-sites-modal .pc-sites-nav:disabled { opacity: 0.26; cursor: not-allowed; transform: none; }
.pc-sites-modal .pc-sites-nav--overlay, .pc-sites-modal .pc-sites-nav--left, .pc-sites-modal .pc-sites-nav--right { display: none !important; }

.pc-sites-modal .pc-sites-floating-cta { position: absolute; left: 50%; transform: translateX(-50%); bottom: 22px; z-index: 6; display: inline-flex; align-items: center; justify-content: center; min-width: 190px; padding: 14px 24px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: 0.2px; color: #ffffff; background: linear-gradient(135deg, rgba(101, 69, 255, 0.92), rgba(0, 172, 255, 0.28)); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 16px 38px rgba(0,0,0,0.34), 0 0 24px rgba(101, 69, 255, 0.20); transition: all 0.28s ease; }
.pc-sites-modal .pc-sites-floating-cta:hover { color: #fff; transform: translateX(-50%) translateY(-2px) scale(1.02); background: linear-gradient(135deg, rgba(101, 69, 255, 1), rgba(0, 172, 255, 0.36)); border-color: rgba(0, 172, 255, 0.42); box-shadow: 0 18px 42px rgba(0,0,0,0.36), 0 0 30px rgba(0, 172, 255, 0.18); }

.pc-sites-modal .pc-modal__title { font-size: 28px; line-height: 1.08; margin: 0 0 6px; font-weight: 800; }
.pc-sites-modal .pc-modal__sub { margin: 0 0 18px; color: rgba(255,255,255,0.58); }
.pc-sites-modal .pc-text { color: rgba(255,255,255,0.86); }

/* EM BREVE */
.modal-panel--em-breve { max-width: 500px; height: 200px !important; min-height: 500px; margin: auto; border-radius: 24px; display: flex; flex-direction: column; }
.layout--em-breve { display: flex; justify-content: center; align-items: center; flex: 1; }
.info--em-breve { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px; border-right: none; background: transparent; }
.em-breve-icon { color: rgba(101, 69, 255, 1); width: 48px; height: 48px; margin-bottom: 24px; }
.em-breve-icon svg { width: 100%; height: 100%; }
.info--em-breve .pc-modal__title { font-size: 32px; margin-bottom: 16px; }
.info--em-breve .pc-text { color: rgba(255, 255, 255, 0.7); max-width: 420px; margin: 0 auto 32px auto; line-height: 1.6; }


/* =========================================
   SESSÃO CRIAÇÃO DE SITES - LUXO E AUTORIDADE
========================================= */
.sites-luxe-wrapper { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 5rem; align-items: center; }
.sites-luxe-content { display: flex; flex-direction: column; align-items: flex-start; }
.sites-luxe-title { font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -0.04em; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.sites-luxe-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; margin-bottom: 40px; max-width: 95%; }

.sites-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
.luxe-benefit-card { background: rgba(15, 15, 15, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 24px; transition: all 0.4s ease; display: flex; flex-direction: column; }
.luxe-benefit-card:hover { background: rgba(20, 20, 20, 0.8); border-color: rgba(101, 69, 255, 0.3); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.lb-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lb-header svg { width: 22px; height: 22px; color: var(--pc-ice); transition: color 0.3s ease; }
.luxe-benefit-card:hover .lb-header svg { color: var(--pc-cyan); }
.lb-header h4 { font-size: 1.1rem; font-weight: 500; color: #fff; margin: 0; letter-spacing: -0.01em; }
.luxe-benefit-card p { font-size: 0.9rem; color: rgba(180, 189, 225, 0.6); line-height: 1.5; margin: 0; font-weight: 300; }

.sites-luxe-visual { position: relative; width: 100%; padding-right: 20px; }
.luxe-prism-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(101, 69, 255, 0.35) 0%, rgba(0, 172, 255, 0.15) 50%, transparent 70%); filter: blur(60px); z-index: 0; pointer-events: none; animation: pulseGlow 6s infinite alternate ease-in-out; }
@keyframes pulseGlow { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; } 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; } }

.luxe-img-wrapper { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; z-index: 1; border: 1px solid rgba(255,255,255,0.05); background: var(--bg-dark); }
.luxe-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(90%) contrast(1.15) brightness(0.8); transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease; will-change: transform, filter; }
.sites-luxe-visual:hover .luxe-img { transform: scale(1.03); filter: grayscale(0%) contrast(1.05) brightness(1.02); }

.clean-projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.clean-project-card { display: flex; flex-direction: column; text-decoration: none; background: rgba(255, 255, 255, 0.01); border: 1px solid transparent; border-radius: 16px; padding: 12px; transition: all 0.4s ease; }
.clean-project-card:hover { background: rgba(101, 69, 255, 0.03); border-color: rgba(255, 255, 255, 0.05); }
.cp-image { width: 100%; aspect-ratio: 16 / 10; border-radius: 10px; overflow: hidden; background: #000; margin-bottom: 20px; position: relative; }
.cp-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(100%) brightness(0.8); transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease; }
.clean-project-card:hover .cp-image img { transform: translateY(-5%) scale(1.02); filter: grayscale(0%) brightness(1); }
.placeholder-img { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.02); border: 1px dashed rgba(255, 255, 255, 0.1); }
.placeholder-img span { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.5px; }

.cp-info { display: flex; flex-direction: column; padding: 0 10px 10px; }
.cp-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.cp-title { font-size: 1.4rem; color: #fff; font-weight: 500; margin: 0 0 16px 0; letter-spacing: -0.02em; }
.cp-link { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; transition: color 0.3s ease; margin-top: auto; }
.cp-link span { transition: transform 0.3s ease; }
.clean-project-card:hover .cp-link { color: var(--pc-cyan); }
.clean-project-card:hover .cp-link span { transform: translate(3px, -3px); }

.sites-luxe-wrapper--reversed { grid-template-columns: 0.85fr 1.15fr; }
.visual-left { padding-right: 0; padding-left: 20px; }


/* =========================================
   SEÇÃO SOBRE E CARDS EDITORIAIS
========================================= */
.section--editorial { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255, 0.03); border-bottom: 1px solid rgba(255,255,255, 0.03); padding: 100px 0; }
.editorial__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 60px; }
.editorial__head--left { text-align: left; align-items: flex-start; margin-bottom: 30px; }
.h2-editorial { font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -0.5px; margin: 0; }
.h3-editorial { font-size: 26px; font-weight: 900; letter-spacing: -0.2px; margin: 0; }
.sub-editorial { color: var(--text-muted); font-size: 17px; line-height: 1.7; max-width: 680px; margin: 0; }

.editorial-grid { display: flex; justify-content: center; align-items: center; gap: 24px; margin-bottom: 80px; }
.editorial-card { width: calc((100% - 48px) / 3); background: rgba(10, 10, 10, 0.4); border: 1px solid var(--border-glass); border-radius: 4px; padding: 40px 30px; transition: transform 0.4s ease, border-color 0.4s ease; backdrop-filter: blur(10px); }
.editorial-card--featured { background: linear-gradient(180deg, rgba(101, 69, 255, 0.05) 0%, rgba(10,10,10, 0.8) 100%); border-color: rgba(101, 69, 255, 0.3); padding: 60px 30px;  }
.editorial-card:hover { transform: translateY(-6px); border-color: var(--pc-cyan); }
.editorial-card h3 { font-size: 20px; margin: 0 0 16px; }
.editorial-card p { color: var(--text-muted); line-height: 1.6; margin: 0 0 20px; font-size: 15px; }

.editorial-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255, 0.05); padding-top: 20px; }
.editorial-list li { color: rgba(234,240,255, 0.85); font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.editorial-list li::before { content: "—"; color: var(--pc-muted); }

.founders-section { margin-top: 80px; border-top: 1px solid rgba(255,255,255, 0.03); padding-top: 60px; }
.contact__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.contact__cards .miniCard { position: relative; overflow: visible; z-index: 1; background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border-glass); border-radius: 12px; padding: 24px; text-align: left; transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease; }
.contact__cards .miniCard:hover { transform: translateY(-4px); border-color: rgba(101, 69, 255, 0.4); background: rgba(101, 69, 255, 0.05); }
.contact__cards .miniCard strong { display: block; font-size: 18px; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.contact__cards .miniCard > .muted { display: block; font-size: 13px; color: rgba(234, 240, 255, 0.6); margin-bottom: 16px; }
.contact__cards .miniCard .mini.muted { display: block; font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.contact__cards .miniCard .spacer { height: 0; display: none; }

.miniCard__mascot{ position: absolute; left: auto; right: 18px; top: -125px; width: 100px; pointer-events: none; opacity: 0; transform: translateY(40px) scale(.9); transition: opacity .25s ease, transform .45s cubic-bezier(.2,.9,.2,1); z-index: -1; }
.miniCard__mascot img{ width: 100%; height: auto; display: block; }
.miniCard:hover .miniCard__mascot{ opacity: 1; transform: translateY(0) scale(1); animation: mascotPop 700ms cubic-bezier(.34,1.56,.64,1); }
@keyframes mascotPop { 0% { transform: translateY(30px) scale(.7); opacity: 0; } 40% { transform: translateY(-10px) scale(1.15); opacity: 1; } 60% { transform: translateY(4px) scale(.95); } 80% { transform: translateY(-3px) scale(1.05); } 100% { transform: translateY(0) scale(1); } }

/* =========================================
   NOVA ESTRUTURA DE SERVIÇOS (PC TIER CARDS)
========================================= */
.pc-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: stretch; }
.pc-tier-card { background: rgba(10, 10, 14, 0.6); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 20px; padding: 40px 32px; display: flex; flex-direction: column; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; }
.pc-tier-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); }
.pc-tier-card--featured { background: linear-gradient(180deg, rgba(101, 69, 255, 0.08) 0%, rgba(10, 10, 14, 0.9) 100%); border-color: rgba(101, 69, 255, 0.4); box-shadow: 0 0 40px rgba(101, 69, 255, 0.1); }
.pc-tier-card--featured:hover { border-color: var(--pc-cyan); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 172, 255, 0.15); }
.pc-tier-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.pc-tier-title { font-size: 24px; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.5px; }

.pc-tier-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.1); white-space: nowrap; }
.pc-tier-tag--hot { background: linear-gradient(135deg, var(--pc-indigo) 0%, var(--pc-magenta) 100%); color: #fff; border: none; box-shadow: 0 4px 15px rgba(251, 0, 255, 0.3); }
.pc-tier-sub{ display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.pc-tier-icon { width: 20px; height: 20px; flex: 0 0 20px; display: block; transition: transform .35s cubic-bezier(.25,1,.5,1), filter .35s ease; }
.pc-tier-card:hover .pc-tier-icon { transform: rotate(-8deg) scale(1.15); filter: drop-shadow(0 4px 12px rgba(34,211,238,.35)); }

.pc-tier-sub--icon { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; letter-spacing: .3px; }
.pc-tier-sub__icon { width: 18px; height: 18px; flex-shrink: 0; display: block; transition: transform .3s ease; }
.pc-tier-card:hover .pc-tier-sub__icon { transform: rotate(-8deg) scale(1.15); filter: drop-shadow(0 4px 12px rgba(34,211,238,.35)); }

.pc-tier-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; margin-bottom: 32px; margin-top: 12px; min-height: 90px; }

.pc-tier-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.pc-price-box { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 16px; padding: 20px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.3s ease; }
.pc-price-box:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.15); }
.pc-price-box--highlight { background: rgba(101, 69, 255, 0.08); border-color: rgba(101, 69, 255, 0.3); }
.pc-price-box--highlight:hover { background: rgba(101, 69, 255, 0.15); border-color: var(--pc-cyan); }
.pc-price-val { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.pc-price-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }

.pc-tier-list { list-style: none; padding: 0; margin: 0 0 32px 0; flex-grow: 1; }
.pc-tier-list li { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-weight: 300; }
.pc-tier-list li::before { content: ""; display: block; width: 6px; height: 6px; margin-top: 7px; background: var(--text-muted); border-radius: 50%; flex-shrink: 0; }
.pc-tier-card--featured .pc-tier-list li::before { background: var(--pc-cyan); box-shadow: 0 0 8px var(--pc-cyan); }
.pc-tier-list li.off { opacity: 0.3; text-decoration: line-through; }
.pc-tier-footer { display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); font-weight: 400; }
.pc-tier-footer span { display: flex; align-items: center; gap: 6px; }
.pc-tier-footer span::before { content: ""; display: block; width: 4px; height: 4px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; }

.brand-list{ list-style:none; padding:0; margin: 0 0 22px; display:grid; gap: 10px; }
.brand-list li{ position: relative; padding-left: 26px; font-size: 16px; font-weight: 500; color: rgba(234,240,255,.85); }
.brand-list li::before{ content:""; position:absolute; left:0; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 6px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.brand-list li.on::after{ content:""; position:absolute; left: 5px; top: 50%; width: 6px; height: 10px; border-right: 2px solid rgba(34,211,238,.85); border-bottom: 2px solid rgba(34,211,238,.85); transform: translateY(-55%) rotate(45deg); }
.brand-list li.off{ opacity: .45; }


/* =========================================
   DEPOIMENTOS - INFINITE MARQUEE
========================================= */
.relative { position: relative; }
.carousel-wrapper { position: relative; width: 100%; overflow: hidden; padding: 10px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.carousel-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.testimonial-card { width: 400px; flex-shrink: 0; background: rgba(10, 10, 10, 0.4); border: 1px solid var(--border-glass); border-radius: 4px; padding: 40px 32px; display: flex; flex-direction: column; transition: border-color 0.4s ease; backdrop-filter: blur(10px); }
.testimonial-card:hover { border-color: rgba(101, 69, 255, 0.4); }
.tc__name { display: flex; align-items: center; gap: 6px; font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 6px 0; letter-spacing: -0.5px; }
.tc__verified-badge { width: 18px; height: 18px; color: #0095f6; flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(0, 149, 246, 0.65)); transition: filter 0.3s ease; }
.tc__name:hover .tc__verified-badge { filter: drop-shadow(0 0 8px rgba(0, 149, 246, 0.9)); }
.tc__role { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; display: block; }
.tc__divider { height: 1px; background: rgba(255, 255, 255, 0.05); margin-bottom: 24px; width: 100%; }
.tc__quote { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0 0 32px 0; flex-grow: 1;  }
.tc__rating { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tc__score { font-size: 18px; color: var(--pc-ice); font-weight: 600; }
.tc__stars { color: var(--pc-cyan); font-size: 16px; letter-spacing: 2px; }

/* =========================================
   CARROSSEL DE CHIPS (MARQUEE)
========================================= */
.chips-marquee { position: relative; width: 100%; overflow: hidden; padding: 50px 0; display: flex; flex-direction: column; gap: 16px; background: rgba(5, 5, 5, 0.45); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px); border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); z-index: 10; }
.chips-track { display: flex; gap: 16px; width: max-content; }
.chip-item { display: flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 999px; background: rgba(255, 255, 255, 0.01); border: 1px solid rgba(101, 69, 255, 0.2); color: var(--text-muted); font-size: 14px; font-weight: 600; white-space: nowrap; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.chip-item:hover { background: rgba(101, 69, 255, 0.08); border-color: var(--pc-cyan); transform: translateY(-2px); color: #fff; }
.chip-item svg { width: 16px; height: 16px; opacity: 0.8; color: var(--pc-indigo); transition: color 0.3s ease; }
.chip-item:hover svg { color: var(--pc-cyan); }


/* =========================================
   FAQ
========================================= */
.faq-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.faq-left { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-title { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin: 0; color: #ffffff; }
.faq-subtitle { color: #a0a0a0; font-size: 1.2rem; line-height: 1.5; max-width: 400px; }
.faq-image-wrapper { margin-top: 1rem; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-glass); }
.faq-image { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 1 / 1; filter: grayscale(100%) contrast(1.1) brightness(0.85); transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease; }
.faq-image-wrapper:hover .faq-image { transform: scale(1.05); filter: grayscale(30%) contrast(1.1) brightness(1); }

.faq-right { display: flex; flex-direction: column; gap: 1.2rem; }
.faq-intro-box { background-color: #0d0d0d; padding: 1.8rem; border-radius: 16px; color: #a0a0a0; font-size: 1rem; line-height: 1.5; }
.faq-container { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background-color: #0d0d0d;  border-radius: 16px; padding: 1.5rem 1.8rem; cursor: pointer; transition: background-color 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.faq-item:hover { background-color: #1a1a1a;  transform: translateY(-3px); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 500; color: #ffffff; list-style: none; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.icon-plus { font-size: 1.5rem; font-weight: 300; color: #ffffff; transition: transform 0.3s ease; }
.faq-item[open] summary .icon-plus { transform: rotate(45deg); }
.faq-answer-wrapper { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; }
.faq-answer { margin: 0; padding-top: 1rem; color: #a0a0a0; line-height: 1.6; font-size: 1rem; }

.faq-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }
.faq-tag { background-color: #121212; color: #a0a0a0; padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; border: 1px solid #222; transition: all 0.3s ease; }
.faq-tag:hover { background-color: #1a1a1a; color: #ffffff; border-color: #333; }


/* =========================================
   CONTATO (FOOTER/LUXE)
========================================= */
.luxe-footer { padding: 340px 0 80px; background: transparent; position: relative; z-index: 5; }
.footer-container { display: flex; flex-direction: column; align-items: center; }
.footer-cta-section { text-align: center; margin-bottom: 80px; }

.status-badge-footer { display: inline-flex; align-items: center; gap: 12px; background: rgba(101, 69, 255, 0.05); border: 1px solid rgba(101, 69, 255, 0.2); padding: 10px 20px; border-radius: 999px; margin-bottom: 40px; backdrop-filter: blur(10px); }
.status-dot-pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 12px rgba(74,222,128,0.5); animation: pulseStatus 2s infinite; }
@keyframes pulseStatus { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.footer-big-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 32px; color: #fff; }
.footer-subtitle { font-size: 1.3rem; color: var(--text-muted); font-weight: 300; margin-bottom: 50px; }

.footer-actions-group { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.footer-main-cta { display: inline-flex !important; width: auto !important; }

.footer-pure-socials { display: flex; justify-content: center; align-items: center; gap: 64px; margin-top: 10px; }
.footer-pure-icon { display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255, 255, 255, 0.25); transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1); position: relative; }
.footer-pure-icon svg { width: 38px; height: 38px; transition: all 0.5s ease; }
.footer-pure-icon:not(:last-child)::after { content: ""; position: absolute; right: -32px; top: 50%; transform: translateY(-50%); width: 1px; height: 24px; background-color: rgba(255, 255, 255, 0.2); }

.icon-instagram:hover { color: #E1306C; }
.icon-instagram:hover svg { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 15px rgba(225, 48, 108, 0.5)); }
.icon-gmail:hover { color: #008cff; }
.icon-gmail:hover svg { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 15px rgba(0, 79, 255, 1)); }
.icon-whatsapp:hover { color: #25D366; }
.icon-whatsapp:hover svg { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.5)); }

.sub-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; padding: 40px 5% 20px; font-size: 13px; color: #A0A0A0; }
.sub-footer span:nth-child(1) { text-align: left; }
.sub-footer span:nth-child(2) { text-align: center; }
.sub-footer span:nth-child(3) { text-align: right; }


/* =========================================
   SESSÃO COMO TRABALHAMOS (ESTILO PRISMCUT LUXE)
========================================= */
.luxe-process-section { background-color: var(--bg-dark) !important; position: relative; z-index: 1; }
.luxe-process-container { display: grid; grid-template-columns: 0.9fr 1.1fr;  gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
/* Coluna Esquerda: Imagem Fixa (Sticky) */
.luxe-process-image-wrapper {
  position: sticky;
  top: 120px; 
  height: calc(100vh - 160px);
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}
.luxe-process-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1) brightness(0.85); transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease; }
.luxe-process-image-wrapper:hover .luxe-process-image { transform: scale(1.05); filter: grayscale(30%) contrast(1.1) brightness(1); }
.luxe-process-content { display: flex; flex-direction: column; gap: 3rem; }
.luxe-process-header { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.luxe-process-tag { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(101, 69, 255, 0.08); border: 1px solid rgba(101, 69, 255, 0.3); color: var(--pc-ice); font-weight: 500; font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase; backdrop-filter: blur(6px); overflow: hidden; }
.luxe-process-tag svg { color: var(--pc-cyan); }
.luxe-process-title { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1; color: var(--text-main); margin: 0; letter-spacing: -0.04em; font-weight: 400; }
.luxe-process-subtitle { color: var(--text-muted); font-size: 1.15rem; line-height: 1.6; max-width: 450px; margin: 0; font-weight: 300; }
.luxe-process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.luxe-step-card { position: relative; background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: 20px; padding: 3rem 2.5rem; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); overflow: hidden; z-index: 1; }
.luxe-step-card:hover { transform: translateY(-4px); border-color: rgba(0, 172, 255, 0.3); background: linear-gradient(180deg, rgba(101, 69, 255, 0.04), transparent); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 172, 255, 0.05); }
.luxe-step-number { position: absolute; top: 24px; right: 30px; font-size: 64px; font-weight: 900; line-height: 1; letter-spacing: -2px; color: rgba(180, 189, 225, 0.05); z-index: 0; pointer-events: none; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.luxe-step-card:hover .luxe-step-number { color: transparent; background: linear-gradient(135deg, var(--pc-cyan) 0%, var(--pc-indigo) 100%); -webkit-background-clip: text; background-clip: text; transform: scale(1.1) translateY(-4px) rotate(2deg); filter: drop-shadow(0 8px 16px rgba(0, 172, 255, 0.35)); }
.luxe-step-icon, .luxe-step-title, .luxe-step-desc { position: relative; z-index: 2; }
.luxe-step-icon { color: var(--pc-ice); margin-bottom: 1.5rem; transition: color 0.4s ease, transform 0.4s ease; }
.luxe-step-card:hover .luxe-step-icon { color: var(--pc-cyan); transform: scale(1.05) translateX(4px); }
.luxe-step-title { color: var(--text-main); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.luxe-step-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin: 0; }

.bottom-blur-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: 180px; z-index: 90; pointer-events: none; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: transparent; border: none; -webkit-mask-image: linear-gradient(to top, black 0%, transparent 80%); mask-image: linear-gradient(to top, black 0%, transparent 80%); }

/* =========================================
   RESPONSIVIDADE GERAL
========================================= */
@media (max-width: 1200px) {
  .pc-sites-modal .pc-sites-modal__panel { inset: 24px 32px; }
}

@media (max-width: 1024px) {
  .site-header__inner { display: flex; justify-content: space-between; padding: 0 1.5rem; }
  .nav { display: none; }
  .sites-luxe-wrapper { gap: 3rem; }
}

@media (max-width: 980px) {
  /* Header */
  .site-header { padding: 1rem 1.2rem; }
  .brand__name { font-size: 1.1rem; }
  .btn-header { padding: 8px 14px; font-size: 0.75rem; }

  /* Drag Cards ocultos */
  .drag-section { display: none !important; }

  /* Mosaico */
  .portfolio-mosaic { flex-wrap: wrap; margin-top: 40px; gap: 24px; }
  .mosaic-col.col-center { width: 100%; order: -1; }
  .mosaic-col.col-side { width: calc((100% - 24px) / 2); margin-top: 24px; }

  /* Modais (Base Mobile) */
  .pc-modal__layout { display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }
  .pc-modal__gallery-wrapper { order: 1; flex: 0 0 45vh; min-height: 45vh; padding: 0; background: var(--bg-dark); display: flex; align-items: center; }
  .pc-gallery-filmstrip { height: 100%; padding: 32px 20px; display: flex; align-items: center; }
  
  .pc-shot { height: 100%; width: 80vw; max-width: 340px; aspect-ratio: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); flex-shrink: 0; }
  .pc-shot img, .pc-shot video { border-radius: 16px; object-fit: cover; }
  
  .pc-modal__info { order: 2; flex: 1 1 auto; max-height: 55vh; overflow-y: auto; padding: 24px 20px 40px 20px; border-right: none; border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .pc-modal__close { top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(7, 8, 18, 0.85); border: 1px solid rgba(255, 255, 255, 0.15); z-index: 9999; }
  .pc-modal__panel { inset: 0; border-radius: 0; border: none; }
  .pc-shot { aspect-ratio: 16 / 9; width: 85vw; height: auto; }

  /* Modal de Sites (Mobile Fix) */
  .pc-sites-modal .pc-sites-modal__layout { display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }
  .pc-sites-modal .pc-sites-stage { order: 1; flex: 0 0 60vh; min-height: 60vh; padding: 16px 16px 8px 16px; background: var(--bg-dark); display: flex; flex-direction: column; gap: 8px; }
  .pc-sites-modal .pc-sites-stage__header { flex-shrink: 0; align-items: flex-start; text-align: left; min-height: auto; flex-direction: column; gap: 14px; }
  .pc-sites-modal .pc-sites-stage__eyebrow { font-size: 9px; letter-spacing: 1.2px; }
  .pc-sites-modal .pc-sites-stage__title { font-size: 18px; line-height: 1.15; }
  .pc-sites-modal .pc-sites-stage__actions { position: static; transform: none; align-self: center; padding: 10px 12px; }
  
  
  
  
  
  
  
  
  
  
  
  /* =========================================
   PATCH DEFINITIVO MOBILE PRISMCUT (COLE NO FIM DO ARQUIVO)
   Garante 100% de fidelidade ao código original para telas menores.
========================================= */

@media (max-width: 1024px) {
  .site-header__inner { display: flex; justify-content: space-between; padding: 0 1.5rem; }
  .nav { display: none; }
  .sites-luxe-wrapper { gap: 3rem; }
}

@media (max-width: 980px) {
  /* HEADER */
  .site-header { padding: 1rem 1.2rem; }
  .brand__name { font-size: 1.1rem; }
  .btn-header { padding: 8px 14px; font-size: 0.75rem; }

  /* DRAG SECTION (Oculta no mobile) */
  .drag-section { display: none !important; }

  /* PORTFOLIO & MOSAICO */
  .portfolio-mosaic { flex-wrap: wrap; margin-top: 40px; gap: 24px; }
  .mosaic-col.col-center { width: 100%; order: -1; }
  .mosaic-col.col-side { width: calc((100% - 24px) / 2); margin-top: 24px; }

  /* EDITORIAL & CONTATO */
  .editorial-grid { flex-wrap: wrap; }
  .editorial-card, .editorial-card--featured { width: 100%; padding: 30px 24px; }
  .contact__cards { grid-template-columns: 1fr; gap: 16px; }
  .pc-contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .pc-contact__quick { grid-template-columns: 1fr; }
  .pc-form { padding: 2.2rem 1.8rem; }

  /* COMO TRABALHAMOS (Remove o sticky e ajusta grade) */
  .luxe-process-container { grid-template-columns: 1fr; gap: 3rem; }
  .luxe-process-image-wrapper { position: relative; top: 0; height: 400px; min-height: auto; }
  .luxe-step-number { font-size: 120px; }

  /* DEPOIMENTOS */
  .testimonial-card { width: 340px; padding: 30px 24px; }
  .carousel-wrapper { -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }

  /* MODAL GALERIA PADRÃO */
  .pc-modal__panel { inset: 0; border-radius: 0; border: none; }
  .pc-modal__layout { display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }
  .pc-modal__gallery-wrapper { order: 1 !important; flex: 0 0 45vh !important; min-height: 45vh !important; padding: 0 !important; background: var(--bg-dark) !important; display: flex; align-items: center; }
  .pc-gallery-filmstrip { height: 100% !important; padding: 32px 20px !important; display: flex; align-items: center; gap: 16px; }
  .pc-shot { height: 100% !important; width: 80vw !important; max-width: 340px !important; aspect-ratio: auto !important; border-radius: 16px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important; flex-shrink: 0; }
  .pc-shot img, .pc-shot video { border-radius: 16px !important; object-fit: cover !important; }
  .pc-modal__info { order: 2 !important; flex: 1 1 auto !important; max-height: 55vh !important; overflow-y: auto !important; padding: 24px 20px 40px 20px !important; border-right: none !important; border-top: 1px solid rgba(255, 255, 255, 0.05) !important; border-bottom: none; }
  .pc-modal__close { top: 12px !important; right: 12px !important; width: 36px !important; height: 36px !important; background: rgba(7, 8, 18, 0.85) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; z-index: 9999 !important; }

  /* MODAL SITES (UI/UX) */
  .pc-sites-modal .pc-sites-modal__panel { inset: 16px; border-radius: 22px; }
  .pc-sites-modal .pc-sites-modal__layout { display: flex !important; flex-direction: column !important; height: 100dvh !important; overflow: hidden !important; }
  .pc-sites-modal .pc-sites-stage { order: 1 !important; flex: 0 0 60vh !important; min-height: 60vh !important; padding: 16px 16px 8px 16px !important; background: var(--bg-dark) !important; display: flex !important; flex-direction: column !important; gap: 8px !important; }
  .pc-sites-modal .pc-sites-stage__header { flex-shrink: 0 !important; align-items: center !important; text-align: center !important; min-height: auto; display: flex; flex-direction: column; gap: 14px; }
  .pc-sites-modal .pc-sites-stage__eyebrow { font-size: 9px !important; letter-spacing: 1.2px !important; }
  .pc-sites-modal .pc-sites-stage__title { font-size: 18px !important; line-height: 1.15 !important; }
  .pc-sites-modal .browser-mockup--single { flex: 1 1 auto !important; width: 85vw !important; max-width: 380px !important; min-height: 0 !important; margin: 0 auto !important; border-radius: 12px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important; }
  .pc-sites-modal .pc-sites-stage__actions { position: static; transform: none; align-self: center; padding: 10px 12px; }
  .pc-sites-modal .pc-sites-floating-cta { bottom: 16px; min-width: 140px !important; padding: 8px 16px !important; font-size: 11px !important; letter-spacing: 0.1px !important; box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important; }
  .pc-sites-modal .pc-sites-modal__sidebar { order: 2 !important; flex: 1 1 auto !important; max-height: 40vh !important; overflow-y: auto !important; padding: 20px 16px 60px 16px !important; border-bottom: none !important; border-top: 1px solid rgba(255, 255, 255, 0.05) !important; border-right: none; }
  
  /* MOCKUP VIEWER PADRÃO (Para os outros modais de web se houver) */
  .pc-modal__web-showcase { padding: 24px 16px; }
  .browser-mockup { height: 65vh; }
  .browser-header { height: 36px; }
}

@media (max-width: 900px) {
  /* SITES LUXE WRAPPER (Seção de criação de sites principal) */
  .sites-luxe-wrapper { grid-template-columns: 1fr; }
  .sites-luxe-content { align-items: center; text-align: center; }
  .sites-luxe-desc { max-width: 100%; }
  .sites-benefits-grid { text-align: left; }
  .cta-row { justify-content: center !important; }
  .sites-luxe-visual { padding-right: 0; max-width: 500px; margin: 0 auto; }
  .sites-luxe-wrapper--reversed { grid-template-columns: 1fr; }
  .visual-left { padding-left: 0; max-width: 500px; margin: 0 auto; order: -1; }
  .badge-left { left: auto; right: 20px; }
}

@media (max-width: 850px) {
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* GERAL & TIPOGRAFIA HERO */
  .section { padding: 80px 0; }
  .hero h1 { font-size: 3.2rem; }
  .big-footer-title { font-size: 2.5rem; }
  .cta-row { flex-direction: column; width: 100%; }
  .btn--primary, .btn--ghost { width: 100%; }
  .form-group.two-col { grid-template-columns: 1fr; }
  .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
  
  /* CURSOR (Desativa o cursor customizado em touch/mobile) */
  .custom-cursor { display: none; } 
  body, a, button, input, select, textarea, details, summary { cursor: auto !important; }

  /* DEPOIMENTOS (Aperta mais os cards) */
  .testimonial-card { width: 240px !important; padding: 16px 14px !important; }
  .tc__name { font-size: 16px !important; }
  .tc__quote { font-size: 12px !important; line-height: 1.5 !important; margin-bottom: 12px !important; }
  .tc__role { font-size: 10px !important; margin-bottom: 12px !important; }
  .tc__score { font-size: 14px !important; }
  .tc__stars { font-size: 12px !important; }

  /* FOOTER INFERIOR */
  .sub-footer { display: flex; flex-direction: column; gap: 15px; }
  .sub-footer span { text-align: center !important; }
}

@media (max-width: 700px) {
  /* MODAL SITES (Ajuste fino de setas e tipografia) */
  .pc-sites-modal .pc-sites-nav { width: 44px; height: 44px; font-size: 16px; }
  .pc-sites-modal .pc-sites-counter { min-width: 56px; font-size: 13px; }
  .pc-sites-modal .pc-sites-stage__title { font-size: 22px; }
  .pc-sites-modal .pc-modal__title { font-size: 24px; }
}

@media (max-width: 600px) {
  /* PORTFOLIO & SITES (Mosaico em 1 coluna) */
  #portfolio .container { width: 90%; padding: 0; }
  .portfolio-mosaic { flex-direction: column; margin-top: 20px; gap: 16px; }
  .mosaic-col.col-side, .mosaic-col.col-center { width: 100%; margin-top: 0; gap: 16px; }
  .sites-benefits-grid { grid-template-columns: 1fr; }
  .clean-projects-grid { grid-template-columns: 1fr; }
  
  /* CHIPS & FORMS */
  .chip-item { padding: 10px 18px; font-size: 13px; }
  .chips-marquee { -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
  .pc-form__grid { grid-template-columns: 1fr; }
  
  /* FOOTER REDES SOCIAIS */
  .footer-pure-socials { gap: 30px; }
  .footer-pure-icon svg { width: 28px; height: 28px; }
  .footer-pure-icon:not(:last-child)::after { right: -15px; }
}