:root {
  --bg-dark: #0d1117;
  --bg-light: #161b22;
  --border: #30363d;
  --text: #c9d1d9;
  --text-muted: #8b949e;
  --accent: #2f81f7;
  --accent-2: #7c3aed;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #1f2933, var(--bg-dark));
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}


.hero {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.cta {
  display: inline-flex;
  gap: .5rem;
  padding: .9rem 1.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  font-weight: 600;
}

.hero-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}


section {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}


.contact {
  border-top: 1px solid var(--border);
}

.contact-box {
  max-width: 500px;
  margin: auto;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: .8rem;
  background: #0d1117;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
}

.contact-box button {
  width: 100%;
  padding: .9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about {
  border-top: 1px solid var(--border);
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: 0.3s;
}

.stat:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.stat span {
  font-size: 1.6rem;
}

.stat strong {
  display: block;
  margin-top: 0.5rem;
}

.stat p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.portfolio {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem;
}

.portfolio h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.portfolio-subtitle {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

#home,
#sobre,
#servicos,
#contato {
  scroll-margin-top: 90px;
}

.chart {
  margin-top: 1.5rem;
}

.bar {
  margin-bottom: 1rem;
}

.bar span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.progress {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
  margin-top: 0.4rem;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  animation: grow 1.4s ease-out forwards;
}

@keyframes grow {
  from {
    width: 0;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.team {
  padding: 90px 10%;
  text-align: center;
}

.team h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #8b949e;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.team-card {
  background: #0d1117;
  border: 1px solid #21262d;
  border-radius: 16px;
  padding: 35px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.55);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #30363d;
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-card span {
  display: block;
  font-size: 0.95rem;
  color: #58a6ff;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.95rem;
  color: #c9d1d9;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 30px;
  color: #8b949e;
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  color: #c9d1d9;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #e1306c;
  transform: scale(1.15);
}


.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.social-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}


.social-main {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #58a6ff, #1f6feb);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(88,166,255,0.7);
  animation: pulseTech 2s infinite;
}


@keyframes pulseTech {
  0% {
    box-shadow: 0 0 0 0 rgba(88,166,255,0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(88,166,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(88,166,255,0);
  }
}

.social-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.social-fab:hover .social-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.social-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-item:hover {
  transform: scale(1.15);
}

.whatsapp { background: #25d366; }
.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.tiktok { background: #000; }
.github { background: #161b22; }

@media (max-width: 600px) {

  .hero {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  
  .social-fab {
    bottom: 18px;
    right: 18px;
  }

  .social-main {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }

  .social-item {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .contact-box {
    padding: 1.5rem;
  }

    nav {
    padding: 1rem 1.2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

 
  .about-stats {
    grid-template-columns: 1fr;
  }

 
  .team {
    padding: 70px 1.5rem;
  }

  .team h1 {
    font-size: 2rem;
  }
}

.nav-links.modern {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links.modern a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links.modern a i {
  font-size: 0.85rem;
}

.nav-links.modern a:hover {
  background: #21262d;
  color: var(--text);
}

.nav-links.modern .nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  font-weight: 600;
}

.nav-links.modern .nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

@media (max-width: 700px) {
  .nav-links.modern span {
    display: none;
  }

  .nav-links.modern {
    gap: 0.6rem;
  }

  .nav-links.modern a {
    padding: 0.5rem;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat strong {
  font-size: 1.2rem;
}

.stat p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.4;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.about-clean {
  padding: 160px 2rem;
}

.about-inner {
  max-width: 720px;
  margin: auto;
}

.about-eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-inner h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.about-inner h2 span {
  color: var(--text-muted);
}

.about-line {
  width: 60px;
  height: 1px;
  background: var(--text-muted);
  margin: 2.5rem 0;
}

.about-inner p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 1.2rem;
}

.about-clean {
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s ease;
}

.about-clean.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 0;
}

.about-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-text-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.about-text-block h2 span {
  color: var(--text-muted);
}

.about-text-block p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.about-text-block h2 {
  position: relative;
  width: fit-content;
  cursor: default;
}

.about-text-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.6s ease;
}

.about-text-block:hover h2::after {
  width: 100%;
}

.about-text-block p {
  transition: transform 0.5s ease, color 0.5s ease;
}

.about-text-block:hover p {
  transform: translateX(6px);
  color: var(--text);
}

.about-text-block {
  transition: transform 0.6s ease;
}

.about-text-block:hover {
  transform: translateY(-4px);
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
}

.about-reveal span {
  display: block;
  color: rgba(255,255,255,0.18);
  transition: color 0.35s linear;
}

.about-reveal {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.25;
}

.about-paragraphs {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #050505;
  color: #fff;
}

.processo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
}


.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}


.tag {
  color: #1e90ff;
  font-size: 13px;
  letter-spacing: 2px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 15px 0;
}

.descricao {
  color: #aaa;
  max-width: 420px;
  margin-bottom: 40px;
}

.timeline {
  border-left: 2px solid #1e90ff;
  padding-left: 30px;
}

.item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.icon {
  width: 36px;
  height: 36px;
  background: #0f172a;
  border: 2px solid #1e90ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item h3 {
  font-size: 18px;
}

.item p {
  color: #999;
  font-size: 14px;
}

.processo {
  padding: 120px 6%;
  background: radial-gradient(circle at top, #0b0f1a, #05070c);
}

.processo .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.processo .tag {
  color: #4da3ff;
  letter-spacing: 3px;
  font-size: 13px;
}

.processo h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 20px 0;
}

.processo .descricao {
  color: #aab0c0;
  max-width: 420px;
  margin-bottom: 50px;
}

.timeline {
  border-left: 2px solid rgba(77,163,255,.4);
  padding-left: 35px;
}

.timeline .item {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.timeline .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0c1220;
  border: 2px solid #4da3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline h3 {
  font-size: 18px;
}

.timeline p {
  font-size: 14px;
  color: #9aa1b3;
}

.grafico-box {
  background: linear-gradient(180deg, #0c1220, #070a12);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.05);
}

.grafico-box h3 {
  font-size: 22px;
}

.grafico-box p {
  font-size: 14px;
  color: #9aa1b3;
  margin-bottom: 30px;
}

.grafico {
  height: 240px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.barra {
  flex: 1;
  height: 0;
  background: linear-gradient(180deg, #4da3ff, #1b5cff);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 12px;
  padding-bottom: 8px;
  transition: height 1.6s cubic-bezier(.2,.8,.2,1);
}

.barra.destaque {
  box-shadow: 0 0 25px rgba(77,163,255,.6);
}


[data-animate] {
  opacity: 0;
  transform: translateY(35px);
  transition: all .9s cubic-bezier(.2,.8,.2,1);
}

[data-animate].ativo {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .processo .container {
    grid-template-columns: 1fr;
  }

  .processo h1 {
    font-size: 42px;
  }
}


.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: all .35s ease;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(77,163,255,.4);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.stat-icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  background: rgba(77,163,255,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat strong {
  font-size: 16px;
  display: block;
}

.stat p {
  font-size: 13px;
  color: #9aa1b3;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 120px 6%;
  text-align: center;
}

.services h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}


.service-card {
  padding: 35px 25px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
}


.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77,163,255,.6);
}


.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(77,163,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.service-icon i {
  font-size: 26px;
  color: #4da3ff;
}


.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #9aa1b3;
  line-height: 1.6;
}


@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 34px;
  }
}

.processo {
  background: transparent !important;
}

.grafico-box {
  background: transparent !important;
  border: none !important;
}


.bar:nth-child(1) .fill {
  background: linear-gradient(90deg, #22c55e, #16a34a); 
}

.bar:nth-child(2) .fill {
  background: linear-gradient(90deg, #3b82f6, #2563eb); 
}

.bar:nth-child(3) .fill {
  background: linear-gradient(90deg, #a855f7, #7c3aed); 
}

.bar:nth-child(4) .fill {
  background: linear-gradient(90deg, #f97316, #ea580c);
}


.hero-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


.progress {
  background: transparent !important;
  border: none !important;
  height: 10px;
}

.fill {
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.hero > div {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--text-muted);
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  max-width: 520px;
  color: var(--text-muted);
}

.hero .cta {
  margin-top: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(47,129,247,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(47,129,247,0.5);
}

nav {
  max-width: 1200px;
  margin: 18px auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(22,27,34,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.logo i {
  font-size: 1.1rem;
}

.nav-links.modern {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links.modern a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 999px;

  font-size: 0.9rem;
  color: var(--text-muted);

  transition: 
    background .35s ease,
    color .35s ease,
    transform .25s ease;
}


.nav-links.modern a i {
  font-size: 0.9rem;
}

.nav-links.modern a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.nav-links.modern a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: all .35s ease;
  transform: translateX(-50%);
}

.nav-links.modern a:hover::after {
  width: 55%;
}

.nav-links.modern .nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(47,129,247,0.35);
}

.nav-links.modern .nav-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(47,129,247,0.55);
}

.nav-links.modern .nav-cta::after {
  display: none;
}

@media (max-width: 800px) {
  nav {
    border-radius: 18px;
  }

  .nav-links.modern span {
    display: none;
  }

  .nav-links.modern a {
    padding: 10px 12px;
  }
}

body {
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

.faq {
  max-width: 700px;
  margin: 100px auto;
  text-align: center;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  background: #0f0f0f;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #141414;
}

.icon {
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #0b0b0b;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 20px;
  margin: 0;
  color: #bbb;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.animated-text span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  animation: fadeUp 0.4s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.social-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}

.social-main:hover {
  transform: scale(1.1) rotate(15deg);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.social-items {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.social-fab.active .social-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.social-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px currentColor;
}

.whatsapp { background: #25d366; }
.instagram { background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b, #6228d7); }
.tiktok { background: #000; }
.github { background: #111; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #050505;
  color: #fff;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  background: rgba(5,5,5,.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  z-index: 1000;
}

nav {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #3b82f6;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s;
}

.nav-links a:hover {
  color: #fff;
}

.team {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.team h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #888;
  margin-bottom: 60px;
}

 
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}


.team-card {
  background: linear-gradient(180deg, #0b0b0b, #070707);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 30px;
  transition: transform .4s, box-shadow .4s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59,130,246,.15);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #3b82f6;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-card span {
  font-size: 14px;
  color: #3b82f6;
}

.social-links {
  margin: 15px 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59,130,246,.15);
  color: #3b82f6;
  transition: transform .3s, background .3s;
}

.social-links a:hover {
  transform: scale(1.15);
  background: #3b82f6;
  color: #fff;
}

.team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
  margin-top: 15px;
}
