
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =====================
   Variables
===================== */
:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --brand:#16a34a;
  --brand2:#0ea5e9;
  --border:#e5e7eb;
}

/* =====================
   Reset base
===================== */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

/* =====================
   Layout general
===================== */
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:22px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* antes space-between */
  gap:18px;
  margin-bottom:18px;
}


/* =====================
   BRANDING (logo + texto + lema)
===================== */
.brandLink{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo{
  height:110px;
  width:auto;
}

.brandTextWrap{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brandText{
  font-weight:900;
  font-size:2rem;
  letter-spacing:.6px;
  text-transform:lowercase;
  line-height:1.1;
}

.brandTagline{
  font-size:1rem;
  font-weight:600;
  color:var(--muted);
  margin-top:4px;
}

/* =====================
   Navegación (si luego la usas)
===================== */
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.navlink{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
}

.navlink:hover{
  background:#fff;
}

.navlink.btn{
  background:var(--text);
  color:#fff;
}

/* =====================
   HERO
===================== */
.hero{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:18px;
  align-items:stretch;
  margin-top:10px;
}

.heroText{
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:#fff;
  margin-bottom:12px;
}

.hero h1{
  font-size:2.25rem;
  line-height:1.1;
  margin:0 0 10px;
}

.hero h1 span{
  color:var(--brand);
}

.hero p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.45;
  margin:0 0 16px;
}

/* =====================
   CTAs
===================== */
.ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:800;
}

.cta.primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

.cta.ghost{
  background:#fff;
}

.cta:hover{
  transform:translateY(-1px);
}

/* =====================
   Trust bullets
===================== */
.trust{
  display:grid;
  gap:8px;
  margin-top:10px;
}

.trustItem{
  color:var(--muted);
  font-size:.95rem;
}

/* =====================
   Card derecha
===================== */
.heroCard{
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
}

.heroCard h3{
  margin:0 0 8px;
}

.list{
  margin:0 0 12px;
  padding-left:16px;
  color:var(--muted);
}

.cardNote{
  border-top:1px dashed var(--border);
  padding-top:12px;
  color:var(--muted);
  font-size:.95rem;
}

/* =====================
   Grid inferior
===================== */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}

.box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}

.box h2{
  margin:0 0 8px;
  font-size:1.1rem;
}

.box p{
  margin:0;
  color:var(--muted);
  line-height:1.45;
}

.muted{
  color:var(--muted);
}

/* =====================
   Tags
===================== */
.tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.tag{
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 10px;
  background:#fff;
  color:#111;
}

/* =====================
   Footer
===================== */
.footer{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid var(--border);
}

/* =====================
   Responsive
===================== */
@media(max-width:920px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .top{flex-direction:column;align-items:flex-start}
}

@media (max-width:768px){
  .logo{height:70px}
  .brandText{font-size:1.5rem}
  .brandTagline{font-size:.9rem}
}

.topCta{
  margin-left:auto;                 /* empuja a la derecha */
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}

.topCtaTitle{
  font-weight:900;
  line-height:1.1;
}

.topCtaSub{
  font-size:.92rem;
  color:var(--muted);
  margin-top:2px;
}

.topCtaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:900;
  background:var(--text);
  color:#fff;
  white-space:nowrap;
}

.topCtaBtn:hover{
  transform:translateY(-1px);
}

/* Responsive: en móvil lo bajamos */
@media (max-width: 920px){
  .topCta{
    margin-left:0;
    width:100%;
    justify-content:space-between;
  }
}

/* =====================
   FOOTER
===================== */
.footer{
  margin-top:40px;
  padding-top:28px;
  border-top:1px solid var(--border);
}

.footerGrid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:28px;
}

.footerBrand{
  font-weight:900;
  font-size:1.2rem;
  margin-bottom:8px;
}

.footerTitle{
  font-weight:800;
  margin-bottom:8px;
}

.footerText{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.5;
}

.footerText.small{
  font-size:.9rem;
  margin-top:8px;
}

.footerLinks{
  list-style:none;
  padding:0;
  margin:0;
}

.footerLinks li{
  margin-bottom:6px;
}

.footerLinks a{
  color:var(--muted);
}

.footerLinks a:hover{
  color:var(--text);
}

.footerBottom{
  margin-top:22px;
  padding-top:14px;
  border-top:1px dashed var(--border);
  font-size:.9rem;
  color:var(--muted);
}

