:root {
  --green-primary: #00e676;
  --green-secondary: #00c853;
  --green-lime: #80ff00;
  --dark: #121212;
  --graphite: #2e2e2e;
  --white: #ffffff;
  --text: #e8f5ee;
  --gray: #9ea7a1;
  --surface: #1b1b1b;
  --surface-soft: #202020;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--white);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--green-primary);
}

.brand img {
  max-height: 85px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--green-primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(120deg, var(--green-primary), var(--green-secondary));
  color: var(--dark);
}

.btn-outline {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.btn-outline:hover {
  background: rgba(0, 230, 118, 0.1);
}

.btn-whatsapp {
  background: var(--green-primary);
  color: var(--dark);
}

.hero {
  padding: 7rem 0 5.5rem;
  background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.2), transparent 38%),
    radial-gradient(circle at bottom left, rgba(0, 200, 83, 0.2), transparent 35%);
}

.eyebrow {
  color: var(--green-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 760px;
  color: #d5dfd8;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.hero-highlights li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  padding: 0.7rem;
  font-size: 0.95rem;
}

.hero-highlights i {
  color: var(--green-primary);
  margin-right: 0.4rem;
}

.about p {
  color: #d4ddd6;
  margin-bottom: 0.75rem;
  max-width: 880px;
}

.about {
  background:
    radial-gradient(circle at 12% 15%, rgba(128, 255, 0, 0.06), transparent 30%),
    linear-gradient(180deg, #131313 0%, #1a1a1a 100%);
}

.services {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.03), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(0, 230, 118, 0.04), transparent 34%),
    linear-gradient(180deg, #151515 0%, #202020 100%);
}

.services .section-intro {
  color: #bcc6bf;
}

.service-block + .service-block {
  margin-top: 3rem;
}

.service-block h3 {
  margin-bottom: 1.2rem;
  color: var(--green-primary);
  font-size: 1.4rem;
}

/* Cor por seção de serviços */
.services .service-block:nth-of-type(1) h3 {
  color: #00e676;
}

.services .service-block:nth-of-type(2) h3 {
  color: #80ff00;
}

.services .service-block:nth-of-type(3) h3 {
  color: #66ff66;
}

.services .service-block:nth-of-type(1) .card {
  border-top: 2px solid rgba(0, 230, 118, 0.5);
}

.services .service-block:nth-of-type(2) .card {
  border-top: 2px solid rgba(128, 255, 0, 0.5);
}

.services .service-block:nth-of-type(3) .card {
  border-top: 2px solid rgba(102, 255, 102, 0.5);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, #212121 0%, #1b1b1b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: 0.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services .card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 118, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.card i {
  color: var(--green-primary);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  color: #cad3cc;
  font-size: 0.95rem;
}

.card span {
  display: block;
  margin-top: 0.6rem;
  color: var(--green-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 80%, rgba(128, 255, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #101010 0%, #171717 100%);
}

.section-soft {
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 230, 118, 0.08), transparent 36%),
    linear-gradient(180deg, #181818 0%, #212121 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.gamer ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.2rem;
}

.gamer li {
  margin-bottom: 0.4rem;
}

.gamer {
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 200, 83, 0.09), transparent 33%),
    linear-gradient(180deg, #131313 0%, #1d1d1d 100%);
}

#diferenciais {
  background:
    radial-gradient(circle at 85% 80%, rgba(128, 255, 0, 0.07), transparent 32%),
    linear-gradient(180deg, #121212 0%, #191919 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-grid article {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.1rem;
}

.feature-grid i {
  color: var(--green-primary);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.feature-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.feature-grid p {
  color: #c6d0c9;
  font-size: 0.94rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.steps article {
  background: var(--surface);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-primary);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 0.8rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-slide blockquote {
  background: var(--surface);
  border-left: 4px solid var(--green-primary);
  border-radius: 0.55rem;
  padding: 1.35rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
}

.rating-stars i {
  color: #ffd54a;
  font-size: 0.95rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #1d1d1d;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: #252525;
  border-color: rgba(0, 230, 118, 0.5);
  transform: translateY(-1px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #4e4e4e;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dots button.active {
  background: var(--green-primary);
  transform: scale(1.15);
}

.testimonials {
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 230, 118, 0.07), transparent 35%),
    linear-gradient(180deg, #141414 0%, #1c1c1c 100%);
}

.faq {
  background:
    radial-gradient(circle at 16% 80%, rgba(128, 255, 0, 0.06), transparent 34%),
    linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
}

.contato {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 230, 118, 0.1), transparent 36%),
    linear-gradient(180deg, #111111 0%, #1a1f1b 100%);
}

.testimonial-slide blockquote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--green-primary);
  font-style: normal;
  font-weight: 600;
}

.faq details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
}

.faq details + details {
  margin-top: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 0.6rem;
  color: #ced7d1;
}

.contact-list {
  list-style: none;
  margin: 1.2rem 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.contact-list i {
  color: var(--green-primary);
  width: 20px;
  margin-top: 0.15rem;
  flex: 0 0 20px;
}

.contact-label {
  font-weight: 700;
}

.contact-list a {
  color: #d6ffe7;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--green-primary);
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 1.2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #101010;
  color: var(--white);
  border-radius: 0.5rem;
  padding: 0.72rem;
  font-family: inherit;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  background: linear-gradient(180deg, #111111 0%, #101010 100%);
}

.footer-content {
  display: grid;
  gap: 0.9rem;
}

.footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-content nav a {
  color: var(--gray);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: var(--shadow);
  z-index: 1300;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 4%;
    top: 78px;
    min-width: 240px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-wrapper .btn-whatsapp {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 5.8rem;
  }
}
