@font-face {
  font-family: 'Nexa';
  src: url('../fonts/hinted-subset-NexaLight.woff2') format('woff2'),
       url('../fonts/hinted-subset-NexaLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/hinted-subset-NexaBold.woff2') format('woff2'),
       url('../fonts/hinted-subset-NexaBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/hinted-subset-Nexa-Black.woff2') format('woff2'),
       url('../fonts/hinted-subset-Nexa-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}



/* ==============================
   RESET / BASE
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050507; /* mais preto */
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168,85,247,.25), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(139,92,246,.20), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(124,58,237,.18), transparent 55%);
  z-index: -1;
  pointer-events: none;
}


@keyframes floatGlow {
  0% { transform: translate(-10%, -10%); }
  50% { transform: translate(10%, 5%); }
  100% { transform: translate(-5%, 15%); }
}


/* ==============================
   NAVBAR (SOBRE HERO)
============================== */
.navbar {
  position: absolute; /* sobreposto ao hero */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 20px 42px;
  z-index: 10;
  margin-top: 30px;
}

/* LOGO */
.navbar-brand img {
  height: 56px;
}

/* LINKS */
.navbar-nav .nav-link {
  color: #eaeaea;
  font-weight: 500;
  margin: 0 18px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #a855f7;
}

/* MOBILE TOGGLER */
.navbar-toggler {
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;

 background: transparent;
  overflow: hidden;
}


/* ==============================
   HERO TEXTO
============================== */
.hero h1 {
  font-family: 'Nexa', sans-serif; /* adicionamos isso */
  font-size: 4rem;
  font-weight: 900; /* Black fica mais impactante */
  line-height: 1.15;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.hero h1 span {
  color: #a855f7;
}

.hero p {
  font-family: 'Nexa', sans-serif; /* adicionamos isso */
  font-weight: 300; /* Light para contraste elegante */
  margin-top: 30px;
  font-size: 1.3rem;
  color: #bfbfbf;
  max-width: 580px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}


/* ==============================
   BOTÃO HERO
============================== */
.btn-focus {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #ffffff;
  border-radius: 30px;
  padding: 15px 38px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  margin-top: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.6s;
  box-shadow: 0 0 12px #a855f7, 0 0 24px #7c3aed, 0 0 36px #a855f7;
}

.btn-focus:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #a855f7, 0 0 40px #7c3aed, 0 0 60px #a855f7;
}

/* ==============================
   HERO IMAGEM
============================== */
.hero-img {
  width: 160%;
  max-width: none;
  filter: drop-shadow(0 0 120px rgba(168, 85, 247, 0.8));
  position: relative;
  left: -140px; /* mais pra esquerda */
  z-index: 5;
  margin-left: -100px;

  opacity: 0;
  animation: fadeInHeroImg 1s ease forwards;
}


/* ==============================
   ANIMAÇÕES
============================== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInHeroImg {
  from {
    opacity: 0;
    transform: translateY(40px) scale(1.25);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1.25);
  }
}

/* ==============================
   RESPONSIVO
============================== */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 3.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    font-size: 1.15rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img {
    width: 170%;
    max-width: 400px;
    position: static;
    left: -100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    display: block;
    transform: scale(1);
  }

  .navbar-brand img {
    height: 48px;
  }
}

/* ==============================
   CARDS DE SERVIÇOS - COMPACTO
============================== */
.services-section {
  padding: 80px 0;
  background: transparent;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  color: #8970db;
  font-size: 2.5rem;
  font-weight: 700;
}

.services-header p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 15px auto 0;
}

.services-header p span {
  color: #8970db;
  font-weight: 600;
}

/* Wrapper */
.services-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track continua igual */
.services-track {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Card vertical */
.service-card {
  min-width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.45s ease;
  filter: blur(3px);
  opacity: 0.4;
  transform: scale(0.8);
}
/* Imagem ocupa tudo */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card ativo (centro) */
.service-card.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 30px 60px rgba(137, 112, 219, 0.4);
  z-index: 10;
}.services-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.services-track {
  display: flex;
  gap: 30px;
  padding: 60px 0;
  transition: transform 0.4s ease;
}

