/* Camioneros.com — custom overrides on top of Tailwind CDN */

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --gold: #f39c12;
  --dark: #1a1a1a;
  --gray: #4a5568;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
}

/* Nav */
.nav-link {
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }

/* Hero */
.hero-bg {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #c0392b 100%);
}

/* Cards */
.guide-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid var(--red);
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Steps */
.step-number {
  background: var(--red);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Cost table */
.cost-table th { background: #1a1a1a; color: white; }
.cost-table tr:nth-child(even) { background: #f9f9f9; }

/* CTA button */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-secondary:hover { background: #e67e22; }

/* FAQ */
.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--red); }
.faq-content { padding: 0 1rem 1rem; color: var(--gray); line-height: 1.7; }

/* Form */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--red);
}

/* Checklist */
.check-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.check-item.done { background: #f0fff4; }
.check-item.pending { background: #fffbeb; }
.check-icon { font-size: 1.25rem; flex-shrink: 0; }

/* Footer */
footer a:hover { color: var(--gold); }

/* Mobile */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem !important; }
}
