/* =============================================
   CAMISETAS MIAMI – Featured Landing Page
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700;900&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #090909;
  --surface:   #111111;
  --surface2:  #1a1a1a;
  --border:    #252525;
  --accent:    #e8b800;
  --accent2:   #ff3c3c;
  --green:     #25d366;
  --text:      #f0f0f0;
  --muted:     #777;
  --white:     #ffffff;

  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r:  10px;
  --r2: 18px;
  --t:  0.25s ease;
  --sh: 0 4px 32px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-family: var(--font-b); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

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

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

.btn--whatsapp { background: var(--green); color: #fff; border-color: var(--green); }
.btn--whatsapp:hover { background: #1bbd5a; border-color: #1bbd5a; }

.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* --- TYPOGRAPHY HELPERS --- */
.accent      { color: var(--accent); }
.section-title { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 2px; margin-bottom: 10px; }
.section-sub   { color: var(--muted); font-size: 1rem; margin-bottom: 48px; }
.section-eyebrow { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }

/* --- TOP BAR (ticker) --- */
.topbar {
  background: var(--accent); color: #000;
  height: 36px; overflow: hidden;
  display: flex; align-items: center;
}
.topbar__ticker {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- HEADER --- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,9,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.logo__text { font-family: var(--font-d); font-size: 1.5rem; letter-spacing: 3px; color: var(--white); }
.logo__accent { color: var(--accent); }

.header__nav { display: flex; align-items: center; gap: 24px; }
.header__nav a { font-size: 0.88rem; font-weight: 600; color: var(--muted); transition: color var(--t); }
.header__nav a:hover { color: var(--text); }
.header__nav .nav__wa {
  background: var(--green); color: #fff; padding: 8px 18px;
  border-radius: 100px; font-weight: 700; font-size: 0.82rem;
}
.header__nav .nav__wa:hover { background: #1bbd5a; color: #fff; }

/* --- HERO --- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #090909 0%, #130f00 55%, #090909 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,184,0,0.07) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(232,184,0,0.025) 0, rgba(232,184,0,0.025) 1px, transparent 1px, transparent 60px);
}
.hero__inner { position: relative; z-index: 2; padding: 80px 24px; max-width: 760px; }
.hero__eyebrow {
  display: inline-block; background: var(--accent2); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 20px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,60,60,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(255,60,60,0); }
}
.hero__title {
  font-family: var(--font-d); font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1; letter-spacing: 3px; margin-bottom: 20px;
}
.hero__accent { color: var(--accent); text-shadow: 0 0 60px rgba(232,184,0,0.4); }
.hero__sub { max-width: 560px; color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 2px; color: var(--muted);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* --- FEATURED --- */
.featured { padding: 100px 0; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}
.section-header__left { flex: 1; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.product-card__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--surface2); display: block;
}
.product-card__img-wrap img { transition: transform 0.5s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px;
  padding: 5px 12px; border-radius: 100px; text-transform: uppercase;
}
.product-card__badge--retro { background: rgba(232,184,0,0.95); color: #000; }
.product-card__badge--hot   { background: var(--accent2); color: #fff; }
.product-card__badge--new   { background: #00c896; color: #000; }

.product-card__info { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card__cat  { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.product-card__name { font-family: var(--font-d); font-size: 1.6rem; letter-spacing: 1px; color: var(--white); }
.product-card__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; flex: 1; margin-bottom: 6px; }
.product-card .btn  { align-self: flex-start; margin-top: 4px; }

/* Product card placeholder when no image */
.product-card__img-wrap img[src=""] {
  background: var(--surface2);
}

/* --- HOODIES BANNER --- */
.hoodies-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e0b00 0%, #1a1400 50%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hoodies-banner::before {
  content: 'HOODIES';
  position: absolute; font-family: var(--font-d); font-size: 18vw;
  color: rgba(232,184,0,0.04); top: 50%; left: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none;
}
.hoodies-banner__inner {
  display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hoodies-banner__content { flex: 1; min-width: 280px; }
.hoodies-banner__eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.hoodies-banner__title { font-family: var(--font-d); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.95; letter-spacing: 3px; margin-bottom: 20px; }
.hoodies-banner__sub { color: var(--muted); font-size: 1rem; max-width: 480px; margin-bottom: 32px; line-height: 1.7; }

.hoodies-banner__images {
  flex: 0 0 320px; display: flex; gap: 12px; align-items: flex-end;
}
.hoodies-img {
  border-radius: var(--r2); overflow: hidden; background: var(--surface2);
  border: 1px solid var(--border);
}
.hoodies-img--main     { width: 180px; height: 240px; }
.hoodies-img--secondary{ width: 130px; height: 180px; }
.hoodies-img img       { transition: transform 0.5s ease; }
.hoodies-img:hover img { transform: scale(1.05); }
.hoodies-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- NEW ARRIVALS --- */
.new-arrivals { padding: 100px 0; }

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.arrival-product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.arrival-product:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.arrival-product__img {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface2);
}
.arrival-product__img img {
  transition: transform 0.5s ease;
}
.arrival-product:hover .arrival-product__img img {
  transform: scale(1.06);
}
.arrival-product__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #00c896;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.arrival-product__info {
  padding: 16px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.arrival-product__info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  min-width: 100px;
}
.arrival-product__info .btn {
  flex-shrink: 0;
  padding: 9px 18px;
  font-size: 0.82rem;
}

.arrivals-cta { text-align: center; }

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 40px 0;
}
.trust-bar__grid {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: space-between;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 200px; padding: 12px 20px;
}
.trust-item__icon { font-size: 2rem; flex-shrink: 0; }
.trust-item div   { display: flex; flex-direction: column; }
.trust-item strong { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.trust-item span   { font-size: 0.78rem; color: var(--muted); }

/* --- FINAL CTA --- */
.final-cta {
  padding: 120px 0; text-align: center;
  background: linear-gradient(135deg, #0e0b00 0%, #090909 50%, #0a0000 100%);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '⚽'; position: absolute; font-size: 50vw; opacity: 0.03;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 2; }
.final-cta__badge { display: inline-block; background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; padding: 5px 16px; border-radius: 100px; margin-bottom: 20px; }
.final-cta__title { font-family: var(--font-d); font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 3px; margin-bottom: 16px; }
.final-cta__sub   { color: var(--muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 40px; }
.final-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- FOOTER --- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 48px 0 28px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer__links  { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.88rem; color: var(--muted); transition: color var(--t); }
.footer__links a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 9px 20px; border-radius: 100px;
  font-size: 0.83rem; font-weight: 600;
  transition: border-color var(--t), color var(--t);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer__copy { font-size: 0.78rem; color: var(--muted); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .hoodies-banner__images { flex: 0 0 240px; }
  .hoodies-img--main     { width: 130px; height: 180px; }
  .hoodies-img--secondary{ width: 100px; height: 140px; }
}
@media (max-width: 640px) {
  .products-grid    { grid-template-columns: 1fr; }
  .arrivals-grid    { grid-template-columns: 1fr; }
  .hoodies-banner__inner { flex-direction: column; }
  .hoodies-banner__images { display: none; }
  .header__nav a:not(.nav__wa) { display: none; }
  .section-header   { flex-direction: column; align-items: flex-start; }
  .trust-bar__grid  { gap: 8px; }
  .trust-item       { min-width: 100%; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .hero__actions    { flex-direction: column; align-items: flex-start; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .hoodies-banner__actions { flex-direction: column; }
}
@media (max-width: 640px) {
  .products-grid    { grid-template-columns: 1fr; }
  .arrivals-grid    { grid-template-columns: 1fr; }
  .hoodies-banner__inner { flex-direction: column; }
  .hoodies-banner__images { display: none; }
  .header__nav a:not(.nav__wa) { display: none; }
  .section-header   { flex-direction: column; align-items: flex-start; }
  .trust-bar__grid  { gap: 8px; }
  .trust-item       { min-width: 100%; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .hero__actions    { flex-direction: column; align-items: flex-start; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .hoodies-banner__actions { flex-direction: column; }
}