/* Card base */
.service-card {
  min-width: 260px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  filter: blur(3px);
  opacity: 0.45;
  transform: scale(0.85);
}

/* Imagem */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card em destaque */
.service-card.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.0);
  box-shadow: 0 30px 60px rgba(137, 112, 219, 0.4);
  z-index: 2;
}


/* Efeito opcional: overlay suave */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* Indicador */
.services-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #8970db;
  font-size: 0.9rem;
  opacity: 0.9;
}

.services-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid #8970db;
  border-radius: 14px;
  position: relative;
}

.services-indicator .wheel {
  width: 4px;
  height: 8px;
  background: #8970db;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollHint 1.6s infinite;
}

@keyframes scrollHint {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  60% { opacity: 1; transform: translate(-50%, 8px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Cursor drag */
.services-track {
  cursor: grab;
}

.services-track.dragging {
  cursor: grabbing;
}

/* ==============================
   SETAS SERVIÇOS
============================== */
.services-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.services-arrows .arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all .3s ease;
}

.services-arrows .arrow:hover {
  background: #8970db;
  border-color: #8970db;
  transform: scale(1.1);
}

/* Mobile: setas maiores */
@media (max-width: 768px) {
  .services-arrows .arrow {
    width: 52px;
    height: 52px;
    font-size: 1.9rem;
  }
}

/* ==============================
   Portfolio
============================== */
.portfolio-icons {
  padding: 100px 0;
  background: transparent;
}

.portfolio-icon-card {
  display: block;
  height: 100%;
  padding: 40px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.portfolio-icon-card:hover {
  transform: translateY(-8px);
  border-color: #9400D3;
  box-shadow: 0 20px 50px rgba(148,0,211,0.35);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9400D3, #5e17eb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 46px;
  filter: brightness(0) invert(1);
}

.portfolio-icon-card h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-icon-card p {
  color: #b5b5c3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.portfolio-icon-card .cta {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #9400D3;
}

.portfolio-icon-card:hover .cta {
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .portfolio-icons {
    padding: 70px 0;
  }
}

.card-portfolio {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.4,.2,.2,1);
}

.card-portfolio.show {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-icon-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;

  /* animação */
  opacity: 0;
  transform: translateY(40px);
}


.portfolio-icon-card .cta {
  margin-top: auto;
  padding-top: 20px;
}


.portfolio-icon-card.show {
  opacity: 1;
  transform: translateY(0);
}

.services-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.4,.2,.2,1);
}

.services-header.show {
  opacity: 1;
  transform: translateY(0);
}


/* ==============================
  Resultados | Feedbacks
============================== */

.resultados {
  position: relative;
  min-height: 100vh;
  padding: 120px 8vw;

background: transparent;

  color: #fff;
  overflow: hidden;
}

.container-resultados {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.resultados h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
}

.resultados h2 span {
  color: #8b5cf6;
}

.subtexto {
  max-width: 620px;
  margin: 20px auto 80px;
  font-size: 17px;
  line-height: 1.6;
  opacity: .85;
}

/* MÉTRICAS */
.metricas {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.metrica strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #facc15;
}

.metrica span {
  font-size: 15px;
  opacity: .8;
}

/* FEEDBACK */
.feedback-slider {
  max-width: 600px;
  margin: 0 auto;
}

.feedback {
  animation: fadeUp .6s ease;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 14px;
}

.feedback h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.stars {
  color: #facc15;
  margin-bottom: 20px;
}

.feedback p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .9;
}

/* DOTS */
.dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.dot.ativo {
  background: #facc15;
}



/* ANIMAÇÃO */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .metricas {
    gap: 40px;
  }
}

