/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn--sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; }

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--brand-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 119, 230, 0.40);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
}
.btn-secondary:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.section--dark .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.section--dark .btn-secondary:hover {
  background: var(--white);
  color: var(--brand-navy);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  height: auto;
  padding: 0;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--brand-blue-deep); }
.btn-ghost::after {
  content: " →";
  transition: transform 200ms var(--ease);
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: var(--white); }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: var(--transition);
}
.card--hover:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.10);
  color: var(--brand-blue);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.card__body { color: var(--text-mid); font-size: 15px; }

.card--featured {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}
.card--featured h3, .card--featured h2 { color: var(--white); }
.card--featured p { color: rgba(255,255,255,0.82); }
.card--featured::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0,174,239,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Pills / badges ──────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 174, 239, 0.12);
  color: var(--brand-blue);
}
.pill--live { background: rgba(0, 200, 150, 0.12); color: var(--success); }
.pill--soon { background: rgba(245, 166, 35, 0.12); color: var(--warning); }

/* ── Form inputs ─────────────────────────────────────────── */
.field { margin-bottom: var(--space-md); }
.field__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: var(--transition);
}
.field__textarea { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 230, 0.12);
}
.field__input::placeholder { color: var(--text-muted); }

/* ── Stats ────────────────────────────────────────────────── */
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Form status ──────────────────────────────────────────── */
.form-status {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status--ok {
  background: rgba(0, 200, 150, 0.10);
  color: var(--success);
  border: 1px solid rgba(0, 200, 150, 0.30);
}
.form-status--err {
  background: rgba(233, 75, 75, 0.10);
  color: var(--error);
  border: 1px solid rgba(233, 75, 75, 0.30);
}
.form-status a { color: inherit; text-decoration: underline; }

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}
.logo__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.section--dark .logo,
.footer .logo { color: var(--white); }
