:root {
  --primary: #74ff00;
  --primary-dark: #4ad100;
  --secondary: #0f111a;
  --gray: #f5f7fb;
  --text: #14161c;
  --text-light: rgba(255,255,255,0.85);
  --max-width: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}
header {
  background: radial-gradient(circle at top right, rgba(116,255,0,0.25), rgba(15,17,26,0.95)), url('https://images.unsplash.com/photo-1545239351-ef35f43d514b?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--text-light);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,17,26,0.95) 0%, rgba(15,17,26,0.6) 60%, transparent 100%);
}
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
}
nav img {
  height: 64px;
  width: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav a:hover {
  color: var(--primary);
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 4rem 0 6rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.78);
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: var(--primary);
  color: #051103;
  box-shadow: 0 10px 25px rgba(116,255,0,0.28);
  animation: pulse 1.8s infinite;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(116,255,0,0.38);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--text-light);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.hero-card {
  background: rgba(15,17,26,0.72);
  padding: 2rem;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  animation: floatIn 1.2s ease forwards;
  border: 1px solid rgba(116,255,0,0.15);
}
.hero-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.hero-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.82);
}
section {
  padding: 5rem 0;
}
section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0.6rem auto 0;
  border-radius: 999px;
  animation: shine 2.4s infinite;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
}
.service-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(15,17,26,0.08);
  box-shadow: 0 20px 40px rgba(15,17,26,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.9s forwards;
}
.service-card:nth-child(even) {
  animation-delay: 0.2s;
}
.service-card:nth-child(odd) {
  animation-delay: 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(15,17,26,0.12);
}
.service-card h3 {
  margin-bottom: 1rem;
  color: #0f111a;
}
.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: #4a4d57;
}
.about {
  background: linear-gradient(135deg, #0f111a 0%, #161926 60%, #1a1f2e 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(116,255,0,0.15);
  border-radius: 50%;
  top: -120px;
  right: -140px;
  filter: blur(60px);
}
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.about-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.1rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1.5rem;
}
.stat-box {
  background: rgba(255,255,255,0.07);
  padding: 1.8rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(116,255,0,0.2);
}
.stat-box strong {
  font-size: 2.2rem;
  display: block;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.cta-banner {
  background: radial-gradient(circle at center, rgba(50,112,0,0.58), rgba(15,17,26,0.95));
  color: var(--text-light);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0,0,0,0.24);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(116,255,0,0.25);
  top: -60px;
  left: -60px;
  border-radius: 50%;
  filter: blur(50px);
}
.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.8rem;
}
.differentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.diff-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid rgba(15,17,26,0.07);
  box-shadow: 0 18px 38px rgba(15,17,26,0.06);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), rgba(116,255,0,0.35));
}
.process {
  background: var(--gray);
}
.timeline {
  display: grid;
  gap: 1.8rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(116,255,0,0.5), rgba(15,17,26,0.2));
}
.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}
.timeline-step span {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--text-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(15,17,26,0.25);
  border: 2px solid var(--primary);
}
.timeline-step div {
  background: #ffffff;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15,17,26,0.08);
  border: 1px solid rgba(15,17,26,0.06);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  padding: 2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15,17,26,0.08);
  position: relative;
  box-shadow: 0 20px 45px rgba(15,17,26,0.1);
}
.testimonial::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(116,255,0,0.5);
}
.faq {
  max-width: 880px;
  margin: 0 auto;
}
details {
  margin-bottom: 1rem;
  border: 1px solid rgba(15,17,26,0.1);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  background: #fff;
  transition: border 0.3s ease;
}
details[open] {
  border-color: var(--primary);
  box-shadow: 0 18px 36px rgba(15,17,26,0.08);
}
details summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  transform: rotate(45deg);
}
.contact {
  background: linear-gradient(135deg, rgba(15,17,26,0.95), rgba(15,17,26,0.8)), url('https://images.unsplash.com/photo-1545239351-ef35f43d514b?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: var(--text-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(116,255,0,0.2);
  box-shadow: 0 18px 36px rgba(0,0,0,0.36);
}
.contact-card h3 {
  margin-bottom: 1rem;
}
.contact-card a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-card a:hover {
  color: var(--primary);
}
.contact-card small {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}
form {
  display: grid;
  gap: 1rem;
}
form input,
form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}
form input:focus,
form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(116,255,0,0.15);
}
form textarea {
  min-height: 140px;
  resize: vertical;
}
footer {
  background: #080a0f;
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.95rem;
}
footer a {
  color: var(--primary);
  text-decoration: none;
}
/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(116,255,0,0.25); }
  50% { transform: scale(1.04); box-shadow: 0 18px 35px rgba(116,255,0,0.4); }
}
@keyframes shine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Responsividade */
@media (max-width: 960px) {
  nav ul {
    display: none;
  }
  header {
    min-height: auto;
  }
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline::before {
    left: 18px;
  }
  .timeline-step {
    gap: 1.1rem;
  }
  .timeline-step span {
    min-width: 42px;
    height: 42px;
  }
}
@media (max-width: 640px) {
  .hero-card {
    padding: 1.6rem;
  }
  .cta-banner {
    padding: 2.4rem 1.8rem;
  }
  section {
    padding: 4rem 0;
  }
}