:root {
  --bg-dark: #0b1320;
  --bg-light: #111a2b;
  --primary: #1ec8a5;
  --text: #e6e6e6;
  --muted: #a0a6b1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  scroll-behavior: smooth;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(11,19,32,0.9);
  backdrop-filter: blur(8px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header h1 {
  color: var(--primary);
  font-size: 1.4rem;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--primary);
}

section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: auto;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  animation: fadeUp 1s ease;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30,200,165,0.3);
}

h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
  opacity: 0;
}

.card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.steps {
  counter-reset: step;
}

.step {
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.text-muted {
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
}

footer {
  background: #070d17;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: auto;
}

.logo span {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-img img {
    margin: auto;
  }
}

/* =======================
   HERO COM LOGO
======================= */

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 550px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 60px; /* empurra para a direita */
}

.hero-image img {
  max-width: 4000px;   /* aumente aqui */
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.2);
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}