/* ============================================================
   BASE.CSS — Tech Fontes v6
   Design tokens, reset, tipografia global e botões
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Core Palette */
  --c-navy:      #000000;
  --c-slate:     #111111;
  --c-green:     #00bf63;
  --c-rust:      #ca6646;
  --c-offwhite:  #ededed;
  
  /* Semantic Variables */
  --dark:        var(--c-navy);
  --dark2:       #0a0a0a;
  --dark3:       #111111;
  --dark4:       #1a1a1a;
  
  --border:      rgba(255, 255, 255, 0.1);
  --border-h:    rgba(255, 255, 255, 0.2);
  
  --green:       var(--c-green);
  --green-l:     rgba(0, 191, 99, 0.15);
  --green-glow:  rgba(0, 191, 99, 0.35);
  
  --slate:       var(--c-slate);
  --slate-l:     rgba(64, 81, 111, 0.15);
  
  --rust:        var(--c-rust);
  --rust-d:      #9f5037;
  --rust-l:      rgba(202, 102, 70, 0.12);
  --rust-glow:   rgba(202, 102, 70, 0.35);
  
  --light:       var(--c-offwhite);
  --white:       #ffffff;
  --muted:       rgba(232, 230, 232, 0.65);
  
  --amber:       #f59e0b;
  --amber-l:     rgba(245, 158, 11, 0.12);
  --blue:        #60a5fa;
  --blue-l:      rgba(96, 165, 250, 0.12);

  --font-d:      "Bebas Neue", sans-serif;
  --font-b:      "Outfit", sans-serif;

  --nav-h:       76px;
}

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

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

body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 2px; }

/* ── Seção comum ── */
section { padding: 5rem 5%; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.1rem;
}
.sec-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--font-b);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.sec-title .ac { color: var(--rust); }

.sec-body {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
  margin-top: 1rem;
  max-width: 520px;
}

/* ── Botões globais ── */
.btn-main {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: all .2s ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.05);
}
.btn-main:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid var(--border-h);
  background: transparent;
  color: var(--white);
  padding: .85rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: all .2s ease;
}
.btn-out:hover {
  border-color: rgba(64, 81, 111, .7);
  background: rgba(64, 81, 111, .12);
  transform: translateY(-2px);
}

/* ── Tags ── */
.tag {
  font-size: .68rem;
  padding: .22rem .65rem;
  border-radius: 100px;
  background: var(--slate-l);
  color: var(--muted);
  border: 1px solid rgba(64, 81, 111, .25);
  white-space: nowrap;
}

/* ── Scroll Reveal ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.show { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }

/* ── Keyframes globais ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(.97); }
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes cardPulse {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 0 18px rgba(64, 81, 111, .25); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes count-pop {
  0%  { transform: scale(1); }
  50% { transform: scale(1.08); }
  100%{ transform: scale(1); }
}
@keyframes bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   NAV.CSS — Tech Fontes v6
   Cursor customizado e barra de navegação (sem sobreposição footer)
   ============================================================ */


/* ── Navbar ── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;                        /* ← abaixo do cursor, acima de tudo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: padding .35s, background .35s, border-color .35s;
}
#nav.on {
  background: rgba(26, 31, 42, .75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: .9rem 5%;
  border-color: var(--border);
}

/* ── Logo ── */
.nlogo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nlogo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.nlogo-t {
  font-family: var(--font-d);
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: var(--white);
  line-height: 1;
}
.nlogo-t span { color: var(--rust); }
.nlogo-s {
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Links ── */
.nlinks {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nlinks a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nlinks a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s;
}
.nlinks a:hover       { color: var(--white); }
.nlinks a:hover::after,
.nlinks a.active::after { transform: scaleX(1); }
.nlinks a.active      { color: var(--white); }

/* ── CTA ── */
.ncta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white);
  padding: .6rem 1.35rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.ncta:hover { background: var(--rust-d); transform: translateY(-1px); }

/* ── Hamburger ── */
.hambtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hambtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* ── Mobile nav drawer ── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(12, 13, 16, .98);
  backdrop-filter: blur(24px);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s;
}
.nav-drawer.open {
  display: flex;
  opacity: 1;
  transform: none;
}
.nav-drawer a {
  font-family: var(--font-d);
  font-size: 2rem;
  letter-spacing: .08em;
  color: var(--light);
  text-transform: uppercase;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--rust); }

/* ============================================================
   HERO.CSS — Tech Fontes v6
   Hero layout, dashboard mockup, floaters e strip
   ============================================================ */

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 3.5rem) 5% 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Grid lines background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64, 81, 111, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 81, 111, .055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Glow blobs */
.hero-glow-1 {
  position: absolute; right: -10%; top: -5%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 81, 111, .22) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: glow-drift 12s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; left: -5%; bottom: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 102, 70, .12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: glow-drift 16s ease-in-out infinite reverse;
}

/* ── Hero Left ── */
.hero-left {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up .7s .1s ease forwards;
}
.hero-eyebrow-line {
  width: 28px; height: 2px;
  background: var(--green); flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--white);
  opacity: 0;
  animation: fade-up .7s .2s ease forwards;
}
.hero-title .ac   { color: var(--rust); }
.hero-title .strk {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .2);
  color: transparent;
}
body[data-theme="light"] .hero-title .strk {
  -webkit-text-stroke: 1.5px rgba(26, 34, 54, .25);
}

