/* Treinador Guilherme Silva Rocha — static styles */
:root {
  --bg: #0f1c10;
  --bg-card: #15291a;
  --fg: #f5f3e7;
  --muted: #b8c2b0;
  --primary: #d6f23a;
  --primary-fg: #0f1c10;
  --border: rgba(214, 242, 58, 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: "Bebas Neue", "Impact", sans-serif; letter-spacing: 0.02em; line-height: 1.05; }
.font-serif { font-family: "Cormorant Garamond", Georgia, serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Top bar */
.topbar {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.topbar strong { color: var(--fg); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15, 28, 16, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: "Bebas Neue", sans-serif; font-size: 1.25rem; letter-spacing: 0.05em; line-height: 1; }
.nav { display: flex; gap: 2rem; font-size: 0.875rem; }
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }

/* Sections */
section { padding: 5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.h-hero { font-size: clamp(3.5rem, 8vw, 6rem); }
.h-section { font-size: clamp(2.5rem, 5vw, 3.75rem); }
.lede { font-size: 1.5rem; line-height: 1.3; margin-top: 2rem; }
.muted { color: var(--muted); }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.cover { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 4px; }
.cover-wide { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }

/* Strip */
.strip { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.accent { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: inherit;
}
.btn:hover { background: var(--primary); color: var(--primary-fg); }
.btn-solid { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.btn-solid:hover { opacity: 0.9; }

/* Philosophy detail */
.pillar { border-left: 2px solid var(--primary); padding-left: 1.5rem; }
.pillar + .pillar { margin-top: 2rem; }
.pillar-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary); }
.pillar-title { font-family: "Bebas Neue", sans-serif; font-size: 1.875rem; margin-top: 0.5rem; }

/* Service cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 780px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--primary); }
.card-bar { width: 48px; height: 4px; background: var(--primary); margin-bottom: 1rem; }
.card-title { font-size: 1.5rem; font-family: "Bebas Neue", sans-serif; }
.card-desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.card-divider { border-top: 1px solid var(--border); margin: 1.5rem 0; }
.card-price { font-size: 0.875rem; color: var(--muted); }
.card .btn { margin-top: 1.5rem; padding: 0.5rem 1.5rem; text-align: center; }

/* Partnerships */
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; max-width: 720px; }

/* Contact form */
.form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; }
.field label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 0.25rem; }
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--primary); }
.chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
.chip {
  background: transparent; border: 1px solid var(--border); color: var(--fg);
  padding: 0.5rem 1.25rem; font-size: 0.875rem; cursor: pointer; font-family: inherit;
}
.chip.active, .chip:hover { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.footer-title { font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; margin-top: 0.5rem; }
.footer-sub { font-size: 0.875rem; color: var(--muted); }

@media (max-width: 640px) {
  .nav { gap: 1rem; font-size: 0.8rem; }
  section { padding: 3rem 0; }
}
