/* Hermon Data — Landing page (PT-BR)
   Visual: dark, glass, glow, "imponente"
*/

:root{
  --bg: #060712;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.52);
  --accent: #7c5cff;
  --accent2: #39d0ff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(1100px 800px at 80% 30%, rgba(57,208,255,.18), transparent 60%),
              var(--bg);
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
.container{ width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.bg{ position: fixed; inset:0; pointer-events:none; z-index:-1; }
.glow{ position:absolute; width: 720px; height: 720px; filter: blur(60px); opacity:.55; }
.g1{ left:-220px; top:-220px; background: radial-gradient(circle, rgba(124,92,255,.55), transparent 60%); }
.g2{ right:-260px; top:80px; background: radial-gradient(circle, rgba(57,208,255,.45), transparent 60%); }
.noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity:.35; mix-blend-mode: overlay;
}

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0;
  position: sticky; top:0;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(6,7,18,.72), rgba(6,7,18,.35));
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 10;
}

.brand{ display:flex; gap:12px; align-items:center; }

.logo{
  width: 36px;
  height: 36px;
  padding: 4px;

  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(57,208,255,.18));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 6px;
  object-fit: contain;
}
.mark{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(57,208,255,.85));
  box-shadow: 0 10px 30px rgba(124,92,255,.28);
  position: relative;
  overflow:hidden;
}
.mark::after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,255,255,.0), rgba(255,255,255,.35), rgba(255,255,255,.0));
  animation: spin 6s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }

.brandtext .name{ font-weight: 800; letter-spacing: .2px; }
.brandtext .tag{ font-size: 12px; color: var(--muted2); margin-top: 2px; }

.nav{ display:flex; gap: 18px; align-items:center; }
.nav a{ color: var(--muted); font-weight: 600; font-size: 14px; }
.nav a:hover{ color: var(--text); }
.nav .cta{
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.hero{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 24px;
  padding: 42px 0 18px;
  align-items: start;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 14px 0 14px;
  letter-spacing: -1px;
}
.accent{
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(57,208,255,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 62ch;
}

.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn.primary{
  border-color: rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.92), rgba(57,208,255,.75));
}
.btn.primary:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.btn.ghost{
  background: rgba(255,255,255,.06);
}
.btn.ghost:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }

.trust{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom right, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-head{
  display:flex; align-items:center; gap: 8px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--muted2);
  font-weight: 700;
  font-size: 12px;
}
.dot{ width: 10px; height:10px; border-radius: 999px; background: rgba(255,255,255,.18); }
.panel-body{ padding: 16px 16px 18px; }
.kpi{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.kpi-label{ color: var(--muted2); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .9px;}
.kpi-value{ font-weight: 800; margin-top: 4px; }
.kpi-note{ color: var(--muted2); font-size: 12px; margin-top: 2px; }
.divider{ height:1px; background: rgba(255,255,255,.10); margin: 14px 0; }
.mini-title{ font-weight: 800; margin-bottom: 8px; }
.panel ul{ margin:0; padding-left: 18px; color: var(--muted); line-height: 1.8; font-size: 14px; }

.mountain{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.mountain svg{ width:100%; height:auto; display:block; }
.mountain path{
  fill: rgba(255,255,255,.06);
  stroke: rgba(255,255,255,.16);
  stroke-width: 2;
}
.mountain .line{
  fill:none;
  stroke: rgba(124,92,255,.55);
  stroke-width: 3;
}

.section{ padding: 42px 0 20px; }
.section-head h2{
  font-size: 30px;
  letter-spacing: -.4px;
  margin: 0 0 8px;
}
.section-head p{
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 70ch;
  line-height: 1.65;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  padding: 16px 16px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0 0 10px; color: var(--muted); line-height: 1.6; }
.card ul{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; font-size: 14px; }

.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.step{
  display:flex; gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.step .n{
  width: 44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 800;
  color: rgba(255,255,255,.86);
}
.step h3{ margin: 0 0 6px; }
.step p{ margin: 0; color: var(--muted); line-height: 1.6; }

.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-card{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom right, rgba(255,255,255,.06), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.contact-top{ display:flex; gap: 12px; align-items:center; }
.icon{
  width: 44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
}
.contact-card h3{ margin: 0; }
.contact-card p{ margin: 2px 0 0; color: var(--muted2); font-weight: 600; font-size: 13px; }
.qr{
  width: min(180px, 100%);
  aspect-ratio: 1 / 1;
  margin: 14px auto 10px;
  display:block;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.95);
  padding: 14px;
}
.link{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  text-align:center;
}
.link:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }

.footer-card{
  margin-top: 16px;
  padding: 16px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.foot-title{ font-weight: 900; font-size: 16px; }
.foot-sub{ color: var(--muted); margin-top: 4px; line-height: 1.6; }

.footer{
  padding: 30px 0 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--muted2);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 34px;
}
.footer-links{ display:flex; gap: 14px; }
.footer a:hover{ color: var(--text); }

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .nav{ display:none; }
  .container{ width: min(var(--max), calc(100% - 30px)); }
  .grid{ grid-template-columns: 1fr; }
}


/* Showcase (replaces the empty mountain box) */
.showcase{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  padding: 16px;
}
.showcase-inner{
  display:flex;
  align-items:center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.showcase-logo{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px;
  object-fit: contain;
}
.showcase-title{
  font-weight: 900;
  letter-spacing: -.2px;
}
.showcase-sub{
  color: var(--muted2);
  font-weight: 700;
  font-size: 12px;
  margin-top: 2px;
}
.showcase-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 12px;
}
.show-item{
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 10px;
}
.show-item .k{
  color: var(--muted2);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.show-item .v{
  margin-top: 4px;
  font-weight: 800;
  font-size: 13px;
}
@media (max-width: 980px){
  .showcase-grid{ grid-template-columns: 1fr; }
}


/* Full-width header bar */
.topbar.full{
  width:100%;
  padding-left: 24px;
  padding-right: 24px;
}
.topbar.full .brand{
  background: rgba(6,7,18,.65);
  padding: 10px 14px;
  border-radius: 18px;
}


/* Solid card backgrounds */
.card,
.step,
.contact-card{
  background: linear-gradient(
    180deg,
    rgba(15,16,35,.85),
    rgba(10,11,26,.85)
  );
}


/* Scroll animations */
[data-animate]{
  opacity:0;
  transform: translateY(20px);
  transition: all .6s ease;
}
[data-animate].in-view{
  opacity:1;
  transform: translateY(0);
}


/* Header brand text-only */
.topbar.full .brand{
  background: transparent;
  padding: 6px 8px;
}
.topbar.full .brand .name{
  font-size: 18px;
  font-weight: 900;
}
.topbar.full .brand .tag{
  font-size: 12px;
}


/* White logo container */
.showcase-logo{
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}


/* Header inner container (items inside the bar) */
.topbar.full{
  display:block;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 520px){
  .topbar-inner{ width: min(var(--max), calc(100% - 30px)); }
}

/* Language buttons */
.lang{ display:flex; gap: 8px; align-items:center; margin-left: 10px; }
.lang-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
}
.lang-btn:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }
.lang-btn.active{
  border-color: rgba(124,92,255,.45);
  background: rgba(124,92,255,.18);
}


/* Showcase without logo spacing fix */
.showcase-inner{
  padding-top: 6px;
}