/* Responsive */
@media(max-width:920px){
  .footerGrid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

/* =====================
   Forms
===================== */
.formWrap{
  display:flex;
  justify-content:center;
  margin-top:12px;
}

.formCard{
  width:100%;
  max-width:720px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
}

.formTitle{
  margin:0 0 8px;
  font-size:1.6rem;
}

.formSubtitle{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.5;
}

.form{
  display:grid;
  gap:12px;
}

.field{
  display:grid;
  gap:6px;
}

.field span{
  font-weight:800;
  font-size:.95rem;
}

.field input,
.field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  background:#fff;
}

.field input:focus,
.field select:focus{
  border-color: var(--brand2);
}

.formBtn{
  width:100%;
}

.formNote{
  margin-top:6px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.45;
}

.alert{
  border-radius:16px;
  padding:12px 14px;
  border:1px solid var(--border);
  margin:10px 0 14px;
}

.alert ul{ margin:0; padding-left:18px; }

.alertErr{
  background:#fff;
}

.alertOk{
  background:#fff;
}

.storeRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0;
}

.storeBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:900;
  background:var(--text);
  color:#fff;
}

.storeBtn.ghost{
  background:#fff;
  color:var(--text);
}

/* =====================
   Pro Forms (Ahivooy)
===================== */
.formWrap{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.formCard{
  width:100%;
  max-width:860px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
}

.formTitle{
  margin:0 0 8px;
  font-size:1.75rem;
  letter-spacing:-.3px;
}

.formSubtitle{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.55;
}

/* ✅ aquí está la magia: layout pro */
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 14px;
  align-items:end;
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.field span{
  font-weight:800;
  font-size:.92rem;
  color:#111827;
}

.field input,
.field select{
  height:46px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.field input::placeholder{
  color:#9ca3af;
}

.field input:focus,
.field select:focus{
  border-color: rgba(14,165,233,.8);
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}

/* Botón full width abajo */
.formBtn{
  grid-column: 1 / -1;
  height:48px;
  border-radius:14px;
}

/* Nota full width */
.formNote{
  grid-column: 1 / -1;
  margin-top:4px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

/* Alertas */
.alert{
  border-radius:16px;
  padding:12px 14px;
  border:1px solid var(--border);
  margin:0 0 14px;
  grid-column: 1 / -1;
  background:#fff;
}

.alertErr{
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 0 0 4px rgba(239,68,68,.08);
}

.alertOk{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 4px rgba(34,197,94,.08);
}

/* Responsive */
@media (max-width: 820px){
  .form{
    grid-template-columns: 1fr;
  }
}

.hp{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  pointer-events:none;
}

.field textarea{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  background:#fff;
  color:var(--text);
  resize:vertical;
  min-height:110px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea:focus{
  border-color: rgba(14,165,233,.8);
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}

/* Campo que ocupa todo el ancho del grid */
.fieldFull{
  grid-column: 1 / -1;
}

/* =========================
   BASE
========================= */
:root {
  --brand: #0f766e;
  --brand-dark: #115e59;
  --bg: #f8fafc;
  --border: #e5e7eb;
  --ok: #16a34a;
  --error: #dc2626;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: #111827;
}

/* =========================
   FORMULARIOS (GLOBAL)
========================= */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  max-width: 720px;
  margin-bottom: 24px;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 13px;
  color: #374151;
  margin-bottom: 4px;
}

input, select, textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
}

/* =========================
   BOTONES
========================= */
.btn {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

/* =========================
   MENSAJES
========================= */
.msg-ok {
  color: var(--ok);
  font-size: 14px;
  margin-top: 8px;
}

.msg-error {
  color: var(--error);
  font-size: 14px;
  margin-top: 8px;
}

.businessCallout{
  padding: 28px 16px;
}

.businessWrap{
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
}

.businessWrap h2{
  margin: 0 0 8px 0;
}

/* =========================================================
   A H I V O O Y  —  BRAND THEME (NAVY + ORANGE)
   ✅ Pegar al FINAL del app.css para sobreescribir lo anterior
========================================================= */

/* 1) TOKENS (unificamos paleta) */
:root{
  --brand-navy:#0B1F3B;
  --brand-navy-2:#102A4E;

  --brand:#F97316;        /* CTA principal */
  --brand2:#FF8A3D;       /* hover */

  --bg:#0A162B;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text:#F5F7FB;
  --muted: rgba(245,247,251,.72);
  --border: rgba(255,255,255,.14);

  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* 2) BASE */
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, #12335f 0%, var(--bg) 55%, #07101F 100%);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }

/* 3) LAYOUT */
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:22px;
}

/* 4) TOPBAR / HEADER */
.top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
  margin-bottom:18px;

  padding: 12px 14px;
  border-radius: 18px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brandLink{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo{
  height: 92px;
  width:auto;
}

.brandText{
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: .6px;
  text-transform: lowercase;
  line-height: 1.1;
}

.brandTagline{
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-top:4px;
}

/* 5) TOP CTA (App próximamente) */
.topCta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.05);
}

.topCtaTitle{
  font-weight: 900;
  line-height: 1.1;
}

.topCtaSub{
  font-size:.92rem;
  color: var(--muted);
  margin-top:2px;
}

.topCtaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border: 1px solid rgba(249,115,22,.45);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#0B1020;
  white-space:nowrap;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.topCtaBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(249,115,22,.22);
  filter: brightness(1.02);
}

