/* ==========================================================================
   Senshi RS — Protótipo de site institucional
   Direção visual: "Tradição & Alto Rendimento" (Navy + Ouro)
   ========================================================================== */

:root {
  --navy-950: #070c2b;
  --navy-900: #0b1340;
  --navy-800: #10197a;
  --navy-700: #1a2a9e;
  --navy-100: #e7e9f7;
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e9bf3f;
  --gold-100: #fbf1d6;
  --ink: #15172a;
  --paper: #f8f7f3;
  --paper-alt: #efeee7;
  --gray-600: #565a6e;
  --gray-300: #c9cad6;
  --white: #ffffff;
  --success: #2e7d32;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-card: 0 10px 30px rgba(11, 19, 64, 0.12);
  --shadow-pop: 0 18px 44px rgba(11, 19, 64, 0.22);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  top: 10px; left: 10px;
  width: auto; height: auto;
  padding: 12px 18px;
  background: var(--gold-500);
  color: var(--navy-950);
  z-index: 1000;
  border-radius: var(--radius-sm);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--gray-600); }
a { color: inherit; }

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

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

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--navy {
  background: var(--navy-900);
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--alt { background: var(--paper-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.35);
}
.btn-primary:hover { background: var(--gold-400); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-100); }
.btn-whatsapp {
  background: #25D366;
  color: #06210f;
}
.btn-whatsapp:hover { background: #34e077; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 3px solid var(--gold-500);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,0.08);
  color: var(--gold-400);
}
.nav-links .is-soon {
  color: rgba(255,255,255,0.35);
  cursor: default;
}
.nav-links .is-soon:hover { background: none; color: rgba(255,255,255,0.35); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 8px 12px;
  font-size: 1.1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
  opacity: 0.85;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,12,43,0.55) 0%, rgba(7,12,43,0.35) 35%, rgba(7,12,43,0.94) 100%),
    linear-gradient(90deg, rgba(7,12,43,0.92) 0%, rgba(7,12,43,0.25) 62%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 64px;
}
.hero__kicker {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--gold-400);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); max-width: 780px; }
.hero__lede {
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.85);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__stat strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  color: var(--gold-400);
}
.hero__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px;
  height: 100%;
}
.card h3 { margin-bottom: 10px; }
.card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-family: "Oswald", sans-serif;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-bottom: 10px;
}
.tag--confirm {
  background: #fde8e8;
  color: #b3261e;
}

.unit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.unit-card__head {
  background: var(--navy-900);
  color: var(--white);
  padding: 22px 24px;
}
.unit-card__head h3 { color: var(--white); margin-bottom: 4px; }
.unit-card__body { padding: 22px 24px; flex: 1; }
.unit-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  margin: 0 0 18px;
  font-size: 0.92rem;
}
.unit-card dt {
  font-weight: 700;
  color: var(--navy-800);
}
.unit-card dd { margin: 0; color: var(--gray-600); }
.confirm {
  color: #b3261e;
  font-weight: 600;
  font-style: italic;
}

/* ---------- Person / athlete cards ---------- */
.people-card {
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.people-card__media { aspect-ratio: 4/5; overflow: hidden; background: var(--navy-100); }
.people-card__media img { width: 100%; height: 100%; object-fit: cover; }
.people-card__body { padding: 20px 22px; }
.people-card__role {
  color: var(--gold-600);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ---------- News ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border-left: 4px solid var(--gold-500);
}
.news-card time {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
}

/* ---------- Sponsors ---------- */
.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.sponsor-slot {
  width: 160px;
  height: 74px;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.78rem;
  text-align: center;
  padding: 8px;
}

/* ---------- Ad slot (marked, discreet) ---------- */
.ad-slot {
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.78rem;
  background: #fbfbf9;
  margin: 36px 0;
}
.ad-slot span { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; }

/* ---------- Timeline (História) ---------- */
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-800));
  border-radius: 3px;
}
.timeline li {
  position: relative;
  padding: 4px 0 32px 56px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--navy-950);
  box-shadow: 0 0 0 3px var(--gold-100);
}
.timeline .t-year {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 16px;
  box-shadow: var(--shadow-card);
}
.timeline summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  color: var(--navy-900);
}
.timeline details p:last-child { margin-bottom: 12px; }

/* ---------- Values grid ---------- */
.value-item { text-align: center; padding: 18px; }
.value-item .glyph {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
}

/* ---------- Founder / bio split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
}
.pending-note {
  border: 1px solid #f0c9c9;
  background: #fdf3f3;
  color: #8a241c;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.78); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 22px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.72); }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: #25D366;
  color: #06210f;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  text-decoration: none;
  font-size: 1.6rem;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  background: var(--navy-950);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-pop);
  max-width: 760px;
  margin: 0 auto;
}
.cookie-banner p { margin: 0; font-size: 0.86rem; color: rgba(255,255,255,0.82); }
.cookie-banner a { color: var(--gold-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
}
.cookie-actions .accept { background: var(--gold-500); color: var(--navy-950); font-weight: 700; }
.cookie-actions .reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.35); }
.hidden { display: none !important; }

/* ---------- Breadcrumb / page intro ---------- */
.page-intro {
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--gold-500);
}
.page-intro h1 { color: var(--white); }
.page-intro p { color: rgba(255,255,255,0.78); max-width: 640px; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-950);
    padding: 12px 24px 20px;
    border-bottom: 3px solid var(--gold-500);
  }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero__content { padding: 100px 0 48px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
