/* RealtorTools A1 Base Theme */

/* Variables globales */
:root{
  --bg:#0b0f19;
  --card:#121a2b;
  --text:#e8eefc;
  --muted:#b8c3dd;
  --line:rgba(255,255,255,.10);
  --gold:#d4af37;
}

/* Reset básico */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(255,255,255,.08), transparent 55%),
    var(--bg);
  color:var(--text);
}

/* Links */
a{color:inherit}
a{text-decoration:none}

/* Helpers layout */
.rt-wrap{max-width:1100px;margin:0 auto;padding:0 16px}
.rt-row{display:flex;align-items:center;justify-content:space-between;gap:16px}

/* Header */
.rt-header{
  position:sticky;top:0;z-index:5;
  background:rgba(11,15,25,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  padding:14px 0;
}
.rt-brand{display:flex;align-items:center;gap:12px}
.rt-logo{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(212,175,55,.95), rgba(212,175,55,.35));
  color:#111;font-weight:800;
}
.rt-title{font-weight:800;letter-spacing:.2px}
.rt-subtitle{font-size:12px;color:var(--muted)}

.rt-actions{display:flex;align-items:center;gap:10px}
.rt-link{opacity:.9;padding:10px 10px;border-radius:10px}
.rt-link:hover{background:rgba(255,255,255,.06)}

/* Buttons */
.rt-btn{
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  background:linear-gradient(135deg, rgba(212,175,55,.95), rgba(212,175,55,.55));
  color:#141414;font-weight:800;
  border:1px solid rgba(212,175,55,.45);
  cursor:pointer;
}
.rt-btn:hover{filter:brightness(1.02)}
.rt-btn.secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.rt-btn.secondary:hover{background:rgba(255,255,255,.06)}

/* Cards */
.rt-card{
  background:rgba(18,26,43,.92);
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Forms */
.rt-form{display:grid;gap:14px}
.rt-field{display:grid;gap:8px}
.rt-label{font-size:13px;color:var(--muted)}
.rt-input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(11,15,25,.7);
  color:var(--text);
  outline:none;
}
.rt-input:focus{
  border-color:rgba(212,175,55,.55);
  box-shadow:0 0 0 3px rgba(212,175,55,.12);
}

/* Hero */
.rt-hero{
  border-radius:18px;
  background:linear-gradient(180deg, rgba(18,26,43,.95), rgba(18,26,43,.70));
  border:1px solid var(--line);
  padding:28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

/* Grid */
.rt-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:16px}
@media (max-width: 900px){
  .rt-grid{grid-template-columns:1fr}
  .rt-row{flex-wrap:wrap}
}

/* Footer */
.rt-footer{
  opacity:.75;
  text-align:center;
  padding:26px 0;
  border-top:1px solid var(--line);
  margin-top:26px;
}

/* Message box */
.rt-msg{
  font-size:13px;
  color:var(--muted);
  margin-top:6px;
}
.rt-msg.ok{color:#a7f3d0}
.rt-msg.err{color:#fecaca}