/* ===================================================================
   KREWEK PRICE — Estilos compartidos para páginas institucionales
   (Sobre, Contacto, Privacidad, Términos). Mismo tema que index.html
   (negro mate + dorado), pero sin JavaScript ni el CSS del cotizador:
   estas páginas son contenido estático simple.
=================================================================== */
:root{
  --bg:#0A0A0A;
  --bg-card:#121212;
  --bg-card-2:#171716;
  --bg-inset:#0E0E0D;
  --gold:#C9A24B;
  --gold-light:#E9CD8B;
  --gold-dim:rgba(201,162,75,.14);
  --gold-border:rgba(201,162,75,.22);
  --text:#F2EFE8;
  --text-muted:#8C8880;
  --text-faint:#5C5952;
  --radius-lg:18px;
  --radius-md:12px;
}

*{box-sizing:border-box;}
body{
  margin:0;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(201,162,75,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,.logo-text{font-family:'Sora',sans-serif;}
a{color:var(--gold);}

.wrap{max-width:720px;margin:0 auto;padding:20px 20px 60px;}

header.site{display:flex;align-items:center;gap:10px;padding:18px 4px 30px;}
header.site .logo-text{font-size:19px;font-weight:700;color:var(--text);}
header.site .logo-text b{color:var(--gold);font-weight:800;}
header.site a{text-decoration:none;}

.breadcrumb{font-size:11px;color:var(--text-faint);margin-bottom:18px;}
.breadcrumb a{color:var(--text-faint);text-decoration:none;}
.breadcrumb a:hover{color:var(--gold-light);}

h1{font-size:26px;font-weight:700;letter-spacing:-.02em;margin:0 0 10px;line-height:1.25;}
h2{font-size:17px;font-weight:700;margin:30px 0 12px;color:var(--gold-light);}
p, li{font-size:14.5px;line-height:1.7;color:var(--text-muted);}
p.lead{font-size:15.5px;color:var(--text);margin-bottom:24px;}
ul{padding-left:20px;}
li{margin-bottom:8px;}
strong{color:var(--text);}

.card{
  background:linear-gradient(180deg,var(--bg-card),var(--bg-card-2));
  border:1px solid var(--gold-border);border-radius:var(--radius-lg);
  padding:24px;margin-bottom:18px;
}

.updated{font-size:11.5px;color:var(--text-faint);margin-bottom:26px;}

/* Formulario de contacto (Netlify Forms) */
.field{margin-bottom:16px;}
label{display:block;font-size:12.5px;font-weight:600;color:var(--gold-light);margin-bottom:7px;}
input[type="text"], input[type="email"], textarea{
  width:100%;background:var(--bg-inset);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-md);
  color:var(--text);font-family:'Inter',sans-serif;font-size:14px;padding:12px 14px;
}
textarea{min-height:120px;resize:vertical;}
input:focus, textarea:focus{outline:none;border-color:var(--gold);}
button[type="submit"]{
  width:100%;margin-top:6px;background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#0A0A0A;border:none;border-radius:var(--radius-md);font-family:'Sora',sans-serif;
  font-size:15px;font-weight:700;padding:15px;cursor:pointer;
}
.form-note{font-size:12px;color:var(--text-faint);margin-top:12px;text-align:center;}
.form-success{
  display:none;background:var(--gold-dim);border:1px solid var(--gold-border);border-radius:var(--radius-md);
  padding:16px;text-align:center;color:var(--gold-light);font-size:13.5px;margin-bottom:16px;
}

.contact-direct{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  background:var(--bg-inset);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-md);
  padding:14px 16px;margin-bottom:22px;font-size:13.5px;
}
.contact-direct a{font-weight:600;}

footer.site{text-align:center;padding:30px 20px 10px;color:var(--text-faint);font-size:11px;line-height:1.7;}
footer.site a{color:var(--text-muted);}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 14px;padding:10px 20px 0;}
.footer-links a{color:var(--text-faint);font-size:11px;text-decoration:none;}
.footer-links a:hover{color:var(--gold-light);}
