/*
Theme Name: Leilao Zap Theme
Description: Tema premium de alta conversão para o sistema de Leilões no WhatsApp.
Author: Antigravity
Version: 1.0
*/

:root {
  --bg-dark: #0f1115;
  --bg-card: #1a1d24;
  --primary: #25D366; /* WhatsApp Green */
  --primary-hover: #1DA851;
  --secondary: #8b5cf6; /* Neon Purple */
  --text-light: #f3f4f6;
  --text-muted: #9ca3af;
  --border: #2d3748;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.btn-cta-small {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-cta-small:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
  padding: 10rem 5% 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(15,17,21,0) 70%);
  z-index: -1;
}

.tagline {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.headline span {
  color: var(--primary);
}

.sub-headline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.btn-cta-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-cta-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.social-proof {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Agitação da Dor */
.pain-section {
  padding: 5rem 5%;
  background: #13151a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pain-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: #ef4444; /* red tint */
}

.pain-card h3 {
  color: #f87171;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Solução */
.solution-section {
  padding: 6rem 5%;
  position: relative;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.solution-card p {
  color: var(--text-muted);
}

/* Como Funciona */
.how-it-works {
  padding: 5rem 5%;
  background: #13151a;
  text-align: center;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #111;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
}

.step h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
  padding: 8rem 5%;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-dark), #000);
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.guarantee {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

/* Responsivo */
@media (max-width: 768px) {
  .headline { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .steps-container { flex-direction: column; }
}
