/* Style.css - Caçando Produto Landing Page Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-card: #1f2937;
  --bg-card-hover: #374151;
  --border-color: #2e3b4e;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --color-blue: #2563eb;
  --color-blue-hover: #1d4ed8;
  --color-blue-glow: rgba(37, 99, 235, 0.15);
  
  --color-orange: #f97316;
  --color-yellow: #eab308;
  --color-green: #10b981;
  --color-red: #ef4444;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Base Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header & Navigation */
header {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-blue), #3b82f6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.btn-header {
  background-color: var(--color-blue);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px var(--color-blue-glow);
  transition: all 0.2s ease !important;
}

.btn-header:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 96px 0 64px 0;
  position: relative;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 60%, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background-color: var(--color-blue);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #4b5563;
  transform: translateY(-2px);
}

.os-compatibility {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.os-compatibility svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Feature Preview (Mockup Dashboard) */
.preview-mockup {
  margin-top: 48px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.mockup-header {
  height: 36px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  padding-left: 16px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background-color: var(--color-red); }
.dot-yellow { background-color: var(--color-yellow); }
.dot-green { background-color: var(--color-green); }

.mockup-body {
  padding: 24px;
  background-color: #0b0f19;
}

.mockup-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 20px;
}

.mockup-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  background-color: var(--bg-secondary);
}

.mockup-card.amazon {
  border-left: 4px solid var(--color-orange);
}

.mockup-card.ml {
  border-left: 4px solid var(--color-yellow);
}

.mockup-title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-detail {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mockup-row:last-child {
  margin-bottom: 0;
}

.mockup-label {
  color: var(--text-secondary);
}

.mockup-value {
  font-weight: 700;
}

.mockup-result {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.02) 100%);
  border: 1px dashed var(--color-blue);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.result-item h4 {
  font-size: 24px;
  color: var(--color-green);
  font-weight: 800;
}

.result-item p {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* Features Section */
.features-section {
  padding: 96px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Steps (Como Usar) Styling */
.steps-wrapper {
  max-width: 800px;
  margin: 48px auto 0 auto;
}

.step-block {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.step-block:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 20px;
  width: 2px;
  height: calc(100% + 24px);
  background-color: var(--border-color);
  z-index: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 10px var(--color-blue-glow);
}

.step-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  flex-grow: 1;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.step-tip {
  background-color: rgba(234, 179, 8, 0.05);
  border-left: 3px solid var(--color-yellow);
  padding: 12px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: #fef08a;
}

/* Download CTA Card */
.download-cta {
  padding: 96px 0;
}

.cta-card {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background-color: #080c14;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* Responsive Grid adjustments */
@media (max-width: 968px) {
  .features-grid {
    grid-template-cols: 1fr;
    gap: 20px;
  }
  .mockup-grid {
    grid-template-cols: 1fr;
  }
  .mockup-result {
    grid-column: span 1;
    flex-direction: column;
    gap: 16px;
  }
  .hero h1 {
    font-size: 40px;
  }
}
