:root {
    --guinda:       #7B1D3E;
    --guinda-dark:  #5a1530;
    --guinda-light: #9e2550;
    --dorado:       #C9A84C;
    --dorado-light: #e8c97a;
    --crema:        #F8F3EA;
    --crema-dark:   #ede3d0;
    --texto:        #2c2c2c;
    --gris:         #6b7280;
    --blanco:       #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif !important; }

body {
    font-family: 'Montserrat', sans-serif !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: auto !important;
    background: var(--crema);
    min-height: 100vh;
    color: var(--texto);
}

/* ══════════════════════════════════════
   NAVBAR  — flex-direction:row !important
   para contrarrestar Bootstrap
══════════════════════════════════════ */
.navbar-principal { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 3rem 0 4rem; height: 140px; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-nav { height: 115px; width: auto; object-fit: contain; }
.navbar-nav { display: flex !important; flex-direction: row !important; align-items: center; gap: .3rem; }
.navbar-nav .nav-link { font-size: .95rem !important; font-weight: 700 !important; font-family: 'Montserrat', sans-serif !important; padding: .6rem 1.2rem !important; border-radius: 6px !important; background: transparent !important; color: var(--guinda) !important; letter-spacing: .06em; text-transform: uppercase; transition: background .2s, color .2s !important; box-shadow: none !important; text-decoration: none !important; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { background: rgba(133,37,67,.08) !important; color: var(--guinda) !important; transform: none; box-shadow: none !important; }
.navbar-toggler { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.navbar-toggler span { display: block; width: 24px; height: 2px; background: var(--guinda); border-radius: 2px; }
.back-arrow { display: flex; align-items: center; gap: .4rem; text-decoration: none; color: var(--gris); font-size: .82rem; font-weight: 700; padding: .35rem .7rem; border-radius: 20px; border: 1.5px solid var(--crema-dark); transition: all .2s; white-space: nowrap; }
.back-arrow:hover { border-color: var(--guinda); color: var(--guinda); background: rgba(123,29,62,.04); }
.back-arrow .arrow-ico { font-size: 1rem; line-height: 1; }

@media (max-width: 768px) {
    .navbar-toggler { display: flex; }
    .navbar-nav { display: none !important; flex-direction: column !important; position: absolute; top: 80px; left: 0; right: 0; background: #fff; padding: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,.1); gap: .5rem; z-index: 99; }
    .navbar-nav.open { display: flex !important; }
    .nav-link { margin-left: 0; text-align: center; }
}

/* ══════════════════════════════════════
   FORMULARIO
══════════════════════════════════════ */
.form-container {
    background: var(--blanco);
    border-radius: 0;
    box-shadow: none;
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.section-title {
    color: var(--guinda);
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--dorado);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.section-title i { margin-right: 10px; color: var(--guinda); }

/* Cards tipo de persona */
.tipo-card {
    cursor: pointer;
    border: 2px solid var(--crema-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    background: #fdfaf6;
}
.tipo-card:hover { border-color: var(--guinda); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(123,29,62,0.2); }
.tipo-card.active { border-color: var(--guinda); background: rgba(123,29,62,0.05); }
.tipo-card i { font-size: 4rem; color: var(--guinda); margin-bottom: 20px; }
.tipo-card h4 { color: var(--guinda); font-weight: 600; margin-bottom: 10px; }

/* Requisitos */
.requisitos-card {
    background: linear-gradient(135deg, #fdfaf6, var(--crema));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 6px solid var(--guinda);
}
.requisitos-card h5 { color: var(--guinda); font-weight: 600; margin-bottom: 15px; font-size: 1.2rem; }
.requisitos-card ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.requisitos-card li { margin-bottom: 12px; padding-left: 28px; position: relative; font-size: 1rem; }
.requisitos-card li i { color: var(--guinda); position: absolute; left: 0; top: 3px; font-size: 1.1rem; }

/* Documentos */
.documento-item { border: 1.5px solid var(--crema-dark); border-radius: 10px; padding: 20px; margin-bottom: 20px; transition: all 0.3s; background: #fdfaf6; }
.documento-item:hover { border-color: var(--guinda); box-shadow: 0 8px 20px rgba(123,29,62,0.1); }
.documento-item label { font-weight: 700; color: var(--guinda); margin-bottom: 12px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; }

.custom-file-input { position: relative; }
.custom-file-input input[type="file"] { opacity: 0; position: absolute; width: 100%; height: 100%; cursor: pointer; z-index: 2; }
.file-label { background: #fdfaf6; border: 1.5px dashed var(--crema-dark); border-radius: 8px; padding: 15px; text-align: center; transition: all 0.3s; position: relative; z-index: 1; }
.custom-file-input:hover .file-label { border-color: var(--guinda); background: rgba(123,29,62,0.04); }
.file-label i { font-size: 2rem; color: var(--guinda); margin-bottom: 8px; }
.file-label span { display: block; font-size: 0.88rem; color: var(--texto); }
.file-label small { color: var(--gris); margin-top: 5px; font-size: 0.72rem; }

/* Form inputs */
.form-label { font-weight: 700; color: var(--guinda); margin-bottom: 8px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }
.form-control, .form-select { border: 1.5px solid var(--crema-dark); border-radius: 8px; padding: 12px 15px; transition: all 0.3s; background: #fdfaf6; font-family: 'Montserrat', sans-serif; }
.form-control:focus, .form-select:focus { border-color: var(--guinda); box-shadow: 0 0 0 3px rgba(123,29,62,0.1); background: var(--blanco); }

/* Badges */
.rango-badge { display: inline-block; padding: 5px 10px; border-radius: 20px; font-size: 0.75rem; margin-right: 5px; }
.badge-bajo { background: var(--crema-dark); color: var(--texto); }
.badge-medio { background: var(--guinda); color: white; }
.badge-alto { background: var(--dorado); color: var(--guinda); font-weight: 700; }

/* Alertas */
.alert-info { background: rgba(123,29,62,0.05); border-left: 6px solid var(--guinda); border-radius: 0 10px 10px 0; padding: 20px; color: var(--texto); }
.alert-warning { background: #fef3c7; border-left: 6px solid var(--dorado); border-radius: 0 10px 10px 0; padding: 20px; color: #92400e; }

/* Botones */
.btn-primary { background-color: var(--guinda); border-color: var(--guinda); padding: 15px 30px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; transition: all 0.3s; box-shadow: 0 3px 10px rgba(123,29,62,0.3); }
.btn-primary:hover:not(:disabled) { background-color: var(--guinda-dark); border-color: var(--guinda-dark); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(123,29,62,0.4); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

/* Progress bar */
.upload-progress { height: 4px; background: var(--crema-dark); border-radius: 2px; margin-top: 10px; overflow: hidden; display: none; }
.upload-progress .progress-bar { height: 100%; background: var(--guinda); width: 0%; transition: width 0.3s; }

/* Badge Tlalnepantla */
.badge-tlal-wrapper { display: flex; align-items: flex-start; gap: 18px; background: white; border: 1.5px solid var(--crema-dark); border-radius: 12px; padding: 18px 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.badge-estrella { background: linear-gradient(135deg, var(--guinda), #a82458); color: white; border-radius: 10px; padding: 12px 16px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; line-height: 1.4; flex-shrink: 0; }
.badge-estrella::after { content: '★'; display: block; font-size: 1.1rem; margin-top: 4px; }
.texto-badge h6 { color: var(--guinda); font-weight: 700; margin-bottom: 4px; font-size: 0.97rem; }
.texto-badge p { margin: 0; color: #555; font-size: 0.88rem; line-height: 1.5; }
.badge-tlal-chips { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 7px; }
.chip { background: var(--crema-dark); color: var(--guinda); border-radius: 20px; padding: 4px 12px; font-size: 0.76rem; font-weight: 600; }
.chip.highlight { background: var(--guinda); color: white; }

/* Loading overlay */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; justify-content: center; align-items: center; z-index: 9999; }
.loading-spinner { width: 60px; height: 60px; border: 5px solid var(--crema); border-top-color: var(--guinda); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Checkbox */
.form-check-input:checked { background-color: var(--guinda); border-color: var(--guinda); }
.form-check-label a { color: var(--guinda); font-weight: 700; }

/* Animaciones */
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: slideIn 0.5s ease-out; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
/* ── FOOTER — overrides para neutralizar Bootstrap ── */
#footer-ayuntamiento.seccion-footer { background: #fff !important; border-top: 1px solid rgba(0,0,0,.07); }
#footer-ayuntamiento .footer-content { max-width: 100%; margin: 0; padding: 0; }
#footer-ayuntamiento .footer-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding: 1.2rem 1rem 1rem; align-items: center; }
#footer-ayuntamiento .footer-col:first-child { align-items: flex-start !important; text-align: left; padding-left: 2.5rem; }
#footer-ayuntamiento .footer-col { display: flex !important; flex-direction: column !important; align-items: center; text-align: center; gap: 0.2rem; }
#footer-ayuntamiento .footer-col:last-child { align-items: center !important; text-align: center; padding-right: 0.8rem; }
#footer-ayuntamiento .footer-col p { font-size: 0.78rem !important; color: var(--texto) !important; line-height: 1.4 !important; margin-bottom: 0 !important; }
#footer-ayuntamiento .footer-col p a { color: var(--guinda) !important; font-weight: 600; text-decoration: none !important; }
#footer-ayuntamiento h2.footer-titulo { font-size: 1.3rem !important; font-weight: 800 !important; color: var(--guinda) !important; margin-bottom: 0.2rem !important; margin-top: 0 !important; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2 !important; }
#footer-ayuntamiento h2.footer-titulo-mt { margin-top: 1rem !important; }
#footer-ayuntamiento .logo-page-footer { height: 115px; width: auto; object-fit: contain; }
#footer-ayuntamiento .redes-grid { display: flex !important; align-items: center; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-top: 0.3rem; }
#footer-ayuntamiento .redes-sociales { width: 58px !important; height: 58px !important; object-fit: cover; border-radius: 50%; transition: transform .2s, box-shadow .2s; }
#footer-ayuntamiento .redes-sociales:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,.15); }
#footer-ayuntamiento .copyright { background: #E4D9C7 !important; border-top: 1px solid rgba(0,0,0,.07); padding: 0.7rem 1rem; text-align: center; font-size: 0.78rem; width: 100%; }
#footer-ayuntamiento .copyright p { color: #2c2c2c !important; margin-bottom: 0 !important; }
#footer-ayuntamiento .copyright a { color: #852543 !important; text-decoration: none !important; font-weight: 700; }
#footer-ayuntamiento .copyright strong { font-weight: 700; }
@media (max-width: 768px) {
  #footer-ayuntamiento .footer-grid { grid-template-columns: 1fr !important; }
  #footer-ayuntamiento .footer-col:first-child { align-items: center !important; text-align: center; padding-left: 0; }
  #footer-ayuntamiento .footer-col:last-child { align-items: center !important; text-align: center; padding-right: 0; }
  #footer-ayuntamiento .redes-grid { justify-content: center; }
}

@media (max-width: 768px) {
    .form-container { padding: 20px; }
    .tipo-card { margin-bottom: 15px; }
    .badge-tlal-wrapper { flex-direction: column; align-items: flex-start; }
}
/* ══════════════════════════════════════
   STEPPER
══════════════════════════════════════ */
.stepper-wrapper {
  background: var(--blanco);
  border-bottom: 1px solid var(--crema-dark);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
}
.stepper {
  display: flex;
  align-items: center;
  max-width: 420px;
  width: 100%;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 55%;
  width: 90%;
  height: 2px;
  background: var(--crema-dark);
  z-index: 0;
  transition: background 0.4s;
}
.step.done:not(:last-child)::after { background: var(--dorado); }
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--crema-dark);
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gris);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step.active .step-circle { background: var(--guinda); border-color: var(--guinda); color: var(--blanco); box-shadow: 0 0 0 4px rgba(123,29,62,0.15); }
.step.done  .step-circle  { background: var(--dorado);  border-color: var(--dorado);  color: var(--blanco); }
.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}
.step.active .step-label { color: var(--guinda); }
.step.done   .step-label { color: var(--dorado); }

/* ══════════════════════════════════════
   CARD LAYOUT
══════════════════════════════════════ */
.form-wrapper { width: 100%; padding: 2rem 2rem 3rem; background: transparent !important; }
.form-card { background: var(--blanco); border-radius: 0; box-shadow: none; overflow: hidden; }
.form-card-header {
  background: linear-gradient(90deg, var(--crema) 0%, var(--crema-dark) 100%);
  padding: 1.4rem 2rem;
  border-bottom: 2px solid var(--dorado);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.card-header-icon {
  width: 46px;
  height: 46px;
  background: var(--guinda);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blanco);
  flex-shrink: 0;
}
.form-card-header h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--guinda); font-weight: 700; margin: 0; }
.form-card-header p  { font-size: 0.8rem; color: var(--gris); margin: 0.1rem 0 0; }

/* ══════════════════════════════════════
   SECCIONES
══════════════════════════════════════ */
.form-body { padding: 2rem; }
.form-section { display: none; animation: fadeSlide 0.3s ease; }
.form-section.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════
   CAMPOS
══════════════════════════════════════ */
.field-label { font-size: 0.82rem; font-weight: 700; color: var(--guinda); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
.field-label .req { color: var(--dorado); margin-left: 2px; }
.field-hint { font-size: 0.72rem; color: var(--gris); margin-top: 0.2rem; }

.radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.2rem; }
.radio-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fdfaf6;
  border: 1.5px solid var(--crema-dark);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gris);
  transition: all 0.2s;
  user-select: none;
}
.radio-btn input { display: none; }
.radio-btn:has(input:checked) { border-color: var(--guinda); background: rgba(123,29,62,0.06); color: var(--guinda); }

.section-divider { display: flex; align-items: center; gap: 0.8rem; margin: 1.5rem 0 1rem; }
.section-divider .line { flex: 1; height: 1px; background: var(--crema-dark); }
.section-divider span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dorado); white-space: nowrap; }

.nota-tlal { background: rgba(123,29,62,0.05); border-left: 3px solid var(--guinda); padding: 0.7rem 1rem; border-radius: 0 8px 8px 0; font-size: 0.78rem; color: var(--guinda); font-weight: 600; margin-top: 0.5rem; }

/* ══════════════════════════════════════
   PASO 2: TIPO EMPRESA
══════════════════════════════════════ */
.tipo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.3rem; }
.tipo-btn { border: 2px solid var(--crema-dark); border-radius: 12px; padding: 1.3rem 1rem; cursor: pointer; text-align: center; transition: all 0.2s; background: #fdfaf6; user-select: none; display: block; }
.tipo-btn input { display: none; }
.tipo-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.tipo-name { font-weight: 700; font-size: 0.95rem; color: var(--texto); display: block; margin-bottom: 0.3rem; }
.tipo-desc { font-size: 0.75rem; color: var(--gris); line-height: 1.4; }
.tipo-btn:has(input:checked) { border-color: var(--guinda); background: rgba(123,29,62,0.05); }
.tipo-btn:has(input:checked) .tipo-name { color: var(--guinda); }

/* ══════════════════════════════════════
   PANEL DE DOCUMENTOS
══════════════════════════════════════ */
.docs-panel { display: none; }
.docs-panel.visible { display: block; animation: fadeSlide 0.3s ease; }
.doc-item { display: flex; align-items: center; gap: 0.9rem; border: 1.5px solid var(--crema-dark); border-radius: 10px; padding: 0.95rem 1.1rem; margin-bottom: 0.75rem; background: #fdfaf6; cursor: pointer; transition: all 0.2s; }
.doc-item:hover  { border-color: var(--dorado); background: #fffdf7; }
.doc-item.uploaded { border-color: var(--guinda); background: rgba(123,29,62,0.04); }
.doc-item input[type="file"] { display: none; }
.doc-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-info { flex: 1; }
.doc-name { font-weight: 700; font-size: 0.88rem; color: var(--texto); display: block; }
.doc-desc { font-size: 0.72rem; color: var(--gris); margin-top: 0.15rem; }
.doc-status { font-size: 0.75rem; font-weight: 700; color: var(--gris); white-space: nowrap; }
.doc-item.uploaded .doc-status { color: var(--guinda); }
.badge-req { display: inline-block; background: rgba(201,168,76,0.18); color: #92710a; font-size: 0.65rem; font-weight: 700; padding: 0.1rem 0.5rem; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; margin-left: 0.4rem; }

/* Aviso + check */
.aviso-box { background: #fffdf7; border: 1px solid var(--dorado-light); border-radius: 10px; padding: 1.1rem 1.3rem; margin-top: 1.4rem; }
.aviso-box p { font-size: 0.78rem; color: var(--gris); line-height: 1.6; margin: 0; }
.check-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.8rem; }
.check-row input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--guinda); flex-shrink: 0; margin-top: 2px; }
.check-row span { font-size: 0.8rem; color: var(--texto); line-height: 1.5; }
.check-row a { color: var(--guinda); font-weight: 700; }

/* Info validación */
.validacion-info { background: linear-gradient(135deg, #fdf9f0, #fdf4e3); border: 1px solid var(--dorado-light); border-radius: 10px; padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; }
.validacion-info h4 { color: var(--guinda); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.validacion-info p  { font-size: 0.78rem; color: var(--gris); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   FOOTER DE BOTONES
══════════════════════════════════════ */
.form-footer { padding: 1.4rem 2rem; border-top: 1px solid var(--crema-dark); display: flex; justify-content: space-between; align-items: center; background: #fcf9f5; }
.step-info { font-size: 0.78rem; color: var(--gris); }
.btn-nav { padding: 0.7rem 1.8rem; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; border: none; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-nav-primary { background: var(--guinda); color: var(--blanco); box-shadow: 0 3px 10px rgba(123,29,62,0.3); }
.btn-nav-primary:hover:not(:disabled) { background: var(--guinda-dark); box-shadow: 0 5px 16px rgba(123,29,62,0.4); transform: translateY(-1px); }
.btn-nav-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-nav-ghost { background: transparent; color: var(--gris); font-weight: 600; }
.btn-nav-ghost:hover { color: var(--guinda); }
.btn-nav-success { background: #16a34a; color: var(--blanco); box-shadow: 0 3px 10px rgba(22,163,74,0.3); }
.btn-nav-success:hover:not(:disabled) { background: #15803d; transform: translateY(-1px); }

/* ══════════════════════════════════════
   SUCCESS
══════════════════════════════════════ */
.success-state { text-align: center; padding: 3.5rem 2rem; }
.success-icon { width: 84px; height: 84px; background: linear-gradient(135deg, var(--dorado), var(--dorado-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; margin: 0 auto 1.5rem; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-state h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--guinda); margin-bottom: 0.7rem; }
.success-state p  { color: var(--gris); font-size: 0.88rem; max-width: 440px; margin: 0 auto 0.5rem; line-height: 1.6; }
.success-nota { font-size: 0.82rem !important; }
.folio-badge { display: inline-block; background: var(--guinda); color: var(--blanco); font-weight: 700; font-size: 1rem; padding: 0.5rem 2rem; border-radius: 30px; margin: 1rem 0; letter-spacing: 0.1em; }
.pendiente-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #fef3c7; color: #92400e; font-weight: 700; font-size: 0.82rem; padding: 0.5rem 1.2rem; border-radius: 30px; }

/* ══════════════════════════════════════
   UTILIDADES INLINE → CLASE
══════════════════════════════════════ */
.logo-link { text-decoration: none; }
.input-upper { text-transform: uppercase; }
@media (max-width: 768px) {
  .form-wrapper { padding: 0; }
  .form-body    { padding: 1rem; }
  .form-footer  { padding: 0.9rem 1rem; }
  .tipo-grid    { grid-template-columns: 1fr; }
}
.btn-hidden { display: none; }