:root{
  --bg:#f6f5f2;
  --card:#ffffff;
  --line:#e6e2da;

  --text:#1f2933;
  --muted:#6b7280;

  --gold:#c6a96b;
  --gold-soft:#f3efe6;

  --btn:#111827;
  --btn-text:#ffffff;

  --radius:16px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  padding:16px 12px;
}

.wrap{
  max-width:500px;
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}

/* Header */
.top{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.top-left{ min-width:0; }

.top-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.kicker{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.3px;
}

.brand{
  font-size:14px;
  font-weight:800;
  letter-spacing:.4px;
}
.brand span{ color:var(--gold); }

/* LOGO (imagen real) */
.brand-logo{
  width: 170px;      /* ajusta si lo quieres más grande/chico */
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  overflow:hidden;
}
.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* BANNER (imagen real) */
.hero{
  height: 110px; /* puedes subirlo a 140 si quieres más presencia */
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.05)),
    url("../img/banner-bruma-andes.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content */
.content{ padding:16px; }

h1{
  font-size:18px;
  margin:0 0 6px;
}

p{
  margin:0 0 12px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.pill{
  display:inline-block;
  margin:6px 0 12px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
  color:#5a4a2a;
  background:var(--gold-soft);
  border:1px solid var(--line);
  border-radius:999px;
}

.note{
  border:1px solid var(--line);
  background:#faf9f6;
  border-radius:var(--radius);
  padding:12px;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
}

.card{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  background:#fff;
}

.card h2{
  font-size:13px;
  margin:0 0 10px;
  color:#3a3a3a;
}

/* Form */
label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:10px 0 6px;
}

input{
  width:100%;
  padding:10px 11px;
  border:1px solid var(--line);
  border-radius:12px;
  font-size:14px;
  background:#fff;
  outline:none;
}

input:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(198,169,107,.25);
}

.btn{
  margin-top:12px;
  width:100%;
  padding:12px 14px;
  border:0;
  border-radius:12px;
  background:var(--btn);
  color:var(--btn-text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
}
.btn:active{ transform: translateY(1px); }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#faf9f6;
  padding:12px 16px;
  font-size:11px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

/* CTA sin link */
.footer-cta{
  color:#111827;
  font-weight:800;
  text-decoration:underline;
  cursor:pointer;
  user-select:none;
}
.footer-cta:active{ transform: translateY(1px); }

/* Responsive */
@media (min-width: 480px){
  .hero{ height: 125px; }
}