body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f9fafb;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: white;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.25rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-buttons {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.primary {
  background: white;
  color: #111827;
}

.btn.secondary {
  border: 1px solid white;
  color: white;
}

.small-note {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

.hero-image img {
  max-width: 260px;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

section {
  padding: 3rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature h4 {
  margin: 0 0 0.5rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-it-works ol {
  padding-left: 1.25rem;
  line-height: 1.8;
}

.faq h4 {
  margin-bottom: 0.25rem;
}

.faq p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* Páginas legales */
.privacy-page .hero {
  background: white;
  color: #111827;
}

.privacy-page .hero h1 {
  font-size: 2rem;
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.privacy-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  color: #1f2937;
}

.privacy-content section {
  padding: 0;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-note {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ff7a00;
  margin-top: 2rem;
}
