/* ============================================
   PLUS ESPORTES — DESIGN SYSTEM
   Paleta: Azul #1a3fdc / Branco / Cinza claro
   ============================================ */

/* ============================================
   INTRO ANIMAÇÃO LOGO 3D
   ============================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #060f2e;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.intro-overlay.fade-out {
  opacity: 0;
}

.intro-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
}

.intro-logo {
  width: 120px;
  height: auto;
  animation: logoSpin3D 1.4s cubic-bezier(.4,0,.2,1) forwards;
  filter: drop-shadow(0 0 30px rgba(26,63,220,0.9));
  transition: transform 0.8s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
  position: relative;
  z-index: 10002;
}

/* canvas fogos — atrás do logo mas dentro do overlay */
#fireworksCanvas {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.intro-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-rings span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(26, 63, 220, 0.5);
  animation: ringPulse 1.4s ease-out infinite;
}

.intro-rings span:nth-child(1) { width: 140px; height: 140px; animation-delay: 0s; }
.intro-rings span:nth-child(2) { width: 170px; height: 170px; animation-delay: 0.3s; }
.intro-rings span:nth-child(3) { width: 200px; height: 200px; animation-delay: 0.6s; }

@keyframes logoSpin3D {
  0%   { transform: perspective(600px) rotateY(-180deg) scale(0.4); opacity: 0; }
  40%  { transform: perspective(600px) rotateY(20deg)  scale(1.1); opacity: 1; }
  60%  { transform: perspective(600px) rotateY(-10deg) scale(1); }
  80%  { transform: perspective(600px) rotateY(5deg)  scale(1); }
  100% { transform: perspective(600px) rotateY(0deg)  scale(1); opacity: 1; }
}

@keyframes ringPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}

