
#staticBackdrop .modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Barlow', sans-serif;
}
 
/* HEADER */
#staticBackdrop .expo-header {
  background: #0d1b2e;
  border-bottom: 3px solid #18723F;
  padding: 1.4rem 1.6rem 1.2rem;
  position: relative;
}
#staticBackdrop .expo-header .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; letter-spacing: .2em; font-weight: 600;
  color: #1e9050; text-transform: uppercase;
  margin: 0 0 .25rem;
}
#staticBackdrop .expo-header h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem; font-weight: 800;
  color: #fff; margin: 0; line-height: 1.1;
}
#staticBackdrop .expo-header h5 em {
  font-style: normal; color: #1e9050;
}
#staticBackdrop .expo-header .sub {
  font-size: .8rem; color: rgba(255,255,255,.4);
  margin: .3rem 0 0; font-weight: 400;
}
#staticBackdrop .expo-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: .45; position: absolute; top: 1rem; right: 1rem;
}
#staticBackdrop .expo-header .btn-close:hover { opacity: 1; }
 
/* BODY */
#staticBackdrop .modal-body {
  background: #fff;
  padding: 1.6rem !important;
  max-height: calc(100dvh - 200px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #18723F #e8ede9;
}
#staticBackdrop .modal-body::-webkit-scrollbar { width: 4px; }
#staticBackdrop .modal-body::-webkit-scrollbar-track { background: #e8ede9; }
#staticBackdrop .modal-body::-webkit-scrollbar-thumb { background: #18723F; border-radius: 4px; }
 
/* Section tag */
#staticBackdrop .expo-section-tag {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; letter-spacing: .14em; font-weight: 700;
  text-transform: uppercase; color: #18723F;
  margin-bottom: .85rem;
}
#staticBackdrop .expo-section-tag::after {
  content: ''; flex: 1; height: 1px; background: #d8e5dc;
}
 
/* Labels */
#staticBackdrop .expo-label {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: #4a6055;
  margin-bottom: .28rem;
}
 
/* Inputs */
#staticBackdrop .expo-field { position: relative; }
#staticBackdrop .expo-field-icon {
  position: absolute; left: .72rem;
  top: 50%; transform: translateY(-50%);
  font-size: .82rem; color: #8fa898;
  pointer-events: none; line-height: 1;
  transition: color .2s;
}
#staticBackdrop .expo-field:focus-within .expo-field-icon { color: #18723F; }
#staticBackdrop .expo-input {
  width: 100%;
  background: #f5f7f5;
  border: 1.5px solid #d8e5dc;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: .93rem; color: #1a2b1e;
  padding: .62rem .85rem .62rem 2.25rem;
  outline: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
#staticBackdrop .expo-input::placeholder { color: #8fa898; }
#staticBackdrop .expo-input:focus {
  background: #fff;
  border-color: #18723F;
  box-shadow: 0 0 0 3px rgba(24,114,63,.10);
}
#staticBackdrop .expo-input:valid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(24,114,63,.4); background: #f0f8f3;
}
 
/* Divider */
#staticBackdrop .expo-divider {
  border: none; border-top: 1.5px solid #d8e5dc;
  margin: 1.1rem 0 1rem;
}
 
/* Botón registrar */
#staticBackdrop .btn-expo-submit {
  width: 100%; background: #18723F;
  border: none; border-radius: 8px; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .8rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(24,114,63,.28);
  transition: background .2s, box-shadow .2s, transform .12s;
}
#staticBackdrop .btn-expo-submit:hover {
  background: #1e9050;
  box-shadow: 0 6px 22px rgba(24,114,63,.38);
  transform: translateY(-1px);
}
#staticBackdrop .btn-expo-submit:active { transform: translateY(0); }
 
/* Botón cancelar */
#staticBackdrop .btn-expo-cancel {
  width: 100%; margin-top: .5rem; background: transparent;
  border: 1.5px solid #d8e5dc; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: .88rem;
  color: #4a6055; padding: .58rem; cursor: pointer;
  transition: border-color .2s, color .2s;
}
#staticBackdrop .btn-expo-cancel:hover { border-color: #18723F; color: #18723F; }
 
/* Nota pie */
#staticBackdrop .expo-note {
  text-align: center; margin-top: .85rem;
  font-size: .67rem; color: #8fa898; line-height: 1.5;
}
 
/* Mobile */
@media (max-width: 500px) {
  #staticBackdrop .expo-grid-2 { grid-template-columns: 1fr !important; }
  #staticBackdrop .expo-header { padding: 1.1rem 1.2rem 1rem; }
  #staticBackdrop .expo-header h5 { font-size: 1.5rem; }
  #staticBackdrop .modal-body { padding: 1.25rem 1.1rem 1.4rem !important; }
}