/* ══════════════════════════════════════════
   COMPONENTS — Alarion
══════════════════════════════════════════ */

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 40px 80px;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  max-width: 960px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-dot {
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.2; transform:scale(0.5); }
}
.eyebrow-txt {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(217,164,65,0.55);
}
.hero-h1 {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: rgba(255,255,255,0.92);
  min-height: 2.3em;
}
.hero-h1 .line-1 { display: block; white-space: nowrap; }
.hero-h1 .line-2 { display: block; white-space: nowrap; }
.hero-h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(135deg, #f5cc6a 0%, #d9a441 45%, #b8832a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cursor-blink {
  display: inline-block; color: var(--gold); font-weight: 300;
  animation: blink 0.9s step-end infinite; margin-left: 1px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.72; max-width: 480px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1),
              transform 1s cubic-bezier(0.22,1,0.36,1);
}
.hero-btns {
  display: flex; gap: 14px; align-items: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1) 0.2s,
              transform 1s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.hero-stats {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0;
  z-index: 2;
}
.hstat {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 0 28px;
  opacity: 0; animation: fadeUp 0.7s ease forwards;
}
.hstat:nth-child(1) { animation-delay: 2.8s; }
.hstat:nth-child(3) { animation-delay: 3.1s; }
.hstat:nth-child(5) { animation-delay: 3.4s; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}
.hstat-num {
  font-size: 22px; font-weight: 300;
  color: rgba(217,164,65,0.88); letter-spacing: -0.02em;
}
.hstat-num sup { font-size: 13px; }
.hstat-lbl {
  font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.58);
}
.hstat-sep { width:1px; height:24px; background:rgba(255,255,255,0.06); }
.scroll-ind {
  position: absolute; bottom: 36px; left: 56px;
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
@media (max-width: 900px) {
  .scroll-ind { display: none; }
  .hero-stats { gap: 0; bottom: 24px; width: 100%; justify-content: center; }
  .hstat { padding: 0 16px; }
  .hstat-lbl { font-size: 7.5px; text-align: center; }
}
.scroll-bar {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(217,164,65,0.5), transparent);
  animation: scrollA 2s ease-in-out infinite;
}
@keyframes scrollA {
  0%,100% { opacity:0.3; } 50% { opacity:0.8; }
}
.scroll-txt {
  font-size: 8px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(217,164,65,0.65);
}

/* ── PROBLEMA ── */
#problema { background: var(--bg-2); }
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.prob-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.prob-card:hover {
  border-color: rgba(217,164,65,0.18);
  background: rgba(217,164,65,0.02);
}
.prob-icon {
  width: 36px; height: 36px;
  background: rgba(217,164,65,0.07);
  border: 1px solid rgba(217,164,65,0.14);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prob-title {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.82); line-height: 1.35;
}
.prob-desc {
  font-size: 12.5px; color: rgba(255,255,255,0.6);
  line-height: 1.68;
}
.prob-cost {
  font-size: 12px; color: rgba(217,164,65,0.85);
  line-height: 1.6;
  padding-top: 12px; margin-top: -2px;
  border-top: 1px dashed var(--border);
}

/* ── SERVIÇOS ── */
#servicos { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.25s, background 0.25s;
  cursor: auto;
}
.svc-card:hover {
  border-color: rgba(217,164,65,0.25);
  background: rgba(217,164,65,0.025);
}
.svc-num {
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; color: rgba(217,164,65,0.4);
}
.svc-icon {
  width: 38px; height: 38px;
  background: rgba(217,164,65,0.06);
  border: 1px solid rgba(217,164,65,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.svc-title {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.88); line-height: 1.3;
}
.svc-desc {
  font-size: 12.5px; color: rgba(255,255,255,0.58);
  line-height: 1.68; flex: 1;
}
.svc-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(217,164,65,0.65);
  background: rgba(217,164,65,0.06);
  border: 1px solid rgba(217,164,65,0.12);
  border-radius: 3px; padding: 4px 9px;
  width: fit-content; margin-top: 4px;
}