.hero-sub {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  font-weight: 300;
  margin: 1.6rem 0 2.5rem;
  opacity: 0;
  animation: fade-up .7s .3s ease forwards;
}
.hero-sub strong { color: var(--light); font-weight: 500; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .7s .4s ease forwards;
}

/* WA button text (rotativo) */
#wa-text {
  display: inline-block;
  transition: opacity .3s, transform .3s;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fade-up .7s .55s ease forwards;
}
.stat-n {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  transition: transform 0.35s ease, color 0.35s ease;
}
.stat-n span { color: var(--rust); }
.stat-l {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Hero Right — Dashboard ── */
.hero-right {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-up .8s .35s ease forwards;
}

/* ── Dashboard Mockup ── */
.dash-wrap {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.dash-wrap:hover .dash {
  transform: rotateY(-3deg) rotateX(2deg) translateZ(8px);
}
.dash {
  background: linear-gradient(145deg, #13161d, #0e1015);
  border: 1px solid rgba(64, 81, 111, .35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .04),
    0 40px 80px rgba(0, 0, 0, .6),
    0 0 60px rgba(64, 81, 111, .15),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

/* Titlebar */
.dash-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.1rem;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(64, 81, 111, .2);
  flex-shrink: 0;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.yel { background: #ffbd2e; }
.dash-dot.grn { background: #28c840; }
.dash-title {
  margin-left: .6rem;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
  font-weight: 500;
}

/* Body */
.dash-body { padding: 1rem 1rem .85rem; }

/* Metrics row */
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-bottom: .8rem;
}
.metric {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: border-color .25s;
}
.metric:hover { border-color: rgba(64, 81, 111, .5); }
.metric-ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.metric-ico.sl { background: rgba(64, 81, 111, .2);  border: 1px solid rgba(64, 81, 111, .3); }
.metric-ico.rs { background: rgba(202, 102, 70, .18); border: 1px solid rgba(202, 102, 70, .3); }
.metric-ico.gn { background: var(--green-l);         border: 1px solid rgba(0, 191, 99, .2); }

.metric-val {
  font-family: var(--font-d);
  font-size: 1.45rem;
  color: var(--white);
  line-height: 1;
  transition: transform .2s;
}
.metric-val.pop { animation: count-pop .3s ease; }
.metric-lbl {
  font-size: .58rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Chart */
.dash-chart {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .8rem .85rem;
  margin-bottom: .7rem;
}
.chart-title {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: .35rem;
  height: 64px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(64, 81, 111, .35);
  transition: height .5s cubic-bezier(.34, 1.56, .64, 1),
              background .3s;
  position: relative;
  cursor: default;
  transform-origin: bottom;
}
.bar.active {
  background: var(--green);
  box-shadow: 0 0 12px rgba(202, 102, 70, .5);
}
.bar.new-bar {
  animation: bar-grow .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
.bar:hover { filter: brightness(1.2); }

.bar-tip {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .18rem .42rem;
  font-size: .58rem;
  color: var(--light);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.bar:hover .bar-tip { opacity: 1; }

.chart-labels {
  display: flex;
  gap: .35rem;
  margin-top: .4rem;
}
.chart-labels span {
  flex: 1;
  text-align: center;
  font-size: .55rem;
  color: var(--muted);
}

/* Activity feed */
.dash-activity {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  max-height: 180px;
  overflow: hidden;
}
.act-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color .25s, background .25s;
  flex-shrink: 0;
}
.act-item.ok   { background: rgba(0, 191, 99, .06); border-color: rgba(0, 191, 99, .18); }
.act-item.warn { background: rgba(245, 158, 11, .06); border-color: rgba(245, 158, 11, .18); }
.act-item.info { background: rgba(64, 81, 111, .1);   border-color: rgba(64, 81, 111, .25); }
.act-item.new  { animation: slide-in-right .4s cubic-bezier(.34, 1.56, .64, 1) forwards; }
.act-icon { font-size: .8rem; flex-shrink: 0; }
.act-text { flex: 1; font-size: .7rem; color: var(--light); font-weight: 500; }
.act-badge {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .16rem .48rem;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.act-badge.ok   { background: rgba(0, 191, 99, .2);  color: var(--green); }
.act-badge.warn { background: rgba(245, 158, 11, .2);  color: var(--amber); }
.act-badge.info { background: rgba(96, 165, 250, .15); color: var(--blue); }

/* ── Floating cards ── */
.flt {
  position: absolute;
  background: rgba(11, 13, 17, .65);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), border-color .25s;
  z-index: 2;
}
.flt:hover { border-color: rgba(202, 102, 70, .45); }
.flt-1 { top: -1.8rem; right: -1.8rem; animation: float1 6s ease-in-out infinite; }
.flt-2 { bottom: -1.6rem; left: -1.6rem; animation: float2 7s ease-in-out infinite .5s; }

.flt-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.flt-ico.rs { background: rgba(202, 102, 70, .18); border: 1px solid rgba(202, 102, 70, .3); }
.flt-ico.gn { background: var(--green-l);         border: 1px solid rgba(0, 191, 99, .22); }

.flt-body strong { font-size: .82rem; font-weight: 600; display: block; color: var(--white); }
.flt-body span   { font-size: .67rem; color: var(--muted); }

.flt-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-left: .4rem; }
.flt-dot.g { background: var(--green); box-shadow: 0 0 8px rgba(0, 191, 99, .7); animation: blink 2s infinite; }
.flt-dot.a { background: var(--amber); box-shadow: 0 0 8px rgba(245, 158, 11, .7); animation: blink 1.5s infinite .3s; }

/* ── Strip de serviços ── */
.strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
}
.strack {
  display: flex;
  gap: 2.8rem;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
}
.strip:hover .strack { animation-play-state: paused; }
.sitem {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sitem svg { width: 13px; height: 13px; stroke: var(--rust); fill: none; stroke-width: 2; flex-shrink: 0; }
.sdot { color: var(--rust); font-size: .8rem; flex-shrink: 0; }

/* ============================================================
   SECTIONS.CSS — Tech Fontes v6
   Autoridade, Serviços e Parceiros
   ============================================================ */

/* ── AUTORIDADE ── */
#autoridade {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding-top: 2.5rem;
}
.aut-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.aut-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--rust-l);
  border: 1px solid rgba(202, 102, 70, .3);
  color: var(--rust);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.aut-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.astat {
  background: var(--dark);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background .25s, transform .25s;
}
.astat:hover { background: var(--dark3); transform: translateY(-2px); }
.astat-n { font-family: var(--font-d); font-size: 2.8rem; color: var(--white); line-height: 1; }
.astat-n span { color: var(--rust); }
.astat-l { font-size: .7rem; color: var(--muted); margin-top: .4rem; letter-spacing: .08em; text-transform: uppercase; }
.aut-quote {
  background: rgba(202, 102, 70, .06);
  border: 1px solid rgba(202, 102, 70, .22);
  border-left: 3px solid var(--rust);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.aut-quote p    { font-size: 1rem; line-height: 1.7; color: var(--light); font-weight: 400; }
.aut-quote cite { display: block; margin-top: .6rem; font-size: .75rem; color: var(--rust); font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ── SERVIÇOS ── */
#servicos-hero { background: var(--dark); }
.sh-header { text-align: center; margin-bottom: 4rem; }
.sh-header .sec-body { margin-left: auto; margin-right: auto; }
.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sh-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.sh-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
  background: var(--dark2);
}
.sh-num {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.sh-card:hover .sh-num { color: var(--rust); }
.sh-ico {
  width: 48px; height: 48px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-ico svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sh-card h3  { font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: .8rem; }
.sh-card p   { color: var(--muted); font-size: .95rem; line-height: 1.6; font-weight: 400; }
.sh-tags     { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }

/* ── PARCEIROS ── */
#parceiros {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 5%;
}
.parc-label { text-align: center; margin-bottom: 2.5rem; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.parc-wrap  { width: 100%; max-width: 1200px; margin: 0 auto; }
.parc-track {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.parc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 150px;
  flex-shrink: 0;
  cursor: default;
  transition: border-color .25s, background .25s, transform .25s;
}
.parc-item:hover { border-color: var(--green); background: var(--green-l); transform: translateY(-4px); box-shadow: 0 10px 30px var(--green-l); }
.parc-name { font-family: var(--font-b); font-weight: 500; font-size: 1.1rem; color: var(--muted); transition: color .25s; }
.parc-item:hover .parc-name { color: var(--white); }
.parc-sub  { font-size: .6rem; color: rgba(122, 132, 153, .45); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   COMPONENTS.CSS — Tech Fontes v6
   Planos, Diferenciais, Contato e Footer
   ============================================================ */

/* ── PLANOS ── */
#planos { background: var(--dark); }
.planos-hd { text-align: center; margin-bottom: 3.5rem; }
.planos-hd .sec-body { margin: .6rem auto 0; }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.plan {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--border-h); }
.plan.feat {
  border-color: var(--green);
  background: var(--dark);
  box-shadow: 0 0 0 1px var(--green);
}
.plan.feat:hover { border-color: var(--green); box-shadow: 0 24px 60px rgba(202, 102, 70, .18); }

.plan-badge {
  position: absolute;
  top: 0; right: 1.5rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 0 0 8px 8px;
}
.plan-badge.pop { background: var(--green);  color: var(--white); }
.plan-badge.new { background: var(--slate); color: var(--light); }

.plan-tier { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rust); margin-bottom: .5rem; }
.plan h3   { font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: .6rem; }

.plan-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .6rem; }
.plan-price .val { font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.plan.feat .plan-price .val { color: var(--white); }
.plan-price .per { font-size: .8rem; color: var(--muted); font-weight: 300; }

.plan-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

.plan-features { flex: 1; display: flex; flex-direction: column; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.plan-more { display: none; }
.btn-more { background: transparent; border: none; color: var(--rust); font-family: var(--font-b); font-size: .8rem; font-weight: 600; cursor: pointer; padding: .5rem 0; margin-top: .5rem; display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; align-self: flex-start; }
.btn-more:hover { color: var(--rust-d); }
.btn-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s; }

/* -- PLAN MODAL -- */
.pmodal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.pmodal.active { opacity: 1; pointer-events: auto; }
.pmodal-bg {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
}
.pmodal-box {
  position: relative; background: var(--dark); border: 1px solid var(--border-h);
  border-radius: 12px; width: 90%; max-width: 500px; max-height: 85vh; overflow-y: auto;
  padding: 2.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pmodal.active .pmodal-box { transform: translateY(0) scale(1); }
.pmodal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: transparent; border: none;
  color: var(--muted); cursor: pointer; padding: 0; transition: color .2s;
}
.pmodal-close:hover { color: var(--white); }
.pmodal-close svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.pmodal-header h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; font-weight: 600; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.pmodal-body .plan-list { gap: 1rem; }
.plan-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .85rem; color: var(--muted); }
.plan-list li svg { width: 14px; height: 14px; stroke: var(--rust); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }

.plan-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: .9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.plan-cta.main  { background: transparent; color: var(--green); border: 1px solid var(--green); box-shadow: 0 4px 24px rgba(0, 191, 99, 0.1); }
.plan-cta.main:hover { background: var(--green); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 191, 99, 0.3); }
.plan-cta.ghost { background: transparent; color: var(--light); border: 1px solid var(--border); }
.plan-cta.ghost:hover { border-color: rgba(64, 81, 111, .6); background: rgba(64, 81, 111, .1); }

/* ── DIFERENCIAIS ── */
#diferenciais {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dif-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.dif-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dc {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all .25s ease;
}
.dc:hover { border-color: var(--border-h); background: var(--dark2); transform: translateY(-2px); }
.dc-ico { font-size: 1.6rem; margin-bottom: 1rem; }
.dc h4  { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.dc p   { font-size: .85rem; color: var(--muted); line-height: 1.6; font-weight: 400; }

/* ── CONTATO ── */
#contato {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contato::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 102, 70, .1) 0%, transparent 70%);
  pointer-events: none;
}
.conv-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.conv-inner .sec-title { font-size: clamp(2.5rem, 6vw, 5rem); }
.conv-inner .sec-body  { margin: 1.1rem auto 3rem; }
#contato .conv-inner   { max-width: 1280px; }
.cbtns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(37, 211, 102, .22);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37, 211, 102, .38); }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(135deg, #e1306c, #833ab4, #f77737);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(225, 48, 108, .18);
  transition: opacity .2s, transform .2s;
}
.btn-ig:hover { opacity: .9; transform: translateY(-2px); }

.cinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ci { background: var(--dark2); padding: 1.75rem 1.5rem; text-align: center; transition: background .25s; }
.ci:hover    { background: var(--dark3); }
.ci-ico      { font-size: 1.4rem; margin-bottom: .75rem; }
.ci strong   { display: block; font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.ci span     { font-size: .82rem; color: var(--muted); }
.ci a        { color: var(--muted); transition: color .2s; }
.ci a:hover  { color: var(--rust); }

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
  /* CRÍTICO: nunca position fixed/absolute — fica no fluxo normal do documento */
  position: relative;
  z-index: 1;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.foot-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.foot-logo img    { width: 30px; height: 30px; object-fit: contain; }
.foot-logo-t      { font-family: var(--font-d); font-size: 1.2rem; letter-spacing: .08em; color: var(--white); }
.foot-logo-t span { color: var(--rust); }
.foot-brand p     { font-size: .83rem; color: var(--muted); line-height: 1.7; max-width: 270px; }
.foot-col h5      { font-family: var(--font-d); font-size: .95rem; letter-spacing: .08em; color: var(--white); margin-bottom: .85rem; }
.foot-col ul      { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.foot-col ul a    { color: var(--muted); font-size: .82rem; transition: color .2s; }
.foot-col ul a:hover { color: var(--rust); }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-bottom p { font-size: .78rem; color: var(--muted); }
.socials       { display: flex; gap: .75rem; }
.soc {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.soc:hover { border-color: rgba(202, 102, 70, .5); color: var(--rust); background: rgba(202, 102, 70, .08); }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  #hero          { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding-top: calc(var(--nav-h) + 3rem); }
  .hero-btns     { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-right    { max-width: 560px; margin: 0 auto; }
  .aut-inner, .dif-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sh-grid, .pgrid        { grid-template-columns: 1fr 1fr; }
  .foot-top               { grid-template-columns: 1fr 1fr; }
  .flt-1, .flt-2          { display: none; }
}
@media (max-width: 760px) {
  /* Parceiros Mobile (menores para caber 2 ou 3 por linha) */
  .parc-track { gap: 0.8rem; }
  .parc-item { padding: 0.6rem 1rem; width: calc(50% - 0.4rem); }
  .parc-name { font-size: 1rem; }
  .parc-sub { font-size: 0.55rem; }

  .nlinks, .ncta { display: none; }
  .hambtn        { display: block; }
  .sh-grid, .pgrid { grid-template-columns: 1fr; }
  .dif-cards       { grid-template-columns: 1fr; }
  .aut-stats        { grid-template-columns: 1fr 1fr; }
  .foot-top         { grid-template-columns: 1fr; gap: 2rem; }
  .cinfo-grid       { grid-template-columns: 1fr; }
  .cbtns            { flex-direction: column; align-items: center; }
  section           { padding: 3.5rem 5%; }
  #parceiros        { padding: 3rem 5%; }
}
@media (max-width: 480px) {
  html, body { overflow-x: hidden; width: 100%; position: relative; }
  #hero { overflow-x: hidden; width: 100%; }
  .hero-left { padding: 0 5%; box-sizing: border-box; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.2rem); word-break: break-word; overflow-wrap: break-word; }
  .hero-sub { word-break: break-word; overflow-wrap: break-word; margin: 0 auto; width: 100%; box-sizing: border-box; }
  .hero-btns  { flex-direction: column; width: 100%; }
  .btn-main, .btn-out { width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; justify-content: space-around; width: 100%; box-sizing: border-box; margin: 2rem auto 0; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .socials     { justify-content: center; }
  /* Fix Dashboard Mobile */
  .dash-wrap { zoom: 0.75; transform-origin: left top; margin-left: -5%; }
  .dash-body { padding: 0.5rem; }
  .metric { flex-direction: column; text-align: center; gap: 0.3rem; padding: 0.5rem; }
}
/* ============================================================
   WhatsApp Floating CTA
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: transparent;
  color: #25d366;
  border: 1px solid #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.wa-float:hover {
  background-color: #25d366;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* ============================================================
   NOVO LAYOUT DE CONTATO
   ============================================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.c-left .sec-label { justify-content: flex-start; }
.c-left .sec-title { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin-top: 1rem; }
.c-left .sec-body { margin: 1.5rem 0 2.5rem; text-align: left; max-width: 420px; }

.c-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(30, 39, 56, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.c-card:hover {
  transform: translateY(-4px);
  background: rgba(40, 50, 70, 0.6);
  border-color: var(--green);
}

.c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 191, 99, 0.1);
  color: var(--green);
}

.c-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.c-info strong {
  font-family: var(--font-b);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.c-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Formulário Glassmorphism */
.c-form {
  background: rgba(20, 26, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.c-form h3 {
  font-family: var(--font-b);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.f-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.f-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.f-group input,
.f-group textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.f-group input:focus,
.f-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(0, 0, 0, 0.4);
}

/* Ajustes Responsivos */
@media (max-width: 1060px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .c-left .sec-label { justify-content: center; }
  .c-left .sec-title { text-align: center; }
  .c-left .sec-body { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
  .c-cards { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .c-card { min-width: 260px; flex: 1; }
}

@media (max-width: 600px) {
  .c-card { width: 100%; }
  .c-form { padding: 1.5rem; }
  .wa-float { width: 45px; height: 45px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--dark);
  text-align: center;
}
#faq .sec-body {
  max-width: 600px;
  margin: 0.5rem auto 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 3rem;
  text-align: left;
}
.faq-item {
  background: rgba(30, 39, 56, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  background: rgba(40, 50, 70, 0.6);
  border-color: rgba(255,255,255,0.1);
}
.faq-item summary {
  padding: 1.5rem;
  font-family: var(--font-b);
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  color: var(--green);
  transition: transform 0.3s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   CONTATO EXTRAS
   ============================================================ */

/* Row com dois campos lado a lado */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Seta nos cards clicáveis */
.c-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s ease, transform 0.3s ease;
}
.c-card:hover .c-arrow {
  color: var(--green);
  transform: translateX(4px);
}

/* Variações de cor nos ícones dos cards */
.c-ico--ig {
  background: rgba(214, 41, 118, 0.12);
  color: #d62976;
}
.c-ico--loc {
  background: rgba(255, 120, 50, 0.12);
  color: var(--rust);
}

/* Feedback do formulário */
.f-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4rem;
}
.f-feedback.ok  { color: var(--green); }
.f-feedback.err { color: #ff6b6b; }

/* Textarea sem resize horizontal */
.f-group textarea { resize: vertical; }

/* Card estático (sem link) sem cursor pointer */
.c-card--static { cursor: default; }
.c-card--static:hover {
  transform: none;
  border-color: rgba(255,255,255,0.05);
  background: rgba(30, 39, 56, 0.4);
}

/* ── Logo nav override removido — ver regra principal acima ── */

/* Responsividade do f-row */
@media (max-width: 600px) {
  .f-row { grid-template-columns: 1fr; }
}

/* ============================================================
   TEMA CLARO  (light mode)
   Aplicado quando <body> tiver data-theme="light"
   ============================================================ */

body[data-theme="light"] {
  --dark:       #ffffff;
  --dark2:      #fafafa;
  --dark3:      #f5f5f5;
  --dark4:      #eaeaea;

  --border:     rgba(0, 0, 0, 0.1);
  --border-h:   rgba(0, 0, 0, 0.2);

  --light:      #1a2236;
  --white:      #0d1526;
  --muted:      rgba(25, 40, 75, 0.65);

  /* Green e Rust mantêm identidade mas levemente mais intensos */
  --green:      #009f52;
  --green-l:    rgba(0, 159, 82, 0.12);
  --green-glow: rgba(0, 159, 82, 0.25);

  --rust:       #b85a3c;
  --rust-d:     #923f27;
  --rust-l:     rgba(184, 90, 60, 0.12);
  --rust-glow:  rgba(184, 90, 60, 0.25);

  background: var(--dark);
  color: var(--light);
}

/* ── Barra de navegação no light ── */
body[data-theme="light"] #nav {
  background: rgba(240, 242, 247, 0.97);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  border-bottom: 1px solid rgba(30, 50, 90, 0.1);
}

/* ── Hero: fundo e gradientes ── */
body[data-theme="light"] #hero {
  background: linear-gradient(135deg, #e8ecf5 0%, #f0f2f7 60%, #e2e8f5 100%);
}

/* ── Hero: ajuste de título ghost ── */
body[data-theme="light"] .hero-ghost {
  color: rgba(26, 34, 54, 0.12);
}

/* ── Seções com fundo alternado ── */
body[data-theme="light"] #diferenciais,
body[data-theme="light"] #parceiros {
  background: rgba(200, 210, 230, 0.25);
  border-color: rgba(30, 50, 90, 0.08);
}

/* ── Cards ── */
body[data-theme="light"] .dif-card,
body[data-theme="light"] .plan,
body[data-theme="light"] .parc-item,
body[data-theme="light"] #faq { background: #f9fafb; }
body[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: rgba(13, 21, 38, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
body[data-theme="light"] .faq-item:hover {
  border-color: var(--green);
}
body[data-theme="light"] .faq-item summary { color: #0d1526; }
body[data-theme="light"] .faq-content { color: rgba(13, 21, 38, 0.7); }

body[data-theme="light"] .c-card {
  background: #ffffff;
  border: 1px solid rgba(13, 21, 38, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .dif-card:hover,
body[data-theme="light"] .c-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--green);
}

/* ── Plano destaque ── */
body[data-theme="light"] .plan.feat {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--green);
}

/* ── Formulário de contato ── */
body[data-theme="light"] .c-form {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(30, 50, 90, 0.1);
  box-shadow: 0 8px 40px rgba(30, 50, 90, 0.1);
}

body[data-theme="light"] .f-group input,
body[data-theme="light"] .f-group textarea {
  background: rgba(240, 242, 247, 0.8);
  border-color: rgba(30, 50, 90, 0.15);
  color: var(--white);
}

body[data-theme="light"] .f-group input:focus,
body[data-theme="light"] .f-group textarea:focus {
  background: #ffffff;
  border-color: var(--green);
}

body[data-theme="light"] .f-group label {
  color: rgba(26, 34, 54, 0.7);
}

/* ── Footer ── */
body[data-theme="light"] footer {
  background: #1a2236;
  color: rgba(232, 230, 232, 0.8);
}

/* ── Scrollbar no light ── */
body[data-theme="light"] ::-webkit-scrollbar-track { background: #e8ecf5; }
body[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(30,50,90,.3); }

/* ── Transição suave entre temas ── */
body, #nav, section, footer,
.dif-card, .plan, .parc-item, .c-card, .c-form,
.f-group input, .f-group textarea {
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* ============================================================
   BOTÃO DE ALTERNÂNCIA DE TEMA
   ============================================================ */
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-h);
  background: transparent;
  color: var(--light);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  flex-shrink: 0;
}

.theme-btn:hover {
  background: var(--green-l);
  border-color: var(--green);
  transform: rotate(20deg) scale(1.1);
}

/* Mostra lua no dark, esconde sol; inverte no light */
.theme-btn .icon-sun { display: none; }
.theme-btn .icon-moon { display: block; }

body[data-theme="light"] .theme-btn .icon-sun  { display: block; }
body[data-theme="light"] .theme-btn .icon-moon { display: none; }

/* Esconde o botão no mobile (hamburguer já aparece) */
@media (max-width: 760px) {
  .theme-btn { display: none; }
}

/* ── Light mode: Hero text fixes ── */
body[data-theme="light"] .hero-title {
  color: #0d1526;
}
body[data-theme="light"] .hero-title .ac {
  color: var(--rust);
}
body[data-theme="light"] .hero-sub {
  color: rgba(20, 35, 70, 0.75);
}
body[data-theme="light"] .hero-label {
  color: rgba(20, 35, 70, 0.55);
}
body[data-theme="light"] .hero-label::before {
  background: var(--rust);
}

/* ── Light mode: dashboard mockup keeps dark look (intentional) ── */
body[data-theme="light"] .dash-wrap {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

/* ── Light mode: hero stats ── */
body[data-theme="light"] .hstat-n {
  color: #0d1526;
}
body[data-theme="light"] .hstat-l {
  color: rgba(20, 35, 70, 0.6);
}

/* ── Light mode: nav links ── */
body[data-theme="light"] .nlinks a {
  color: rgba(13, 21, 38, 0.75);
}
body[data-theme="light"] .nlinks a:hover {
  color: var(--green);
}
body[data-theme="light"] .nlogo-t {
  color: #0d1526;
}
body[data-theme="light"] .nlogo-s {
  color: rgba(13, 21, 38, 0.5);
}
body[data-theme="light"] .hambtn span {
  background: #0d1526;
}
body[data-theme="light"] .theme-btn {
  color: #0d1526;
  border-color: rgba(13, 21, 38, 0.2);
}

/* ── Light mode: seção autoridade ── */
body[data-theme="light"] .astat-n {
  color: #0d1526;
}
body[data-theme="light"] .astat-l {
  color: rgba(13, 21, 38, 0.6);
}
body[data-theme="light"] .aut-inner h2,
body[data-theme="light"] .sec-title,
body[data-theme="light"] .sec-body,
body[data-theme="light"] .sec-label {
  color: #0d1526;
}
body[data-theme="light"] .sec-label::before {
  background: var(--rust);
}
body[data-theme="light"] .sec-label {
  color: rgba(13, 21, 38, 0.6);
}

/* ── Light mode: parceiros ── */
body[data-theme="light"] .parc-name {
  color: rgba(13, 21, 38, 0.65);
}
body[data-theme="light"] .parc-item:hover .parc-name {
  color: #0d1526;
}
body[data-theme="light"] .parc-label {
  color: rgba(13, 21, 38, 0.5);
}

/* ── Light mode: diferenciais ── */
body[data-theme="light"] .dif-card h3,
body[data-theme="light"] .dif-card p {
  color: #0d1526;
}
body[data-theme="light"] .dif-card h3 { color: #0d1526; }
body[data-theme="light"] .dif-card p  { color: rgba(13, 21, 38, 0.65); }

/* ── Light mode: planos ── */
body[data-theme="light"] .plan-tier,
body[data-theme="light"] .plan h3,
body[data-theme="light"] .plan-desc,
body[data-theme="light"] .plan-list li {
  color: #0d1526;
}
body[data-theme="light"] .plan-tier { color: rgba(13, 21, 38, 0.55); }
body[data-theme="light"] .plan-desc,
body[data-theme="light"] .plan-list li { color: rgba(13, 21, 38, 0.75); }
body[data-theme="light"] .val { color: var(--rust); }

/* ── Light mode: contactos ── */
body[data-theme="light"] .c-info strong {
  color: #0d1526;
}
body[data-theme="light"] .c-info span {
  color: rgba(13, 21, 38, 0.65);
}
body[data-theme="light"] .c-form h3 {
  color: #0d1526;
}

/* ── Light mode: footer mantém dark ── */
body[data-theme="light"] footer {
  background: #111827;
  color: rgba(232, 230, 232, 0.85);
}
body[data-theme="light"] footer a { color: rgba(232, 230, 232, 0.65); }
body[data-theme="light"] footer a:hover { color: var(--green); }
body[data-theme="light"] footer p,
body[data-theme="light"] footer h5,
body[data-theme="light"] .foot-logo-t { color: rgba(232, 230, 232, 0.85); }
body[data-theme="light"] .foot-bottom p { color: rgba(232, 230, 232, 0.5); }
body[data-theme="light"] footer .soc { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); color: rgba(232, 230, 232, 0.65); }
body[data-theme="light"] footer .soc:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff; }

/* ============================================================
   LIGHT MODE — HERO ANIMATION FIXES
   ============================================================ */

/* 1. Grade de fundo: reduzir intensidade no light */
body[data-theme="light"] .hero-grid-bg {
  background-image:
    linear-gradient(rgba(30, 50, 90, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 50, 90, .04) 1px, transparent 1px);
  opacity: 0.5;
}

/* 2. Glow blobs: adaptar para light */
body[data-theme="light"] .hero-glow-1 {
  background: radial-gradient(circle, rgba(0, 120, 200, .08) 0%, transparent 70%);
}
body[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(202, 102, 70, .08) 0%, transparent 70%);
}

/* 3. Floating cards: fundo claro no light mode */
body[data-theme="light"] .flt {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(30, 50, 90, 0.12);
  box-shadow: 0 8px 32px rgba(30, 50, 90, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-theme="light"] .flt-body strong {
  color: #0d1526;
}
body[data-theme="light"] .flt-body span {
  color: rgba(13, 21, 38, 0.55);
}

/* 4. Hero section background */
body[data-theme="light"] #hero {
  background: linear-gradient(160deg, #edf0f7 0%, #f3f5fa 50%, #e8edf7 100%);
}

/* 5. Animações de float — mantidas (já funcionam via keyframes independentes de cor) */

/* 6. Strip de serviços abaixo do hero */
body[data-theme="light"] .strip {
  background: rgba(210, 220, 235, 0.4);
  border-color: rgba(30, 50, 90, 0.08);
}
body[data-theme="light"] .sitem {
  color: rgba(13, 21, 38, 0.6);
}
body[data-theme="light"] .sitem svg {
  stroke: var(--rust);
}

/* 7. Notificação flutuante (flt) título e subtítulo */
body[data-theme="light"] .flt-ico.rs {
  background: rgba(202, 102, 70, 0.12);
  border-color: rgba(202, 102, 70, 0.22);
}
body[data-theme="light"] .flt-ico.gn {
  background: rgba(0, 159, 82, 0.1);
  border-color: rgba(0, 159, 82, 0.2);
}

/* 8. Dash wrap: sombra natural no light */
body[data-theme="light"] .dash-wrap {
  filter: drop-shadow(0 24px 48px rgba(20, 40, 80, 0.15));
}

/* 9. Seção de autoridade no light */
body[data-theme="light"] #autoridade {
  background: rgba(225, 230, 242, 0.4);
}

/* 10. Seção de serviços no light */
body[data-theme="light"] #servicos-hero {
  background: #f3f5fa;
}
body[data-theme="light"] .sh-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(30, 50, 90, 0.08);
}
body[data-theme="light"] .sh-card h3,
body[data-theme="light"] .sh-card p {
  color: #0d1526;
}
body[data-theme="light"] .sh-card p {
  color: rgba(13, 21, 38, 0.65);
}

/* 11. Seção de planos no light */
body[data-theme="light"] #planos {
  background: #f3f5fa;
}
body[data-theme="light"] .plan-badge {
  background: var(--rust);
  color: #fff;
}

/* 12. Contato section bg */
body[data-theme="light"] #contato {
  background: rgba(225, 230, 242, 0.35);
}

/* ============================================================
   LIGHT MODE — CURSOR FIXES
   ============================================================ */

/* Ponto do cursor: trocar verde por cor escura no light */
body[data-theme="light"] #cur {
  background: #0d1526;
  box-shadow: none;
}

/* Anel do cursor: adaptar cor para light */
body[data-theme="light"] #ring {
  border-color: rgba(13, 21, 38, 0.35);
  background: transparent;
}

body[data-theme="light"] #ring.hover {
  border-color: rgba(13, 21, 38, 0.6);
}

