/* =========================================================
   AXEN SYSTEMS — APP.CSS FINAL
   Tema claro premium • Estrutura SaaS empresarial
========================================================= */

:root{
  --accent:#b11217;
  --accent-dark:#8f0e12;
  --accent-soft:rgba(177,18,23,.06);
  --accent-border:rgba(177,18,23,.25);

  --text:#111;
  --text-soft:#555;
  --border:#e8e8ea;
  --bg:#f7f7f8;
  --card:#ffffff;
}

/* ================= BASE ================= */

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:64px 0;
}

.sectionHead{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:flex-end;
}

.section h2{
  font-size:22px;
  font-weight:600;
  margin:0;
}

.section p.lead{
  margin:8px 0 0;
  color:var(--text-soft);
  font-size:15px;
  line-height:1.6;
  max-width:80ch;
}

/* ================= HERO ================= */

.hero{ padding:78px 0 40px; }

.heroGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:center;
}

@media(min-width:980px){
  .heroGrid{
    grid-template-columns:1.15fr .85fr;
  }
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--accent);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--accent-border);
  background:var(--accent-soft);
}

.dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--accent);
}

.hero h1{
  font-size:36px;
  font-weight:600;
  letter-spacing:-0.4px;
  margin:14px 0;
  line-height:1.2;
}

@media(min-width:980px){
  .hero h1{ font-size:44px; }
}

.hero p{
  font-size:17px;
  color:var(--text-soft);
  line-height:1.7;
  max-width:60ch;
}

/* ================= BOTÕES ================= */

.actions{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:10px;
  font-size:14px;
  text-decoration:none;
  border:1px solid #111;
  color:#111;
  background:transparent;
  transition:.2s ease;
}

.btn:hover{
  background:#111;
  color:#fff;
}

.btn.soft{
  border-color:var(--border);
  background:#fff;
}

.btn.soft:hover{
  background:#111;
  color:#fff;
}

/* ================= HERO IMAGE ================= */

.heroVisual{
  background:#fff;
  border:1px solid var(--accent-border);
  border-radius:16px;
  overflow:hidden;
  position:relative;
  min-height:320px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.heroVisual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.heroOverlay{
  position:absolute;
  inset:auto 14px 14px 14px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--accent);
  border-radius:14px;
  padding:12px;
}

.heroOverlay strong{
  font-size:13.5px;
  color:var(--accent);
}

.heroOverlay div{
  font-size:12.8px;
  color:#444;
  margin-top:4px;
}

/* ================= BANNERS ================= */

.banners{
  display:grid;
  gap:14px;
}

@media(min-width:980px){
  .banners{
    grid-template-columns:1fr 1fr;
  }
}

.banner{
  background:#fff;
  border:1px solid var(--accent-border);
  border-radius:16px;
  padding:18px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
}

.banner-red{
  border:1px solid var(--accent);
  background:linear-gradient(180deg, rgba(177,18,23,.06), rgba(177,18,23,.02));
}

.bannerTag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
}

/* ================= CARDS ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:26px;
}

.card{
  background:var(--card);
  border:1px solid var(--accent-border);
  border-radius:16px;
  padding:22px;
  transition:.18s ease;
}

.card:hover{
  box-shadow:0 14px 34px rgba(177,18,23,.08);
  border-color:rgba(177,18,23,.4);
}

.icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#f2f2f3;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ================= MARKETPLACE ================= */

.market{ padding:64px 0; }

.productGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:20px;
}

.product{
  background:#fff;
  border:1px solid var(--accent-border);
  border-radius:16px;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:.18s ease;
}

.product:hover{
  border-color:rgba(177,18,23,.45);
  box-shadow:0 14px 34px rgba(177,18,23,.08);
}

.pCover{
  width:100%;
  height:140px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.05);
}

.pCover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pTitle{
  font-weight:600;
  font-size:14.5px;
  margin:0;
}

.pDesc{
  font-size:13.5px;
  color:var(--text-soft);
  margin:0;
}

.pTag{
  font-size:12px;
  padding:5px 9px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  border:1px solid var(--accent-border);
}

.pPrice{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(0,0,0,.06);
  padding-top:10px;
}

.pFrom{
  font-size:12px;
  color:#666;
}

.pValue{
  font-size:14px;
  font-weight:600;
}

.btn-buy{
  padding:8px 12px;
  border-radius:10px;
  font-size:13px;
  text-decoration:none;
  border:1px solid var(--accent);
  color:#fff;
  background:var(--accent);
  transition:.2s ease;
}

.btn-buy:hover{
  background:var(--accent-dark);
  border-color:var(--accent-dark);
}

/* ================= REVEAL ================= */

.reveal{ opacity:1; transform:none; }

html.js .reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}

html.js .reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ================= FLOATING BUTTON ================= */

.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  background:var(--accent);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(177,18,23,.2);
  font-size:13px;
}

.fab:hover{
  background:var(--accent-dark);
}

/* ================= FOOTER NOTE ================= */

.footer-note{
  font-size:13px;
  color:#777;
  text-align:center;
  padding:28px 0 40px;
}
