@charset "UTF-8";
  #aviso-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    z-index: 99999;
  }
  #aviso-overlay.activo {
    display: block;
  }
  #aviso-caja {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.32);
    width: 92%;
    max-width: 820px;
    text-align: center;
    animation: avisoEntrada 0.28s ease;
  }
  @keyframes avisoEntrada {
    from { opacity: 0; top: 47%; }
    to   { opacity: 1; top: 50%; }
  }
  #aviso-cerrar {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    padding: 0;
    z-index: 1;
  }
  #aviso-cerrar:hover { color: #333; }
  #aviso-cuerpo {
    padding: 64px 80px 32px;
  }
  #aviso-etiqueta {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 18px;
  }
  #aviso-cuerpo h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 28px;
    line-height: 1.2;
  }
  #aviso-separador {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 0 0 28px;
  }
  #aviso-nombre {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
  }
  #aviso-detalle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }
  #aviso-pie {
    padding: 28px 80px 56px;
  }
  #aviso-btn {
    background: #5cb85c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 13px 56px;
    cursor: pointer;
    transition: background .18s;
    letter-spacing: .01em;
  }
  #aviso-btn:hover { background: #449d44; }