/* 6) HERO + CARDS */
.heroText,
.heroCard,
.box,
.formCard,
.businessWrap{
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05)) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.pill{
  color: var(--text);
  background: linear-gradient(90deg, rgba(249,115,22,.18), rgba(255,138,61,.10));
  border: 1px solid rgba(249,115,22,.28);
  font-weight: 900;
}

.hero h1 span{
  color: var(--brand);
  text-shadow: 0 10px 30px rgba(249,115,22,.25);
}

.hero p,
.trustItem,
.list,
.box p,
.footerText,
.footerBottom,
.navlink{
  color: var(--muted) !important;
}

/* 7) CTA (reusamos tus clases) */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:900;
  background: rgba(255,255,255,.04);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.cta.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(249,115,22,.55);
  color:#0B1020;
}

.cta.ghost{
  background: rgba(11,31,59,.22);
  border-color: rgba(255,255,255,.18);
}

/* si usas .cta.outline en home */
.cta.outline{
  background: transparent;
  border-color: rgba(249,115,22,.45);
}
.cta.outline:hover{
  background: rgba(249,115,22,.10);
}

/* 8) TAGS */
.tag{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,31,59,.25);
  color: var(--text);
  font-weight: 900;
}
.tag:hover{
  border-color: rgba(249,115,22,.35);
  background: rgba(249,115,22,.10);
}

/* 9) BUSINESS CALLOUT (tu sección) */
.businessCallout{
  padding: 28px 16px;
}
.businessWrap{
  border-radius: 18px;
  border: 1px solid rgba(249,115,22,.22) !important;
  background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(255,255,255,.04)) !important;
}

/* 10) FORMS: inputs y focus naranja */
.field input,
.field select,
.field textarea{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text);
}

.field input::placeholder{ color: rgba(245,247,251,.55); }

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(249,115,22,.75);
  box-shadow: 0 0 0 4px rgba(249,115,22,.18);
  outline: none;
}

/* alerts */
.alert{ background: rgba(255,255,255,.05); }
.alertErr{
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 0 0 4px rgba(239,68,68,.10);
}
.alertOk{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 4px rgba(34,197,94,.10);
}

/* 11) FOOTER */
.footer{
  border-top:1px solid var(--border);
}

/* 12) Responsive */
@media(max-width:920px){
  .top{flex-direction:column;align-items:flex-start}
  .topCta{
    margin-left:0;
    width:100%;
    justify-content:space-between;
  }
  .logo{height:70px}
  .brandText{font-size:1.5rem}
  .brandTagline{font-size:.9rem}
}

/* ===== FIX: textos del form en dark ===== */
.formCard,
.formCard *{
  color: var(--text);
}

.formCard .field span{
  color: var(--text) !important;
  opacity: .92;
}

.formCard .formSubtitle,
.formCard .formNote,
.formCard .muted{
  color: var(--muted) !important;
}

/* placeholders legibles */
.formCard input::placeholder,
.formCard textarea::placeholder{
  color: rgba(245,247,251,.55);
}

/* selects: texto y flecha */
.formCard select{
  color: var(--text);
}

.formCard option{
  color: #111827; /* opciones del dropdown en fondo claro del sistema */
}

.formCard{
  max-width: 720px;   /* para que no se vea tan ancho */
}

.formTitle{
  letter-spacing: -.2px;
}

.formCard .cta.primary{
  width: 100%;
  margin-top: 6px;
}
/* =========================================================
   REGISTER BUSINESS — Wizard Pro UI
========================================================= */

/* títulos de secciones (1) (2) */
.dividerTitle{
  margin: 18px 0 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  letter-spacing: .2px;
}

/* margen utilitario que usas: class="mt12" */
.mt12{ margin-top: 12px; }

/* fila de 2 columnas (País/Estado) */
.fieldRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* en móvil, todo a una columna */
@media (max-width: 820px){
  .fieldRow{ grid-template-columns: 1fr; }
}

/* que los fieldset no se vean como "caja fea" */
.form fieldset{
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}

/* cuando está disabled, que se vea intencional, no gris feo */
.form fieldset[disabled]{
  pointer-events: none;
  filter: grayscale(.15);
}

