/* ============================================================
   FÚRIA FLECHA — Design tokens
   Navy escuro + laranja + azul, tipografia Creato Display/Louis
   George Cafe (Mulan no logotipo), cantos arredondados largos,
   motivo visual: arco e flecha.
   ============================================================ */

@font-face{
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Louis George Cafe';
  src: url('fonts/LouisGeorgeCafe-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Louis George Cafe';
  src: url('fonts/LouisGeorgeCafe-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Mulan';
  src: url('fonts/Mulan.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --navy-950: #0a0f1c;
  --navy-900: #0b1220;
  --navy-800: #101a2e;
  --navy-700: #16223a;
  --navy-border: #223051;

  --orange-500: #fb7a2a;
  --orange-600: #f2650f;
  --blue-400: #3b9eff;

  --ink: #0f1526;
  --paper: #f4f6fb;
  --paper-dim: #e7eaf3;
  --muted-on-dark: #a7b3ce;
  --muted-on-light: #5a6478;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-display: 'Creato Display', sans-serif;
  --font-body: 'Louis George Cafe', sans-serif;
  --font-brand: 'Mulan', var(--font-display);

  --shadow-card: 0 20px 40px -20px rgba(10, 15, 28, 0.35);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p{ margin: 0; }

ul{ margin: 0; padding: 0; list-style: none; }

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Skip link para acessibilidade */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy-900);
  border-bottom: 1px solid var(--navy-border);
}

.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.85rem;
  color: #fff;
  white-space: nowrap;
}

.brand .accent{ color: var(--orange-500); }

.brand-text{ display: flex; flex-direction: column; line-height: 1; }

.brand-eyebrow{
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 2px;
}

.brand-name{ display: block; }

.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1c8fff, #0b1220);
  border: 2px solid var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a{
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  color: var(--muted-on-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .15s ease, color .15s ease;
}

.main-nav a:hover{ color: #fff; }

.main-nav a.active{
  background: var(--navy-700);
  color: #fff;
}

.main-nav a.cta{
  background: var(--orange-500);
  color: #fff;
}
.main-nav a.cta:hover{ background: var(--orange-600); color: #fff; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Botões ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(251, 122, 42, 0.55);
}
.btn-primary:hover{ background: var(--orange-600); }

.btn-outline-dark{
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--navy-border);
}
.btn-outline-dark:hover{ border-color: var(--blue-400); color: var(--blue-400); }

.btn-outline-light{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #d7dbe8;
}
.btn-outline-light:hover{ border-color: var(--orange-500); color: var(--orange-600); }

/* ---------- Hero (Home) ---------- */
.hero{
  background:
    radial-gradient(ellipse 700px 500px at 82% 30%, rgba(59,158,255,.14), transparent 60%),
    var(--navy-900);
  overflow: hidden;
  position: relative;
}

.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1{
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 .accent{ color: var(--orange-500); }

.hero p.lead{
  color: var(--muted-on-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

.hero-emblem{
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.hero-emblem-rings{ position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-emblem-photo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-800);
}

.hero-emblem-photo img{ width: 100%; height: 100%; object-fit: contain; }

.hero-photo-col{ display: flex; flex-direction: column; gap: 28px; }

.hero-photo-torcida{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.ring-spin{
  animation: spin 40s linear infinite;
  transform-origin: 50% 50%;
}

@media (prefers-reduced-motion: reduce){
  .ring-spin{ animation: none; }
}

@keyframes spin{ to{ transform: rotate(360deg); } }

/* ---------- Seções genéricas ---------- */
.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }
.section-dark{ background: var(--navy-900); color: #fff; }
.section-light{ background: var(--paper); }
.section-white{ background: #fff; }

.section-title{
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 32px;
}

/* ---------- Card: próximo jogo ---------- */
.next-match{
  background: var(--navy-900);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}

.match-teams{
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

.match-vs{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.match-meta{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  margin-top: 6px;
}

.match-meta strong{ color: #fff; font-weight: 600; }

/* ---------- Loja destaque (split) ---------- */
.shop-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.shop-split .copy{
  background: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-split .visual{
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.shop-split .visual img{
  width: 260px;
  max-width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.tag{
  display: inline-block;
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.shop-split h2{ font-size: 2rem; margin-bottom: 16px; }
.shop-split p{ color: var(--muted-on-light); line-height: 1.6; margin-bottom: 26px; max-width: 44ch; }

/* ---------- Página interna: hero de título ---------- */
.page-hero{
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  padding: 52px 0 24px;
  color: #fff;
}

.breadcrumb{
  color: var(--muted-on-dark);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.breadcrumb .current{ color: var(--orange-500); font-weight: 600; }

.page-hero h1{ font-size: clamp(2rem, 4vw, 2.7rem); color: #fff; }

.page-hero.has-visual .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero-visual{
  height: 96px;
  width: auto;
  object-fit: contain;
}

/* ---------- Quem Somos ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-grid p, .prose p{
  color: var(--muted-on-light);
  line-height: 1.75;
  font-size: 1.03rem;
  margin-bottom: 20px;
}
.prose{ max-width: 68ch; }
.prose p:last-child{ margin-bottom: 0; }

.section-lead{
  color: var(--muted-on-light);
  font-size: 1.03rem;
  line-height: 1.6;
  max-width: 68ch;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-figure{
  /*background: #fff;
  /* border: 1px dashed #cfd6e6;*/
  /*border-radius: var(--radius-lg);*/
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.about-figure img{ max-width: 100%; height: auto; border-radius: var(--radius-md); }

.diferencial-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.comments-col{ display: flex; flex-direction: column; gap: 16px; }
.comments-col img{ width: 100%; border-radius: var(--radius-md); display: block; }

.values-list{
  margin-top: 12px;
  display: grid;
  gap: 18px;
}

.value-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--paper-dim);
}

.value-dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange-500);
  margin-top: 7px;
  flex-shrink: 0;
}

.value-item h4{ font-size: 1rem; margin-bottom: 4px; }
.value-item p{ color: var(--muted-on-light); font-size: 0.92rem; margin: 0; }

/* ---------- Calendário ---------- */
.filter-tabs{
  display: inline-flex;
  gap: 8px;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--paper-dim);
  margin-bottom: 30px;
}

.filter-tabs button{
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--muted-on-light);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.filter-tabs button.active{
  background: var(--navy-900);
  color: #fff;
}

.match-list{ display: grid; gap: 16px; }

.match-card{
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--paper-dim);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.match-card-left{ display: flex; align-items: center; gap: 20px; }

.match-date{
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-sm);
  width: 74px;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.match-date .day{ font-size: 1.35rem; font-weight: 800; font-family: var(--font-display); line-height: 1; }
.match-date .mon{ font-size: 0.72rem; color: var(--orange-500); font-weight: 700; letter-spacing: .06em; margin-top: 2px; }

.match-card h3{ font-size: 1.05rem; margin-bottom: 4px; }
.match-card .venue{ color: var(--muted-on-light); font-size: 0.9rem; }
.match-card .venue .loc-tag{ font-weight: 700; color: var(--ink); }

.team-badge{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.round-label{
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted-on-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.venue-link{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--paper-dim);
  text-underline-offset: 3px;
}
.venue-link:hover{ color: var(--blue-400); text-decoration-color: var(--blue-400); }

.match-card-right{ display: flex; align-items: center; gap: 18px; }
.match-time{ font-weight: 700; }

.status-pill{
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}
.status-confirmado{ background: #e4f7ec; color: #1a8f52; }
.status-adefinir{ background: #fdf1e2; color: #b46a12; }

/* ---------- Loja / Produto ---------- */
.product-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-card + .product-card{
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--paper-dim);
}

.product-perk{
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cart-summary{
  margin-top: 64px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-lg);
  max-width: 520px;
}

.cart-items{ margin: 16px 0 20px; }

.cart-empty{ color: var(--muted-on-light); font-size: 0.95rem; }

.cart-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--paper-dim);
}
.cart-line:first-child{ border-top: 1px solid var(--paper-dim); }

.cart-line-name{ font-weight: 600; }
.cart-line-meta{ color: var(--muted-on-light); font-size: 0.85rem; }
.cart-line-price{ font-weight: 700; white-space: nowrap; }

.cart-total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-total strong{ font-family: var(--font-display); font-size: 1.4rem; }

.cart-summary .btn{ width: 100%; }

.form-note{ color: var(--muted-on-light); font-size: 0.85rem; margin-top: 12px; }

.checkout-message{
  min-height: 1.2em;
  color: #a53a24;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 10px;
}

.payment-result{
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.payment-result h2{ margin-bottom: 16px; }
.payment-result p{ color: var(--muted-on-light); line-height: 1.6; margin-bottom: 20px; }
.payment-result .btn{ margin: 4px; }

.size-chart{
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--paper-dim);
  display: flex;
  justify-content: center;
}
.size-chart img{
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.product-image{
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img{ width: 100%; height: 100%; object-fit: cover; }

.product-thumbs{
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumb{
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy-900);
  cursor: pointer;
  flex-shrink: 0;
}
.thumb img{ width: 100%; height: 100%; object-fit: cover; }
.thumb:hover{ border-color: var(--navy-border); }
.thumb.active{ border-color: var(--orange-500); }

.price{
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  margin: 10px 0 18px;
}

.product-desc{ color: var(--muted-on-light); line-height: 1.65; margin-bottom: 30px; max-width: 50ch; }

.field-label{
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-bottom: 12px;
  display: block;
}

.size-group{ display: flex; gap: 10px; margin-bottom: 30px; }

.size-btn{
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--paper-dim);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}
.size-btn:hover{ border-color: var(--orange-500); }
.size-btn.active{ background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.qty-group{
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--paper-dim);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 34px;
}

.qty-group button{
  width: 44px; height: 44px;
  border: none;
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}
.qty-group button:hover{ background: var(--paper-dim); }

.qty-group span{
  width: 46px;
  text-align: center;
  font-weight: 700;
}

.form-note{
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted-on-light);
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy-950);
  color: var(--muted-on-dark);
  padding: 56px 0 0;
}

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

.footer-brand p{
  margin-top: 14px;
  max-width: 34ch;
  line-height: 1.6;
  font-size: 0.92rem;
}

.footer-nav{ display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a{ font-weight: 600; color: var(--muted-on-dark); }
.footer-nav a:hover{ color: #fff; }
.footer-nav a.current{ color: #fff; }

.social-row{ display: flex; gap: 10px; }
.social-row a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--navy-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.social-row a:hover{ border-color: var(--orange-500); color: var(--orange-500); }

.footer-bottom{
  border-top: 1px solid var(--navy-border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-fab{
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
  z-index: 50;
}
.whatsapp-fab svg{ width: 28px; height: 28px; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .hero-emblem{ max-width: 320px; order: -1; }
  .shop-split{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .diferencial-grid{ grid-template-columns: 1fr; }
  .product-layout{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction: column; }
}

@media (max-width: 600px){
  .page-hero.has-visual .container{ flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 760px){
  .main-nav{
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--navy-border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ text-align: center; }
  .nav-toggle{ display: block; }
  .section{ padding: 60px 0; }
  .container{ padding: 0 20px; }
  .next-match{ padding: 24px; }
}