/* Btn-out (outlined) no light mode */
body[data-theme="light"] .btn-out {
  color: rgba(13, 21, 38, 0.75);
  border-color: rgba(13, 21, 38, 0.25);
}
body[data-theme="light"] .btn-out:hover {
  background: rgba(13, 21, 38, 0.05);
  border-color: rgba(13, 21, 38, 0.5);
  color: #0d1526;
}

/* Hamburguer icon no light */
body[data-theme="light"] .hambtn span {
  background: #0d1526;
}

/* ============================================================
   LIGHT MODE — DASHBOARD MOCKUP READABILITY FIX
   O dashboard tem fundo sempre escuro, então os textos internos
   precisam permanecer em tons claros independente do tema.
   ============================================================ */

/* Força cores claras dentro do dashboard no light mode */
body[data-theme="light"] .dash,
body[data-theme="light"] .dash * {
  --white: #ffffff;
  --muted: rgba(232, 230, 232, 0.65);
  --light: #e8e6e8;
  --border: rgba(232, 230, 232, 0.1);
  --border-h: rgba(232, 230, 232, 0.25);
  --green: #00bf63;
  --amber: #f59e0b;
  --blue: #60a5fa;
  --rust: #ca6646;
  --dark2: rgba(64, 81, 111, 0.12);
}