:root {
  --blue:       #1a3fdc;
  --blue-dark:  #122db8;
  --blue-light: #e8eeff;
  --blue-mid:   #d0d9ff;
  --white:      #ffffff;
  --gray-50:    #f6f8fd;
  --gray-100:   #eef1f8;
  --gray-200:   #d8dff0;
  --gray-400:   #8a98c0;
  --gray-600:   #4a5578;
  --gray-800:   #1e2647;
  --text:       #0f1833;
  --text-muted: #5a6482;
  --shadow-sm:  0 2px 8px rgba(26,63,220,.10);
  --shadow-md:  0 8px 24px rgba(26,63,220,.13);
  --shadow-lg:  0 20px 50px rgba(26,63,220,.17);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { width: min(1160px, 92%); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.section.bg-light { background: var(--gray-50); }
.section.bg-blue  { background: var(--blue); color: var(--white); }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head h2 { margin: 0.5rem 0 0.8rem; }
.section-head p { color: var(--text-muted); max-width: 58ch; margin: 0 auto; }

/* ── LABEL TAG ── */
.label-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.label-tag.white { color: var(--white); background: rgba(255,255,255,.18); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(26,63,220,.35);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue-light); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover { background: var(--blue-light); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo-link { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-fallback {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
.logo-text-fallback strong { color: var(--blue); }

.nav-menu {
  display: flex;
  gap: 1.6rem;
  font-weight: 600;
  color: var(--gray-600);
}
.nav-menu a { transition: color .18s; }
.nav-menu a:hover { color: var(--blue); }

.header-actions { display: flex; gap: 0.75rem; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: all .22s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 1.4rem 1.4rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
  color: var(--gray-600);
}
.mobile-link:hover { color: var(--blue); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}
.hero-bg { display: none; }
.hero-circle { display: none; }
.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* desktop: mostra banner normal, esconde wrap mobile */
.hero-desktop    { display: block; }
.hero-mobile-wrap { display: none; }

.hero-inner { display: none; }

/* ── Hero mobile wrap ── */
.hero-mobile-wrap {
  position: relative;
  width: 100%;
}

.hero-mobile-img {
  display: block;
  width: 100%;
  height: auto;
}

/* slider flutuante no lado direito */
.hero-mobile-slider {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 48%;
  overflow: hidden;
}

.mobile-slider-track {
  display: flex;
  flex-direction: row;
  transition: transform 0.8s ease-in-out;
}

.mobile-slider-track img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: #7dd3fc; }
.hero > .container > .hero-inner > .hero-content > p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; }
.stat span   { font-size: 0.88rem; color: rgba(255,255,255,.7); }
.stat-sep    { width: 1px; height: 36px; background: rgba(255,255,255,.22); }

/* Hero kit showcase */
.hero-visual { position: relative; }
.kit-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}
.kit-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .22s;
}
.kit-card:hover { transform: translateY(-6px); }
.kit-card-main {
  transform: translateY(-12px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.kit-card span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.kit-shirt { width: 80px; margin: 0 auto; }
.shirt-svg { width: 100%; }

.badge-float {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ============================================
   SLIDER CAMISETAS
   ============================================ */
.shirts-slider-section {
  background: #f0f4ff;
  padding: 3.5rem 0 4rem;
}

.shirts-slider-header {
  text-align: center;
  margin-bottom: 2rem;
}

.shirts-slider-header h2 {
  font-size: 1.9rem;
  color: #0d1f6e;
  margin-top: 0.4rem;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.slider-viewport {
  overflow: hidden;
  width: min(1000px, 88vw);
}

.slider-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

/* ── Card individual ── */
.kit-card-slide {
  flex-shrink: 0;
  width: 200px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s;
  cursor: pointer;
}

.kit-card-slide:hover {
  transform: translateY(-6px);
}

.kit-card-img {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.kit-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.kit-card-info {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kit-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a3fdc;
  background: #e8eeff;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.kit-card-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d1f6e;
  margin: 0;
}

.kit-card-btn {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a3fdc;
  text-decoration: none;
  transition: color 0.2s;
}

.kit-card-btn:hover {
  color: #0d2db8;
}

/* ── Botões nav ── */
.slider-btn {
  background: #1a3fdc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26,63,220,0.25);
  transition: background 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: #0d2db8;
  transform: scale(1.08);
}

/* ============================================
   MODALIDADES
   ============================================ */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.modal-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .22s;
  cursor: pointer;
}
.modal-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.modal-icon svg { width: 32px; height: 32px; }
.modal-card h3 { margin-bottom: 0.4rem; }
.modal-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1rem; }
.card-link {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
  transition: gap .15s;
}
.card-link:hover { text-decoration: underline; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
}
.step {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .22s;
}
.step:hover { box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step-body h3 { margin-bottom: 0.4rem; }
.step-body p  { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow {
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 700;
  align-self: center;
  padding-top: 1rem;
}

/* ============================================
   ORÇAMENTO
   ============================================ */
.quote-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.quote-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-section { margin-bottom: 1.5rem; }
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
  transition: border-color .18s, box-shadow .18s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,63,220,.12);
  background: var(--white);
}
select { cursor: pointer; }

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all .18s;
}
.checkbox-label:hover { border-color: var(--blue); background: var(--blue-light); }
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label em { color: var(--blue); font-style: normal; font-weight: 700; font-size: 0.82rem; margin-left: auto; }

.form-actions { margin-top: 1.5rem; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }

/* quote panel */
.quote-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.panel-header h3 { font-size: 1.2rem; }
.badge-info {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
.panel-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.price-display {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.price-row strong { color: var(--text); font-weight: 700; }
.price-divider { height: 1.5px; background: var(--gray-200); margin: 0.5rem 0; }
.total-row { }
.total-row span { font-weight: 700; color: var(--text); font-size: 1rem; }
.total-row strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.price-range { margin-top: 0.4rem; }
.price-range small { color: var(--text-muted); font-size: 0.8rem; }

.resumo-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-bottom: 1rem;
}
.resumo-box h4 {
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 0.6rem;
}
#resumoItens { padding: 0; }
#resumoItens li {
  font-size: 0.87rem;
  color: var(--gray-600);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--blue-mid);
}
#resumoItens li:last-child { border: none; }
.resumo-empty { color: var(--text-muted) !important; font-style: italic; }

.panel-cta { display: grid; gap: 0.65rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-container { max-width: 820px; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-100);
  padding-top: 0.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-top.bg-blue { padding: 4rem 0; }
.footer-cta { text-align: center; }
.footer-cta h2 { color: var(--white); margin-bottom: 0.8rem; }
.footer-cta p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

.footer-main { background: var(--gray-800); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col li {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--white); }
.footer-col > p:first-of-type { color: var(--gray-400); font-size: 0.9rem; margin-top: 0.8rem; }

.footer-bottom {
  background: var(--gray-800);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  text-align: center;
}
.footer-bottom p { color: var(--gray-400); font-size: 0.82rem; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
/* ============================================
   COPA DO MUNDO — CARD FLUTUANTE
   ============================================ */
.copa-float {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(110deg, #05143a 0%, #0a2a6e 40%, #05143a 100%);
  border: 1.5px solid rgba(255,210,0,0.35);
  border-radius: 0;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0% 50%);
  padding: 14px 40px 14px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 30px rgba(255,210,0,0.15);
  min-width: 520px;
  max-width: 95vw;
  overflow: visible;
  opacity: 0;
  transform: translateX(-50%) translateY(-50vh) scale(0.3);
  transition: none;
}

.copa-float.copa-burst {
  opacity: 1;
  transform: translateX(-50%) translateY(-50vh) scale(1.08);
  transition: transform 0.35s cubic-bezier(.2,1.6,.4,1), opacity 0.25s ease;
}

.copa-float.copa-land {
  transform: translateX(-50%) translateY(0);
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  animation: copaPulse 3s ease-in-out 0.8s infinite;
}

.copa-float.hide {
  transform: translateX(-50%) translateY(150px) !important;
  transition: transform 0.4s ease !important;
  animation: none !important;
}

@keyframes copaSlideDown {
  to { transform: translateX(-50%) translateY(150px); }
}

@keyframes copaPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 20px rgba(255,210,0,0.12); }
  50%       { box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 40px rgba(255,210,0,0.35); }
}

.copa-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f5c800;
  color: #05143a;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.7rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.copa-left {
  flex-shrink: 0;
  margin-right: 14px;
}

.copa-trophy {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(245,200,0,0.6));
  animation: trophyFloat 2.5s ease-in-out infinite;
}

@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.copa-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.copa-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5c800;
}

