:root {
  color-scheme: light;
  --navy: #0f172a;
  --deep: #111827;
  --muted: #5b647a;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: rgba(37, 99, 235, 0.12);
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 32px rgba(15, 23, 42, 0.08);
  font-size: 16px;
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: #fbfdff;
  color: var(--deep);
  line-height: 1.6;
}

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

.hero {
  padding: 40px 0 80px;
  background: radial-gradient(circle at top left, #eef4ff, #ffffff 60%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
}

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

.button {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--surface);
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.button.ghost {
  border-color: var(--brand);
  color: var(--brand);
}

.button.outline {
  border-color: var(--border);
  background: #fff;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.metric {
  font-weight: 700;
  font-size: 1.4rem;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-card ul {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  padding-left: 0;
  list-style: none;
}

.hero-card li {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.hero-card-footer {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.stat-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
}

.trust {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-description {
  color: var(--muted);
}

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

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 180px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-bottom: 12px;
}

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

.card ul {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  padding-left: 18px;
}

.card li {
  list-style: disc;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.timeline-step {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 16px;
}

.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cases article {
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 16px;
}

.packages {
  align-items: stretch;
}

.package-card {
  position: relative;
}

.package-card.highlight {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}

.package-card.highlight::after {
  content: "Recomendado";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.case-metric {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.95rem;
}

.banner {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  margin: 0 auto;
  width: min(1120px, 90%);
}

.banner p {
  color: rgba(255, 255, 255, 0.72);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-info {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-highlight {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-highlight ul {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  list-style: none;
  padding-left: 0;
}

.contact-highlight li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.contact-highlight li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  margin-right: 16px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links .button.outline {
    text-align: center;
    padding: 12px 16px;
  }

  .hero {
    padding: 32px 0 64px;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
}
