/* Disparo Certo - Landing Page */
:root {
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --green: #25d366;
  --green-hover: #20bd5a;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --border: #30363d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  display: flex;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.logo-text {
  display: inline-block;
}

.logo-disparo {
  color: #1a6b4f;
}

.logo-certo {
  color: #2d9d6b;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--green);
}

.hero-checks {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-checks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.hero-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cta-button {
  display: inline-block;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--green-hover);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero visual - dashboard mock */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mock {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.chart-bar, .chart-line, .chart-pie {
  position: absolute;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.05));
  border-radius: 6px;
}

.chart-bar { width: 45%; height: 25%; bottom: 2rem; left: 1.5rem; }
.chart-line { width: 50%; height: 22%; top: 2rem; right: 1.5rem; }
.chart-pie { width: 35%; height: 35%; bottom: 2rem; right: 1.5rem; border-radius: 50%; }

.wa-icon-hero, .email-icon-hero {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
}

.wa-icon-hero {
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -60%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.wa-icon-hero svg, .email-icon-hero svg {
  width: 36px;
  height: 36px;
}

.email-icon-hero {
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--bg-dark);
  top: 45%;
  left: 55%;
  transform: translate(-20%, -40%);
}

.email-icon-hero svg {
  width: 22px;
  height: 22px;
}

/* Benefits */
.benefits {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  min-height: 1.5em;
  line-height: 1.5;
}

.benefit-item .check {
  margin-top: 0.15em;
}

/* Segunda coluna: alinhar bloco (ícone + texto) ao final da área */
.benefits-grid .benefit-item:nth-child(2n) {
  justify-content: flex-end;
}

.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mission {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Services */
.services {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Ideal for */
.ideal-for {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.ideal-for h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.ideal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ideal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 1rem;
}

.ideal-icon {
  font-size: 2.5rem;
}

/* How it works */
.how-it-works {
  padding: 4rem 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  min-width: 140px;
}

.step-icon {
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.step-wa {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.step-wa svg {
  width: 28px;
  height: 28px;
}

.step span {
  font-size: 0.9rem;
  color: var(--text);
}

.step-arrow {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--green));
  border-radius: 1px;
}

.how-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Final */
.cta-final {
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-final h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* Footer */
.footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-checks li {
    text-align: left;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--border), var(--green));
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 0 3rem;
  }

  .ideal-grid {
    gap: 1.5rem;
  }
}