.copa-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.copa-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.copa-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2px 6px;
  min-width: 36px;
}

.copa-unit strong {
  font-size: 1rem;
  font-weight: 900;
  color: #f5c800;
  line-height: 1;
}

.copa-unit span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copa-sep {
  color: #f5c800;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 10px;
}

.copa-right {
  flex-shrink: 0;
  margin-left: 16px;
}

.copa-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5c800, #ffaa00);
  color: #05143a;
  font-weight: 900;
  font-size: 0.78rem;
  text-align: center;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(245,200,0,0.35);
  white-space: nowrap;
}

.copa-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245,200,0,0.5);
}

@media (max-width: 600px) {
  .copa-float {
    min-width: unset;
    width: 96vw;
    padding: 12px 16px 14px;
    clip-path: none;
    border-radius: 14px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .copa-left { flex-shrink: 0; }
  .copa-trophy { height: 48px; }
  .copa-center { flex: 1; min-width: 0; }
  .copa-label { font-size: 0.55rem; }
  .copa-text  { font-size: 0.78rem; }
  .copa-unit  { min-width: 28px; padding: 2px 4px; }
  .copa-unit strong { font-size: 0.8rem; }
  .copa-unit span   { font-size: 0.5rem; }
  .copa-right { flex-shrink: 0; margin-left: 0; }
  .copa-btn   { font-size: 0.72rem; padding: 10px 12px; white-space: nowrap; }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .22s, box-shadow .22s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1020px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .step-arrow { display: none; }
  .hero-inner, .quote-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions { display: none; }
  .hamburger { display: flex; }
  .modal-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .extras-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hero-desktop     { display: none; }
  .hero-mobile-wrap { display: block; }
}

@media (max-width: 520px) {
  .modal-grid { grid-template-columns: 1fr; }
  .hero { padding: 0; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .stat-sep { display: none; }

  .shirts-slider-section { padding: 2rem 0; }

  .slider-wrapper {
    gap: 0.4rem;
    padding: 0;
  }

  .slider-viewport {
    width: 100vw;
  }

  .slider-track {
    gap: 0.6rem;
    padding: 0 0.5rem;
  }

  .kit-card-slide {
    width: 130px;
  }

  .kit-card-img {
    padding: 0.3rem;
  }

  .kit-card-info {
    padding: 0.5rem 0.6rem 0.7rem;
    gap: 0.2rem;
  }

  .kit-card-info h4 {
    font-size: 0.8rem;
  }

  .kit-tag {
    font-size: 0.6rem;
  }

  .kit-card-btn {
    font-size: 0.72rem;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}
