:root {
  --primary: #7ED957;
  --bg-1: #131313;
  --bg-2: #0B0B0B;
  --text: #ffffff;
}



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at 50% 30%, var(--bg-1) 0%, var(--bg-2) 70%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

/* CONTAINER PADRÃO */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HERO ================= */

.hero {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* WRAPPER */
.hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: grid;
  place-items: center;
}

/* LOGO */
.logo {
  align-items: center;
  width: 1000px;
  z-index: 1;
  margin-bottom: 100px;
}

/* TEXTO SOBREPOSTO */
.hero-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  text-align: center;
  padding: 0 20px clamp(20px, 8vw, 80px);
  z-index: 2;
}

/* TÍTULO */
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 10px;
}

/* TEXTO */
.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.85;
  max-width: 500px;
  margin-bottom: 20px;
}

/* BOTÃO */
.btn {
  background: var(--primary);
  color: #000;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #5fcf3a;
  transform: translateY(-2px);
}

/* ================= SERVICES ================= */

.services {
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
}

.services h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 40px;
}

/* GRID RESPONSIVO */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* CARD */
.card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.card p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary);
}

/* ================= FOOTER ================= */

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ================= RESPONSIVO ================= */

/* TABLET */
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    padding-bottom: 80px;
  }
}