.results-numbers {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.number-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.number-item.show {
  opacity: 1;
  transform: translateY(0);
}

.number-item h3 {
  font-size: 3rem;
  font-weight: 800;
color: #facc15; /* AMARELO */
}

.number-item p {
  color: #b5b5c3;
}

.feedback-arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.feedback-arrows button {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 28px;
  cursor: pointer;
  transition: opacity .2s ease;
}

.feedback-arrows button:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .results-numbers .counter {
    font-size: 2.2rem; /* ajuste fino aqui */
    line-height: 1.1;
  }
}

/* ==============================
   Sobre/equipe
============================== */
.about-section {
  padding: 120px 0;
background: transparent;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 980px;
  margin: 0 auto;
}

/* Item */
.team-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Foto */
.team-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(139,92,246,.35));
}

/* Texto */
.team-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.team-info .role {
  display: block;
  color: #8b5cf6;
  font-weight: 600;
  margin: 6px 0 16px;
}

.team-info .bio {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 18px;
}

/* Skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills li {
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(139,92,246,.15);
  color: #e9ddff;
}

/* Responsivo */
@media (max-width: 768px) {
  .team-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-item img {
    margin: 0 auto;
  }

  .skills {
    justify-content: center;
  }
}

/* Inverte layout (foto direita) */
.team-item.reverse {
  grid-template-columns: 1fr 160px;
}

.team-item.reverse img {
  order: 2;
}

.team-item.reverse .team-info {
  order: 1;
  text-align: right;
}

.team-item.reverse .skills {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .team-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-item .team-text {
    margin-top: 24px;
  }
}


/* ==============================
   CONTATO
============================== */

.contact-section {
  padding: 140px 0;
background: transparent;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ==============================
   TEXTO (ESQUERDA)
============================== */

.contact-text .contact-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8b5cf6;
}

.contact-text h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 26px;
}

.contact-text h2 span {
  color: #8b5cf6;
}

.contact-text p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 30px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-points li {
  font-size: .95rem;
  margin-bottom: 12px;
  opacity: .85;
}

/* ==============================
   FORM (DIREITA)
============================== */

.contact-form-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 44px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* CAMPOS */
.contact-form .field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-size: .75rem;
  margin-bottom: 8px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .7;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
  resize: none;
  transition: background .25s ease, border .25s ease, box-shadow .25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.45);
}

/* HOVER */
.contact-form input:hover,
.contact-form textarea:hover {
  background: rgba(255,255,255,0.09);
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.12);
  border-color: #8b5cf6;
  box-shadow:
    0 0 0 3px rgba(139,92,246,.25),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* BOTÃO */
.contact-form .btn-focus {
  margin-top: 10px;
  transition: box-shadow .3s ease, transform .2s ease;
}

.contact-form .btn-focus:hover {
  transform: scale(0.98);
  box-shadow:
    0 0 0 2px rgba(139,92,246,.35),
    0 0 30px rgba(139,92,246,.55);
}

.contact-form .btn-focus:active {
  transform: scale(0.96);
}

/* ==============================
   RESPONSIVO
============================== */

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-text {
    text-align: center;
  }

  .contact-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==============================
   FOOTER
============================== */

.footer {
  padding: 100px 0 40px;
  background: linear-gradient(
    to top,
    #05010a,
    rgba(139,92,246,.08)
  );
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 340px;
  font-size: .95rem;
  line-height: 1.6;
  opacity: .85;
}

/* TITLES */
.footer h4 {
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .75;
}

/* LISTAS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  font-size: .95rem;
  margin-bottom: 10px;
  opacity: .85;
}

/* LINKS */
.footer a {
  color: inherit;
  text-decoration: none;
  position: relative;
  opacity: .85;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #8b5cf6;
  transition: width .3s ease;
}

.footer a:hover::after {
  width: 100%;
}

/* SOCIAL */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  opacity: .7;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ==============================
   RESPONSIVO
============================== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* ==============================
   botão
============================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #a855f7;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(168,85,247,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 15px 35px rgba(168,85,247,.6);
}

/* quando aparecer */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