/* ── INTEGRAÇÕES (oculto por agora) ── */
#integracoes { display: none; }
.int-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.int-label {
  font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.18);
}
.int-logos {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.int-pill {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 8px 18px;
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.28); letter-spacing: 0.04em;
  transition: all 0.2s; cursor: auto;
}
.int-pill:hover {
  color: rgba(217,164,65,0.7);
  border-color: rgba(217,164,65,0.15);
  background: rgba(217,164,65,0.04);
}

/* ── TEASER SOLUÇÕES ── */
#solucoes-teaser { padding: 56px 24px; }
.solteaser-inner {
  max-width: 1000px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid rgba(217,164,65,0.08);
  border-radius: 14px; padding: 32px 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.solteaser-copy { max-width: 52ch; }
.solteaser-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.solteaser-title { font-size: 18px; font-weight: 500; margin-bottom: 6px; color: rgba(255,255,255,0.92); }
.solteaser-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.solteaser-btn {
  flex: none; background: var(--gold); color: #1a1204;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap;
}

/* ── MINI-CASO (prova) ── */
#prova-teaser { padding: 56px 24px; }
.miniprova-inner {
  max-width: 1000px; margin: 0 auto;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 36px;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.miniprova-ba { display: flex; align-items: center; gap: 20px; flex: none; }
.miniprova-ba-col { text-align: center; }
.miniprova-ba-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.miniprova-ba-label.before { color: #c9614f; }
.miniprova-ba-label.after { color: #5fb98a; }
.miniprova-ba-num { font-size: 24px; font-weight: 600; }
.miniprova-arrow { color: var(--gold); font-size: 18px; }
.miniprova-copy { flex: 1; min-width: 260px; }
.miniprova-title { font-size: 16px; font-weight: 500; margin-bottom: 4px; color: rgba(255,255,255,0.92); }
.miniprova-desc { font-size: 13px; color: rgba(255,255,255,0.6); }
.miniprova-desc a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(217,164,65,0.4); }

/* ── PROCESSO ── */
#processo { background: var(--bg); }
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; margin-top: 56px;
}
.steps::before {
  content: '';
  position: absolute; top: 22px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.07) 20%,
    rgba(255,255,255,0.07) 80%, transparent);
}
.step { padding: 0 20px; display: flex; flex-direction: column; gap: 14px; }
.step-dot {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover .step-dot {
  border-color: rgba(217,164,65,0.35);
  background: rgba(217,164,65,0.05);
}
.step-num {
  font-size: 12px; font-weight: 300;
  color: rgba(217,164,65,0.55); letter-spacing: 0.05em;
}
.step-title {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.82);
}
.step-desc {
  font-size: 12.5px; color: rgba(255,255,255,0.7);
  line-height: 1.68;
}

/* ── MÉTRICAS ── */
#metricas { background: var(--bg-2); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-top: 56px;
}
.metric-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 28px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
}
.metric-num {
  font-size: 44px; font-weight: 300;
  color: rgba(217,164,65,0.7); letter-spacing: -0.03em; line-height: 1;
}
.metric-num sup { font-size: 20px; }
.metric-lbl {
  font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.58);
  line-height: 1.5;
}
.metric-context {
  font-size: 11px; color: rgba(255,255,255,0.52);
  margin-top: 4px; line-height: 1.5;
}

/* ── MANIFESTO ── */
#manifesto {
  background: var(--bg);
  padding: 110px 56px;
  text-align: center;
}
.manifesto-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.manifesto-quote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.6); letter-spacing: 0.01em;
}
.manifesto-quote em {
  font-style: normal; color: var(--gold); font-weight: 400;
}
.manifesto-attr {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(217,164,65,0.65);
}