/* separadores suaves entre pasos */
.form + .form{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.14);
}

/* botón reset: que parezca acción secundaria elegante */
.cta.outline{
  border-color: rgba(255,255,255,.22);
  color: var(--text);
}
.cta.outline:hover{
  border-color: rgba(249,115,22,.35);
}

/* Nota/ayuda se ve como hint */
.formNote{
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted) !important;
}

/* Botones del wizard full width cuando uses formBtn */
.formBtn{
  width: 100%;
}

/* inputs y selects consistentes */
.formCard .field input,
.formCard .field select{
  height: 46px;
  border-radius: 14px;
}

/* subtítulo con mejor lectura */
.formSubtitle{
  color: var(--muted) !important;
  line-height: 1.55;
}

/* ==========================================
   REGISTER BUSINESS – versión PRO limpia
========================================== */

/* Hacer el card un poco más ancho */
#registro-negocio .formCard{
  max-width: 780px;
  padding: 32px;
}

/* Más aire en el título */
#registro-negocio .formTitle{
  font-size: 1.9rem;
  margin-bottom: 6px;
}

#registro-negocio .formSubtitle{
  margin-bottom: 22px;
  font-size: 1rem;
}

/* Bloques de pasos */
#registro-negocio .dividerTitle{
  margin: 26px 0 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(249,115,22,.08); /* naranja suave */
  border: 1px solid rgba(249,115,22,.25);
  font-weight: 800;
}

/* Separación real entre forms */
#registro-negocio form.form{
  margin-bottom: 22px;
}

/* Que no se vea "apagado feo" cuando disabled */
#registro-negocio fieldset[disabled]{
  opacity: .6;
}

/* Inputs más elegantes */
#registro-negocio .field input,
#registro-negocio .field select{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
}

/* Hover más pro */
#registro-negocio .field input:focus,
#registro-negocio .field select:focus{
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.25);
}

/* Botones más consistentes */
#registro-negocio .cta.primary{
  height: 48px;
  font-size: 15px;
}

/* Reset como link elegante */
#registro-negocio form[action*="reset_wizard"] .cta{
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 600;
}

#registro-negocio form[action*="reset_wizard"] .cta:hover{
  border-color: #F97316;
  color: #F97316;
}

/* ==========================================
   OVERRIDE FINAL – REGISTER BUSINESS
   (DEBE IR AL FINAL DEL ARCHIVO)
========================================== */

#registro-negocio .formCard{
  max-width: 820px;
  padding: 40px 38px;
}

#registro-negocio .formTitle{
  font-size: 2rem;
  margin-bottom: 8px;
}

#registro-negocio .dividerTitle{
  margin: 28px 0 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.35);
  font-weight: 800;
}

#registro-negocio form.form{
  margin-bottom: 26px;
}

#registro-negocio .field input,
#registro-negocio .field select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
}

#registro-negocio .field input:focus,
#registro-negocio .field select:focus{
  border-color: #F97316;
  box-shadow: 0 0 0 4px rgba(249,115,22,.25);
}

#registro-negocio .cta.primary{
  height: 50px;
  font-size: 15px;
  font-weight: 800;
}

/* =========================================================
   A H I V O O Y — FINAL OVERRIDES (v1.2)
   Esto manda sobre todo lo anterior
========================================================= */
:root{
  --brand:#F97316;
  --brand2:#FF8A3D;
  --bg:#0A162B;
  --text:#F5F7FB;
  --muted: rgba(245,247,251,.72);
  --border: rgba(255,255,255,.14);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius-card: 18px;
  --radius-btn: 24px;
}

body{
  background: radial-gradient(1200px 600px at 20% 0%, #12335f 0%, var(--bg) 55%, #07101F 100%);
  color: var(--text);
}

.wrap{ max-width:1100px; margin:0 auto; padding:22px; }

.top{
  padding:12px 14px;
  border-radius: var(--radius-card);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.heroText,.heroCard,.box,.formCard,.businessWrap{
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05)) !important;
  border:1px solid var(--border) !important;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.cta{
  border-radius: var(--radius-btn);
  font-weight: 900;
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.cta.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(249,115,22,.55);
  color:#0B1020;
}
.cta.ghost{
  background: rgba(11,31,59,.22);
  border-color: rgba(255,255,255,.18);
}

/* Textos muted global */
.muted,.hero p,.trustItem,.list,.box p,.footerText,.footerBottom{ color: var(--muted) !important; }

/* Responsive header */
@media(max-width:920px){
  .top{flex-direction:column;align-items:flex-start}
  .topCta{ margin-left:0; width:100%; justify-content:space-between; }
}