﻿:root {
  --black: #06060e;
  --deep: #09091a;
  --purple: #7B2FFF;
  --purple-mid: #9B4DFF;
  --purple-light: #C084FC;
  --purple-glow: rgba(123,47,255,0.35);
  --white: #F0F0F0;
  --gray: #1e1e2e;
  --gray-light: #3a3a5c;
  --text-muted: #7070a0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 12px var(--purple-glow);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(123,47,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,6,14,0.97) 60%, transparent);
  border-bottom: 1px solid rgba(123,47,255,0.08);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px;
  background: var(--purple);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 0 16px rgba(123,47,255,0.5);
}
.nav-logo span { color: var(--purple); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(123,47,255,0.3);
}
.nav-cta:hover { background: var(--purple-mid) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Hero BG â€” usa a imagem como fundo da direita */
.hero-img-bg {
  position: absolute;
  right: -80px; top: 0;
  width: 65%; height: 100%;
  background-image: url(img/bg-img.png);
  background-size: cover;
  background-position: center left;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.7) 60%, black 100%),
              linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.65) 55%, black 100%);
  pointer-events: none;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 15% 50%, rgba(6,6,14,0.95) 0%, rgba(6,6,14,0.6) 50%, transparent 80%),
    radial-gradient(ellipse 30% 40% at 80% 80%, rgba(123,47,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(123,47,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black, transparent);
}

/* Circuit decorations */
.circuit-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.circuit-lines svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(123,47,255,0.1);
  border: 1px solid rgba(123,47,255,0.25);
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease both;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--purple);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  animation: fadeUp 0.8s 0.1s ease both;
}
h1 em {
  font-style: normal;
  color: var(--purple);
  text-shadow: 0 0 40px rgba(123,47,255,0.5);
}

.hero-sub {
  margin-top: 28px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 48px;
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(123,47,255,0.35);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-primary:hover {
  background: var(--purple-mid);
  box-shadow: 0 0 40px rgba(123,47,255,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 3px;
  border: 1px solid var(--gray-light);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  transform: translateY(-2px);
}
.hero-stats {
  margin-top: 72px;
  display: flex; gap: 48px;
  animation: fadeUp 0.8s 0.4s ease both;
  padding-top: 36px;
  border-top: 1px solid rgba(123,47,255,0.12);
}
.stat-n {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(123,47,255,0.3);
}
.stat-n span { color: var(--purple); }
.stat-l { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; letter-spacing: 0.05em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MANIFESTO */
.manifesto {
  padding: 120px 60px;
  border-top: 1px solid rgba(123,47,255,0.12);
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
}
.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.manifesto-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.manifesto-lines { display: flex; flex-direction: column; gap: 18px; }
.m-line {
  border-left: 2px solid rgba(123,47,255,0.2);
  padding-left: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, padding-left 0.3s;
}
.m-line:hover { border-color: var(--purple); color: var(--white); padding-left: 32px; }
.m-line strong { color: var(--white); font-weight: 500; }

/* SERVICES */
.services {
  padding: 120px 60px;
  border-top: 1px solid rgba(123,47,255,0.12);
  background: var(--black);
  position: relative;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(123,47,255,0.1);
  border: 1px solid rgba(123,47,255,0.12);
}
.service-card {
  padding: 44px 38px;
  position: relative;
  transition: background 0.3s;
  background: var(--black);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: rgba(123,47,255,0.04); }
.service-card:hover::after { opacity: 1; }
.service-card.special {
  background: rgba(123,47,255,0.07);
  border: 1px solid rgba(123,47,255,0.2);
}
.service-icon {
  width: 46px; height: 46px;
  background: rgba(123,47,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  border: 1px solid rgba(123,47,255,0.2);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.service-card.special .service-icon {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(123,47,255,0.4);
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.68rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123,47,255,0.15);
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.service-card.special .tag {
  border-color: rgba(123,47,255,0.35);
  color: var(--purple-light);
}

/* DIFERENCIAL */
.diferencial {
  padding:  60px;
  border-top: 1px solid rgba(123,47,255,0.12);
  background: var(--deep);
}
.diferencial-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Hero image reuse in diferencial */
.dif-visual {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(123,47,255,0.2);
}
.dif-visual-img {
  width: 100%; height: 100%;
  background-image: url(img/bg-img.png);
  background-size: cover;
  /* background-position: center; */
  opacity: 0.9;
  filter: saturate(1.2) brightness(0.8);
}
.dif-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,6,14,0.3), rgba(123,47,255,0.15));
}
.dif-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(6,6,14,0.85);
  border: 1px solid rgba(123,47,255,0.3);
  padding: 16px 20px;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  backdrop-filter: blur(12px);
}
.dif-badge-label {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
  font-family: 'Syne', sans-serif;
}
.dif-badge-val {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--white);
}
.dif-badge-val span { color: var(--purple); }

.dif-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.dif-content h2 span { color: var(--purple); text-shadow: 0 0 30px rgba(123,47,255,0.4); }
.dif-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.dif-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.dif-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--white);
  padding: 10px 14px;
  border: 1px solid rgba(123,47,255,0.08);
  border-radius: 3px;
  background: rgba(123,47,255,0.04);
  transition: all 0.3s;
}
.dif-item:hover {
  border-color: rgba(123,47,255,0.25);
  background: rgba(123,47,255,0.08);
  transform: translateX(4px);
}
.dif-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(123,47,255,0.15);
  border: 1px solid rgba(123,47,255,0.4);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.dif-check::after {
  content: 'âœ“';
  font-size: 0.65rem;
  color: var(--purple-light);
}

/* CTA */
.cta-section {
  padding: 120px 60px;
  border-top: 1px solid rgba(123,47,255,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at center, rgba(123,47,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  position: relative;
  margin-bottom: 20px;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--purple);
  text-shadow: 0 0 40px rgba(123,47,255,0.5);
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 44px;
  position: relative;
  line-height: 1.75;
}
.cta-section .btn-primary {
  display: inline-flex;
  font-size: 1rem;
  padding: 18px 48px;
  position: relative;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(123,47,255,0.12);
  padding: 44px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  background: var(--deep);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.footer-logo span { color: var(--purple); }
footer p { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-links a:hover { color: var(--purple-light); }

.line-deco {
  width: 36px; height: 2px; background: var(--purple);
  margin-bottom: 20px;
  box-shadow: 0 0 10px var(--purple);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero, .manifesto, .services, .diferencial, .cta-section { padding: 80px 24px; }
  .manifesto-inner, .diferencial-inner { grid-template-columns: 1fr; gap: 40px; }
  .dif-visual { height: 260px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .hero-img-bg { width: 100%; right: 0; opacity: 0.3; }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 140px;
  right: 20px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
 /* TEAM */

.team-title{
  text-align: center;
}


.team {
  padding: 100px 40px;
  background: var(--deep);
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID CORRIGIDO */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Cada card ocupa 3 colunas */
.team-member {
  grid-column: span 3;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}

/* Centralização da segunda linha (3 itens) */
.team-member:nth-child(5) {
  grid-column: 3 / span 3;
}

.team-member:nth-child(6) {
  grid-column: 6 / span 3;
}

.team-member:nth-child(7) {
  grid-column: 9 / span 3;
}

/* FOTO REDONDA */
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* imagem dentro */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NOME */
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* CARGO */
.team-role {
  font-size: 14px;
  color: var(--purple-light);
  margin-bottom: 10px;
}

/* DESCRIÇÃO */
.team-description {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member {
    grid-column: auto;
  }
}

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

  .team-member {
    grid-column: auto;
  }
}