/* ── CTA FINAL ── */
#cta-final {
  background: transparent;
  padding: 110px 56px;
  text-align: center;
  position: relative;
}
#cta-final::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center bottom,
    rgba(217,164,65,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 640px; margin: 0 auto;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
}
.cta-h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.02em;
}
.cta-h2 em { font-style: normal; color: var(--gold); font-weight: 400; }
.cta-sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.72; max-width: 400px;
}
.cta-btns { display: flex; gap: 14px; align-items: center; margin-top: 8px; }

/* ── CONTACTO ── */
#contacto { background: var(--bg); }
.contact-grid {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 56px;
}
.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 32px;
  display: flex; flex-direction: row;
  align-items: center; gap: 16px; cursor: auto;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  min-width: 260px; max-width: 340px;
  text-decoration: none;
}
.contact-card:hover {
  border-color: rgba(217,164,65,0.25);
  background: rgba(217,164,65,0.02);
  transform: translateY(-3px);
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(217,164,65,0.07);
  border: 1px solid rgba(217,164,65,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info {
  display: flex; flex-direction: column; gap: 3px;
  text-align: left;
}
.contact-lbl {
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.contact-val {
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE COMPONENTS ── */
@media (max-width: 900px) {
  .prob-grid, .svc-grid, .metrics-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .contact-grid { flex-direction: column; align-items: center; }
  #manifesto, #cta-final { padding: 80px 24px; }
}

@media (max-width: 480px) {
  #hero { padding-left: 20px; padding-right: 20px; }
  .hero-content { width: 100%; }
  .hero-h1 {
    font-size: 32px;
    width: 100%;
  }
  .hero-h1 .line-1,
  .hero-h1 .line-2 { white-space: normal; }
}

/* ══════════════════════════════════════════
   HERO — Background + Animations
══════════════════════════════════════════ */
#bg-base {
  position: fixed; inset: 0;
  background: #060f1a;
  z-index: -1;
}
#three-container {
  position: fixed; inset: 0;
  z-index: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-h1 .line-1 {
  display: block;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 32px rgba(6,15,26,0.98), 0 0 60px rgba(6,15,26,0.8);
}
.hero-h1 .line-2 {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(6,15,26,0.98));
}
@keyframes fadeUpHero {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  opacity: 0;
  animation: fadeUpHero 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.hero-h1 {
  opacity: 0;
  animation: fadeUpHero 1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.hero-sub {
  opacity: 0 !important;
  transform: translateY(14px) !important;
  transition: none !important;
  animation: fadeUpHero 0.9s cubic-bezier(0.22,1,0.36,1) 0.75s forwards !important;
}
.hero-btns {
  opacity: 0 !important;
  transform: translateY(14px) !important;
  transition: none !important;
  animation: fadeUpHero 0.9s cubic-bezier(0.22,1,0.36,1) 0.95s forwards !important;
}

/* ══════════════════════════════════════════
   SCROLL-DRIVEN TRANSITION (manifesto)
══════════════════════════════════════════ */
.t-section { padding: 120px 56px 140px; position: relative; background: #040b14; }
.t-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.t-sticky::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 800px; height: 360px;
  background: radial-gradient(ellipse,rgba(217,164,65,0.028) 0%,transparent 65%);
  pointer-events: none;
}
.t-phrase { text-align: center; padding: 0 40px; max-width: 1000px; position: relative; z-index: 1; user-select: none; line-height: 1.2; }
.word {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(36px,5.5vw,68px); font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0 0.14em;
  color: rgba(255,255,255,0.1);
  transform: translateY(4px);
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.word.gold {
  font-weight: 700; font-size: clamp(40px,6vw,76px);
  -webkit-text-fill-color: rgba(180,130,30,0.1);
  background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%);
  -webkit-background-clip: text; background-clip: text;
  transition: -webkit-text-fill-color 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.word.lit { color: rgba(255,255,255,0.78); transform: translateY(0); }
.word.gold.lit { -webkit-text-fill-color: transparent; transform: translateY(0); }

/* ══════════════════════════════════════════
   LIVING SYSTEM
══════════════════════════════════════════ */
.ls {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 72px 40px; position: relative; z-index: 1; overflow: hidden;
  background: #060f1a;
}
#ls-dc { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.ls > * { position: relative; z-index: 1; }
.ls .hd { text-align: center; margin-bottom: 40px; }
.ls .ew { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ls .ew-dot { width: 4px; height: 4px; background: #d9a441; border-radius: 50%; animation: ep 2.2s ease-in-out infinite; }
@keyframes ep { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.2;transform:scale(0.5)} }
.ls .ew-txt { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(217,164,65,0.55); }
.ls .hd-title { font-size: clamp(26px,3.5vw,44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 12px; }
.ls .hd-title em { font-style: normal; background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ls .hd-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.72; max-width: 440px; margin: 0 auto; }
.ls-tabs { display: flex; gap: 0; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.02); }
.ls-tab { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.58); padding: 9px 24px; background: transparent; border: none; cursor: pointer; transition: all 0.25s; position: relative; }
.ls-tab + .ls-tab { border-left: 1px solid rgba(255,255,255,0.06); }
.ls-tab.on { color: #d9a441; background: rgba(217,164,65,0.06); }
.ls-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: #d9a441; transform: scaleX(0); transition: transform 0.3s ease; }
.ls-tab.on::after { transform: scaleX(1); }
.ls-plat { width: 100%; max-width: 1020px; position: relative; }
.ls-glow { position: absolute; inset: -60px; background: radial-gradient(ellipse at 50% 50%,rgba(217,164,65,0.07) 0%,transparent 65%); pointer-events: none; z-index: 0; }
.ls-shell { background: #03080f; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; position: relative; z-index: 1; box-shadow: 0 0 0 1px rgba(217,164,65,0.06),0 30px 90px rgba(0,0,0,0.65),0 4px 20px rgba(0,0,0,0.4); transition: opacity 0.35s ease; }
.ls-shell.fading { opacity: 0; }
.ls-shell::before { content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg,transparent,rgba(217,164,65,0.45) 35%,rgba(245,204,106,0.6) 50%,rgba(217,164,65,0.45) 65%,transparent); z-index: 5; }
.ls-prog { position: absolute; top: 0; left: 0; height: 2px; background: linear-gradient(90deg,transparent,#f5cc6a,#d9a441,#b8832a); z-index: 10; border-radius: 0 2px 0 0; transition: width linear; }
.ls-tb { display: flex; align-items: center; justify-content: space-between; padding: 11px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); background: rgba(255,255,255,0.015); }
.ls-tb-l { display: flex; align-items: center; gap: 12px; }
.ls-tb-dots { display: flex; gap: 5px; }
.ls-tb-dot { width: 9px; height: 9px; border-radius: 50%; }
.ls-tb-dot:nth-child(1) { background: rgba(255,255,255,0.09); }
.ls-tb-dot:nth-child(2) { background: rgba(255,255,255,0.06); }
.ls-tb-dot:nth-child(3) { background: rgba(255,255,255,0.04); }
.ls-tb-name { font-size: 11px; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.35); }
.ls-tb-name b { color: rgba(255,255,255,0.62); font-weight: 600; }
.ls-tb-c { position: absolute; left: 50%; transform: translateX(-50%); font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(217,164,65,0.75); }
.ls-tb-r { display: flex; align-items: center; gap: 10px; }
.ls-proc-ind { display: flex; align-items: center; gap: 5px; font-size: 9px; letter-spacing: 0.08em; color: rgba(217,164,65,0.5); opacity: 0; transition: opacity 0.3s; }
.ls-proc-ind.on { opacity: 1; }
.ls-proc-dots span { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: #d9a441; animation: pd 1.2s ease-in-out infinite; margin-left: 2px; }
.ls-proc-dots span:nth-child(2) { animation-delay: 0.2s; }
.ls-proc-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pd { 0%,100%{opacity:0.2;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.2)} }
.ls-live-badge { display: flex; align-items: center; gap: 5px; font-size: 9.5px; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.ls-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: ld 2s ease-in-out infinite; }
@keyframes ld { 0%,100%{box-shadow:0 0 0 0 rgba(29,184,122,0.5)} 50%{box-shadow:0 0 0 4px rgba(29,184,122,0)} }
.ls-grid { display: grid; grid-template-columns: 240px 1fr 0.85fr; min-height: 460px; }
.ls-col-lbl { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.14); padding: 12px 16px 9px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; }
.ls-col-lbl-count { font-family: 'Courier New',monospace; font-size: 10px; color: rgba(217,164,65,0.4); }
.ls-col-msgs { border-right: 1px solid rgba(255,255,255,0.05); }
.ls-msgs-list { padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }
.ls-msg { padding: 9px 11px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 7px; display: flex; flex-direction: column; gap: 5px; opacity: 0; transform: translateX(-8px); transition: opacity 0.35s ease,transform 0.35s ease,border-color 0.3s; }
.ls-msg.in { opacity: 1; transform: translateX(0); }
.ls-msg.hot { border-color: rgba(217,164,65,0.18); background: rgba(217,164,65,0.03); }
.ls-msg-top { display: flex; align-items: center; justify-content: space-between; }
.ls-msg-l { display: flex; align-items: center; gap: 6px; }
.ls-bdg { font-size: 7.5px; font-weight: 700; letter-spacing: 0.08em; padding: 2px 6px; border-radius: 2px; }
.bwa{background:rgba(37,211,102,0.14);color:#25D366}.big{background:rgba(225,48,108,0.12);color:#E1306C}.bem{background:rgba(74,158,232,0.12);color:#4A9EE8}.bws{background:rgba(217,164,65,0.12);color:#d9a441}
.ls-msg-name { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.62); }
.ls-msg-time { font-size: 9px; color: rgba(255,255,255,0.18); }
.ls-msg-txt { font-size: 11.5px; color: rgba(255,255,255,0.38); line-height: 1.4; }
.ls-msg-tag { display: inline-flex; align-items: center; gap: 3px; font-size: 9px; font-weight: 500; padding: 2px 7px; border-radius: 2px; width: fit-content; }
.th{background:rgba(29,184,122,0.1);color:#1DB87A}.tm{background:rgba(232,168,56,0.1);color:#E8A838}.tl{background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.25)}.tp{background:rgba(217,164,65,0.08);color:rgba(217,164,65,0.55)}
.ls-msg-reply { padding: 9px 11px; background: rgba(217,164,65,0.05); border: 1px solid rgba(217,164,65,0.14); border-radius: 7px; border-left: 2px solid rgba(217,164,65,0.4); display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(-8px); transition: opacity 0.4s ease,transform 0.4s ease; margin-left: 8px; }
.ls-msg-reply.in { opacity: 1; transform: translateX(0); }
.ls-mr-top { display: flex; align-items: center; justify-content: space-between; }
.ls-mr-left { display: flex; align-items: center; gap: 6px; }
.ls-mr-badge { font-size: 7.5px; font-weight: 700; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 2px; background: rgba(217,164,65,0.12); color: #d9a441; }
.ls-mr-name { font-size: 11px; font-weight: 600; color: rgba(217,164,65,0.8); }
.ls-mr-time { font-size: 9px; color: rgba(255,255,255,0.18); }
.ls-mr-txt { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.5; min-height: 14px; }
.ls-mr-footer { display: flex; align-items: center; gap: 5px; font-size: 9px; color: rgba(29,184,122,0.6); letter-spacing: 0.04em; }
.ls-mr-tick { font-size: 10px; color: #1DB87A; }
.ls-msg-typing { padding: 8px 12px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04); border-radius: 7px; margin-left: 8px; display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s ease,transform 0.3s ease; }
.ls-msg-typing.in { opacity: 1; transform: translateX(0); }
.ls-typing-label { font-size: 10px; color: rgba(217,164,65,0.45); letter-spacing: 0.05em; }
.ls-typing-dots span { display: inline-block; width: 3.5px; height: 3.5px; border-radius: 50%; background: #d9a441; opacity: 0.4; animation: tdot 1.1s ease-in-out infinite; margin-left: 3px; }
.ls-typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.ls-typing-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes tdot { 0%,100%{opacity:0.2;transform:scale(0.8)} 50%{opacity:0.8;transform:scale(1.2)} }
.ls-col-proc { border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; }
.ls-proc-body { flex: 1; padding: 0; display: flex; flex-direction: column; position: relative; overflow: hidden; }
#ls-flowCanvas { width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.ls-flow-score { position: absolute; top: 14px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
.ls-flow-score.in { opacity: 1; }
.ls-fs-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.ls-fs-val { font-size: 26px; font-weight: 700; line-height: 1; background: linear-gradient(135deg,#f5cc6a,#d9a441); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ls-fs-sub { font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }
.ls-col-acts { display: flex; flex-direction: column; }
.ls-acts-list { padding: 12px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.ls-act { padding: 10px 12px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 7px; display: flex; flex-direction: column; gap: 4px; opacity: 0; transform: translateX(8px); transition: opacity 0.35s ease,transform 0.35s ease; }
.ls-act.in { opacity: 1; transform: translateX(0); }
.ls-act-top { display: flex; align-items: center; gap: 7px; }
.ls-act-icon { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.ai-g{background:rgba(29,184,122,0.12);color:#1DB87A}.ai-d{background:rgba(217,164,65,0.1);color:#d9a441}.ai-b{background:rgba(74,158,232,0.1);color:#4A9EE8}
.ls-act-title { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.72); }
.ls-act-sub { font-size: 10.5px; color: rgba(255,255,255,0.26); line-height: 1.4; padding-left: 29px; }
.ls-sbar { padding: 9px 20px; border-top: 1px solid rgba(255,255,255,0.04); background: rgba(255,255,255,0.01); display: flex; align-items: center; gap: 18px; overflow: hidden; }
.ls-si { display: flex; align-items: center; gap: 5px; font-size: 9.5px; color: rgba(255,255,255,0.16); white-space: nowrap; letter-spacing: 0.03em; }
.ls-sn { font-family: 'Courier New',monospace; font-size: 10px; font-weight: 600; color: rgba(217,164,65,0.45); }
.ls-ssep { width: 1px; height: 12px; background: rgba(255,255,255,0.05); flex-shrink: 0; }
.ls-notif { position: fixed; top: 24px; right: 24px; background: rgba(3,8,15,0.97); border: 1px solid rgba(29,184,122,0.22); border-radius: 10px; padding: 12px 16px; display: flex; align-items: flex-start; gap: 10px; z-index: 200; opacity: 0; transform: translateY(-10px) translateX(6px); transition: opacity 0.4s ease,transform 0.4s ease; max-width: 272px; box-shadow: 0 8px 32px rgba(0,0,0,0.5),0 0 0 1px rgba(255,255,255,0.04); }
.ls-notif.in { opacity: 1; transform: translateY(0) translateX(0); }
.ls-notif-ico { width: 28px; height: 28px; border-radius: 7px; background: rgba(29,184,122,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.ls-notif-b { display: flex; flex-direction: column; gap: 3px; }
.ls-notif-t { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.ls-notif-s { font-size: 10.5px; color: rgba(255,255,255,0.3); line-height: 1.4; }
.ls-tcur { display: inline-block; width: 1px; height: 11px; background: #d9a441; margin-left: 1px; animation: tc 0.85s step-end infinite; vertical-align: middle; }
@keyframes tc { 0%,100%{opacity:1} 50%{opacity:0} }
@media (max-width: 800px) {
  .ls-grid { grid-template-columns: 1fr; }
  .ls-col-msgs { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ls-col-proc { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ls { padding: 60px 16px; }
  .ls .hd-title { font-size: 24px; }
}

/* ══════════════════════════════════════════
   CAPACIDADES
══════════════════════════════════════════ */
.cap-section { background: transparent; padding: 120px 0 160px; }
.cap-inner { max-width: 1100px; margin: 0 auto; padding: 0 56px; }
.cap-header { margin-bottom: 88px; }
.cap-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(217,164,65,0.55); margin-bottom: 16px; display: block; }
.cap-title { font-size: clamp(28px,3.5vw,44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.cap-title em { font-style: normal; background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cap-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cap-pillars { display: flex; flex-direction: column; }
.cap-pillar { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.055); position: relative; cursor: default; }
.cap-pillar:last-child { border-bottom: 1px solid rgba(255,255,255,0.055); }
.cap-pillar::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 1px; background: linear-gradient(90deg,#f5cc6a,#d9a441,transparent); transition: width 0.55s cubic-bezier(0.22,1,0.36,1); }
.cap-pillar.active::before { width: 100%; }
.cap-pillar-num { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; color: rgba(217,164,65,0.55); margin-bottom: 8px; transition: color 0.35s; }
.cap-pillar.active .cap-pillar-num { color: rgba(217,164,65,0.65); }
.cap-pillar-title { font-size: clamp(28px,3vw,42px); font-weight: 600; letter-spacing: -0.03em; color: rgba(255,255,255,0.15); line-height: 1.1; transition: color 0.4s cubic-bezier(0.22,1,0.36,1); }
.cap-pillar.active .cap-pillar-title { color: rgba(255,255,255,0.92); }
.cap-pillar-desc { font-size: 13.5px; color: rgba(255,255,255,0); line-height: 1.68; max-width: 340px; max-height: 0; overflow: hidden; margin-top: 0; transition: color 0.45s ease 0.12s, max-height 0.55s cubic-bezier(0.22,1,0.36,1), margin-top 0.4s ease; }
.cap-pillar.active .cap-pillar-desc { color: rgba(255,255,255,0.62); max-height: 60px; margin-top: 10px; }
.cap-visual-wrap { position: sticky; top: calc(50vh - 210px); height: 420px; }
.cap-visual { width: 100%; height: 100%; background: rgba(255,255,255,0.018); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.cap-visual::before { content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg,transparent,rgba(217,164,65,0.28) 35%,rgba(245,204,106,0.45) 50%,rgba(217,164,65,0.28) 65%,transparent); z-index: 5; }
canvas#cap-cv { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.cap-v-label { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(217,164,65,0.3); z-index: 3; pointer-events: none; transition: opacity 0.3s; }
@media (max-width: 900px) {
  .cap-layout { grid-template-columns: 1fr; gap: 40px; }
  .cap-visual-wrap { position: relative; top: auto; height: 300px; }
  .cap-inner { padding: 0 24px; }
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-new-section { position: relative; padding: 140px 56px; text-align: center; background: transparent; }
.cta-new-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(217,164,65,0.05) 0%,transparent 70%); pointer-events: none; z-index: 0; }
.cta-new-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 640px; margin: 0 auto; }
.cta-new-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(217,164,65,0.5); margin-bottom: 24px; opacity: 0; transform: translateY(8px); transition: opacity 0.7s ease, transform 0.7s ease; }
.cta-new-section.revealed .cta-new-eyebrow { opacity: 1; transform: translateY(0); }
.cta-new-beam { width: 1px; height: 52px; background: linear-gradient(to bottom,rgba(217,164,65,0),rgba(217,164,65,0.35)); margin-bottom: 32px; opacity: 0; transition: opacity 0.6s ease; }
.cta-new-section.revealed .cta-new-beam { opacity: 1; }
.cta-new-h2 { font-size: clamp(30px,4vw,52px); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; opacity: 0; transform: translateY(12px); transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s; }
.cta-new-section.revealed .cta-new-h2 { opacity: 1; transform: translateY(0); }
.cta-new-h2 em { font-style: normal; background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-new-context { font-size: 14px; color: rgba(255,255,255,0.52); letter-spacing: 0.02em; margin-bottom: 40px; font-weight: 300; opacity: 0; transform: translateY(8px); transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s; }
.cta-new-section.revealed .cta-new-context { opacity: 1; transform: translateY(0); }
.cta-new-btn { display: inline-flex; align-items: center; gap: 10px; background: #d9a441; color: #040c16; font-family: 'Inter',system-ui,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 36px; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; opacity: 0; transform: translateY(8px); transition: opacity 0.7s ease 0.38s, transform 0.7s ease 0.38s, box-shadow 0.2s, background 0.2s; }
.cta-new-section.revealed .cta-new-btn { opacity: 1; transform: translateY(0); }
.cta-new-btn:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,164,65,0.25); }
@media (max-width: 768px) { .cta-new-section { padding: 100px 24px; } }

/* ══════════════════════════════════════════
   FOOTER NOVO
══════════════════════════════════════════ */
footer.footer-new { position: relative; background: transparent; border-top: none; padding: 64px 56px 36px; }
.fn-main { position: relative; z-index: 1; padding: 72px 56px 40px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.fn-tagline { text-align: center; margin-bottom: 48px; }
.fn-tagline-line { display: block; font-size: clamp(22px,3vw,38px); font-weight: 300; line-height: 1.2; letter-spacing: -0.02em; color: rgba(255,255,255,0.72); }
.fn-tagline-line em { font-style: normal; background: linear-gradient(135deg,#f5cc6a 0%,#d9a441 45%,#b8832a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 400; }
.fn-contacts { display: flex; gap: 16px; align-items: center; margin-bottom: 56px; }
.fn-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; border-radius: 2px; font-family: 'Inter',system-ui,sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; }
.fn-btn.whatsapp { background: #d9a441; color: #030810; box-shadow: 0 4px 20px rgba(217,164,65,0.18); }
.fn-btn.whatsapp:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(217,164,65,0.28); }
.fn-btn.email { background: transparent; color: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.18); }
.fn-btn.email:hover { border-color: rgba(217,164,65,0.3); color: rgba(217,164,65,0.7); background: rgba(217,164,65,0.04); }
.fn-divider { width: 100%; max-width: 1000px; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.05) 20%,rgba(255,255,255,0.05) 80%,transparent); margin-bottom: 32px; }
.fn-bottom { width: 100%; max-width: 1000px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.fn-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.fn-links a { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.62); letter-spacing: 0.04em; text-decoration: none; transition: color 0.2s; }
.fn-links a:hover { color: rgba(217,164,65,0.8); }
.fn-links .sep { width: 1px; height: 10px; background: rgba(255,255,255,0.15); }
.fn-copy { font-size: 10px; color: rgba(255,255,255,0.52); letter-spacing: 0.06em; white-space: nowrap; }
.fn-social { display: flex; gap: 8px; align-items: center; }
.fn-social-link { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.58); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.fn-social-link:hover { border-color: rgba(217,164,65,0.45); color: rgba(217,164,65,0.85); }
@media (max-width: 768px) {
  .fn-main { padding: 56px 24px 32px; }
  .fn-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .fn-contacts { flex-direction: column; width: 100%; }
  .fn-btn { width: 100%; justify-content: center; }
  .fn-links { justify-content: center; }
}

/* ══════════════════════════════════════════
   ACCESSIBILITY — Skip link
══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px; left: 16px;
  background: #d9a441; color: #030810;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px;
  text-decoration: none; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