/* Floating cards: texto sempre legível (fundo claro no light) */
body[data-theme="light"] .flt {
  --white: #0d1526;
  --muted: rgba(13, 21, 38, 0.6);
}

/* Cursor: corrigir para não aparecer como bola verde destacada */
body[data-theme="light"] #cur {
  background: rgba(13, 21, 38, 0.7);
  box-shadow: none;
  width: 7px;
  height: 7px;
}

body[data-theme="light"] #ring {
  border-color: rgba(13, 21, 38, 0.3);
}

body[data-theme="light"] #ring.hover {
  border-color: rgba(13, 21, 38, 0.55);
}

/* ============================================================
   RATING WIDGET — estilo Uber
   ============================================================ */

.astat--rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

/* Linha de estrelas */
.rating-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.2rem;
}

.rating-stars svg {
  width: 20px;
  height: 20px;
  color: #f5c518; /* IMDB/Uber gold */
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.55));
  animation: star-pop 0.5s ease both;
}

/* Aparição em cascata */
.rating-stars svg:nth-child(1) { animation-delay: 0.0s; }
.rating-stars svg:nth-child(2) { animation-delay: 0.1s; }
.rating-stars svg:nth-child(3) { animation-delay: 0.2s; }
.rating-stars svg:nth-child(4) { animation-delay: 0.3s; }
.rating-stars svg:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-pop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  70%  { transform: scale(1.25) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Número da nota */
.rating-score {
  font-size: 2.8rem !important;
  letter-spacing: -0.02em;
}
.rating-score span {
  font-size: 1.2rem !important;
  color: var(--muted);
  margin-left: 0.1rem;
}

/* Light mode */
body[data-theme="light"] .rating-stars svg {
  color: #d4a017;
  filter: drop-shadow(0 0 4px rgba(212, 160, 23, 0.4));
}

/* ============================================================
   PLANOS — novos estilos adicionados
   ============================================================ */

/* Badge PREMIUM */
.plan-badge.prem {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #fff;
}

/* SLA sub-items no Plano Prime */
.plan-sla-title {
  font-weight: 600;
  color: var(--white) !important;
  margin-top: 0.4rem;
}

.plan-sla-item {
  list-style: none;
  padding: 0.15rem 0 0.15rem 1.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Observacao geral abaixo dos cards */
.plan-obs {
  text-align: center;
  max-width: 820px;
  margin: 2.5rem auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid var(--border);
}

body[data-theme="light"] .plan-obs {
  color: rgba(13, 21, 38, 0.4);
  border-color: rgba(30, 50, 90, 0.1);
}

/* rea do Cliente Outline CTA */
.ncta-outline {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: .6rem 1.35rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all .2s, transform .15s;
}
.ncta-outline:hover {
  background: var(--green);
  color: var(--c-navy);
  transform: translateY(-1px);
}

