/* ==========================================================================
   Strike Hasse — site institucional
   Paleta e regras: identidade/design-guide.md
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --card: #1c1c1c;
  --card-alt: #232323;
  --border: #2b2b2b;
  --accent: #8c1c1c;
  --accent-hover: #a3231f;
  --blue: #1c2b4a;
  --text: #f2f2ef;
  --text-muted: #a8a8a3;
  --text-dim: #706f6b;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 8px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 4.6vw, 46px);
  margin-bottom: 12px;
}

h3 { font-size: 24px; }

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 56ch;
}

.section-foot-link {
  margin-top: 40px;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: #3d3d3a;
}
.btn--outline:hover { border-color: var(--text); }

.btn--block { width: 100%; }

.btn--sm { padding: 10px 18px; font-size: 13px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- Header / nav ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(140, 28, 28, 0.16), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  margin-bottom: 20px;
}

.hero h1 .destaque { color: var(--accent-hover); }

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 54ch;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.stat {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--text);
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Mestre ---------- */

.mestre {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.mestre-quote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
  font-style: italic;
}

/* ---------- Grid genérico de cards ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.card h3 { margin-bottom: 6px; }

.card .price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text);
  margin: 14px 0 4px;
}
.card .price small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.card ul { margin: 14px 0 20px; }
.card ul li {
  padding: 7px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}
.card ul li:first-child { border-top: none; }
.card ul li b { color: var(--text); font-weight: 600; }

.tag {
  display: inline-block;
  background: var(--blue);
  color: #cfd8ea;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ---------- Horários ---------- */

.schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.day-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.day-card h4 {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
  margin-bottom: 14px;
}

.day-card .slot {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.day-card .slot:first-of-type { border-top: none; }
.day-card .slot .time { color: var(--text); font-weight: 600; display: block; }
.day-card .slot .mod { color: var(--text-muted); }

.day-card .slot.empty { color: var(--text-dim); font-style: italic; }

/* ---------- Loja / Eventos ---------- */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: left;
}

.mini-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--card-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent-hover);
}

.mini-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-bottom: 6px; text-transform: none; }
.mini-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- Prova social ---------- */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-card .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd8ea;
}

.trust-card strong { display: block; font-size: 15px; }
.trust-card span { color: var(--text-muted); font-size: 13px; }

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent-hover);
  flex-shrink: 0;
  transition: transform .15s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 68ch;
}

/* ---------- Contato / formulário ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info .item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.contact-info .item:first-child { border-top: none; }

.contact-info .item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-hover);
}

.contact-info .item strong { display: block; font-size: 14px; }
.contact-info .item a,
.contact-info .item span { color: var(--text-muted); font-size: 14px; }
.contact-info .item a:hover { color: var(--text); }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.field input,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-hover);
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--bg-alt);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
}
.footer-brand img { height: 40px; width: 40px; object-fit: contain; }

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 12px;
}

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1f7a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-cta .btn span { display: none; }

  .header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding: 140px 0 64px; }
  .stats { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 auto; }
}
