/* =========================================================
   M-Thor Suplementos — estilos compartilhados
   ========================================================= */

:root{
  --bg:            #131110;
  --red:           #e23a2e;
  --red-bright:    #f0564a;
  --bolt:          #f2c230;
  --cream:         #f2efea;
  --text:          #9c9691;
  --text-dim:      #6f6a66;
  --line:          rgba(255,255,255,0.09);
  --red-line:      rgba(226,58,46,0.5);
  --maxw:          1180px;
  --legalw:        760px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background-color:var(--bg);
  background-image:radial-gradient(ellipse 90% 60% at 50% 34%, #201b18 0%, #151210 58%, #0c0a09 100%);
  background-attachment:fixed;
  line-height:1.6;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
}

a{ color:var(--red-bright); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--bolt); }

/* ---------- Raio (marca) ---------- */
.bolt{
  display:inline-block;
  background:var(--bolt);
  clip-path:polygon(58% 0, 18% 56%, 44% 56%, 36% 100%, 82% 40%, 54% 40%);
}
.bolt--brand{ width:14px; height:16px; }
.bolt--hero{ width:34px; height:40px; margin-bottom:50px; }

/* ---------- Cabeçalho / nav ---------- */
.site-header{
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:var(--maxw);
  margin:0 auto;
  padding:26px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--red-bright);
}
.brand .brand-name{
  font-family:'Archivo Black', 'Inter', sans-serif;
  font-size:15px;
  font-weight:400;
  letter-spacing:2.5px;
  text-transform:uppercase;
  white-space:nowrap;
}
.nav-link{
  font-size:12px;
  font-weight:500;
  letter-spacing:2.5px;
  text-transform:uppercase;
  white-space:nowrap;
}

/* ---------- Página inicial ---------- */
.home{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.hero{
  flex:1 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 24px 60px;
}
.hero h1{
  font-family:'Archivo Black', 'Inter', sans-serif;
  font-weight:400;
  color:var(--cream);
  font-size:clamp(36px, 6.5vw, 72px);
  line-height:1.08;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:26px;
  max-width:16ch;
}
.hero h1 .accent{ color:var(--red); }
.hero .tagline{
  font-size:clamp(15px, 2.1vw, 19px);
  color:var(--text);
  max-width:40ch;
  margin-bottom:42px;
}

/* ---------- Botões ---------- */
.actions{ display:flex; gap:18px; flex-wrap:wrap; justify-content:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--red-line);
  color:var(--red-bright);
  background:transparent;
  padding:16px 34px;
  font-size:12px;
  font-weight:500;
  letter-spacing:2.5px;
  text-transform:uppercase;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

/* ---------- Rodapé ---------- */
.site-footer{
  flex-shrink:0;
  padding:0 24px 40px;
}
.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  font-size:14px;
  margin-bottom:30px;
}
.footer-links .sep{ color:var(--line); }
.footer-links a{ color:var(--red-bright); }
.divider{
  max-width:760px;
  margin:0 auto 26px;
  border:0;
  border-top:1px solid var(--line);
}
.company-info{
  max-width:880px;
  margin:0 auto;
  text-align:center;
  font-size:11.5px;
  line-height:1.85;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--text-dim);
}

/* ---------- Páginas legais ---------- */
.legal{
  max-width:var(--legalw);
  margin:0 auto;
  padding:70px 40px 30px;
}
.legal h1{
  font-family:'Archivo Black', 'Inter', sans-serif;
  font-weight:400;
  color:var(--cream);
  font-size:clamp(30px, 4.6vw, 46px);
  letter-spacing:.5px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.legal .updated{
  color:var(--text-dim);
  font-size:14px;
  margin-bottom:44px;
}
.legal h2{
  font-family:'Archivo Black', 'Inter', sans-serif;
  font-weight:400;
  color:var(--red-bright);
  font-size:clamp(17px, 2.4vw, 21px);
  letter-spacing:.4px;
  margin:46px 0 18px;
}
.legal p{ margin-bottom:16px; font-size:15.5px; }
.legal strong{ color:var(--cream); font-weight:500; }
.legal ul{ list-style:none; margin:0 0 16px; padding:0; }
.legal ul li{
  position:relative;
  padding-left:22px;
  margin-bottom:11px;
  font-size:15.5px;
}
.legal ul li::before{
  content:"";
  position:absolute;
  left:2px; top:10px;
  width:6px; height:6px;
  background:var(--red);
  transform:rotate(45deg);
  border-radius:1px;
}

/* ---------- Tabelas ---------- */
.legal-table{
  width:100%;
  border-collapse:collapse;
  margin:22px 0 8px;
  font-size:14px;
}
.legal-table th,
.legal-table td{
  text-align:left;
  vertical-align:top;
  padding:14px 16px;
  border:1px solid var(--line);
}
.legal-table th{
  color:var(--red-bright);
  font-weight:500;
  letter-spacing:.6px;
  background:rgba(226,58,46,0.06);
}
.legal-table td{ color:var(--text); }

/* ---------- Rodapé das páginas legais ---------- */
.legal-foot-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  font-size:14px;
  margin:50px 0 28px;
}
.legal-foot-links .sep{ color:var(--line); }

/* ---------- Responsivo ---------- */
@media (max-width:600px){
  .nav{ padding:20px 22px; }
  .brand .brand-name .brand-rest{ display:none; }
  .brand .brand-name{ letter-spacing:2px; }
  .nav-link{ letter-spacing:2px; }
  .legal{ padding:54px 22px 20px; }
  .hero{ padding:64px 22px 48px; }
  .actions{ flex-direction:column; width:100%; max-width:300px; }
  .btn{ width:100%; }
  .company-info{ letter-spacing:1px; }
  .legal-table th, .legal-table td{ padding:11px 12px; }
}
