/* ===== ADMIN BAR FIX ===== */
body.admin-bar .navbar { top: 32px; }
body.admin-bar .hero { padding-top: calc(var(--nav-h) + 32px); }
@media (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
  body.admin-bar .hero { padding-top: calc(var(--nav-h) + 46px); }
  body.admin-bar .nav-links.open { top: calc(var(--nav-h) + 46px); }
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress,
#cc-scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--green));
  z-index: 99999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}



/* ===== VARIABLES ===== */
:root {
  --orange:      #F36B12;
  --orange-dark: #C85400;
  --orange-light:#ff8c3a;
  --green:       #00C244;
  --green-dark:  #009933;
  --black:       #000000;
  --black-soft:  #0d0d0d;
  --black-mid:   #1a1a1a;
  --red:         #FF3131;
  --white:       #ffffff;
  --gray-light:  #f5f5f5;
  --gray-mid:    #e0e0e0;
  --text-dark:   #111111;
  --text-mid:    #555555;
  /* kept only for compatibility */
  --light-blue:  #38B6FF;
  --dark-blue:   #004AAD;
  --purple:      #5271FF;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover:0 16px 48px rgba(0,0,0,0.20);
  --shadow-dark: 0 16px 48px rgba(0,0,0,0.50);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:   1200px;
  --nav-h:       70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'League Spartan', sans-serif;
  color: #111111;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.highlight { color: var(--orange); }
.text-orange { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'League Spartan', sans-serif;
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(243,107,18,0.45);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(243,107,18,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
/* Botón verde — para descargas y acciones secundarias */
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,194,68,0.35);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,68,0.45);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(243,107,18,0.12);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  background: rgba(0,0,0,1);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  height: 50px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-care { color: #ffffff; }
.logo-caca { color: var(--orange); }
.logo-emoji { font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,0.1); color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px;
  box-shadow: 0 2px 12px rgba(243,107,18,0.4);
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(243,107,18,0.5) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.carecaca-home .hero,
.hero {
  min-height: 100vh !important;
  background: linear-gradient(150deg, #000000 0%, #111111 55%, #1a0800 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding-top: var(--nav-h) !important;
  /* Asegura que Divi no inyecte fondos azules */
  background-color: #000000 !important;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
  animation: float-shape 12s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--orange-dark);
  bottom: -150px; left: -100px;
  animation: float-shape 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--red);
  top: 50%; left: 40%;
  animation: float-shape 10s ease-in-out infinite 3s;
}
@keyframes float-shape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-pretitle {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.2s;
}
.hero-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.4s;
}
.title-emoji { font-size: 0.75em; display: inline; }
.title-care { color: var(--white); }
.title-caca { color: var(--orange); }
.title-emoji { font-size: 0.8em; }
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.6s;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.7s;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
/* Tercer badge (156 cartas) en verde */
.hero-badges .badge:nth-child(3) {
  background: rgba(0,194,68,0.15);
  border-color: rgba(0,194,68,0.4);
  color: #6effa0;
}
.badge-icon { font-size: 1rem; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.85s;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== HERO CARD STACK — 5 cartas en abanico ===== */
.hero-cards {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-in 1s ease forwards 0.5s;
  flex-shrink: 0;
}

/* Halo naranja detrás del mazo */
.hero-cards-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(243,107,18,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Contenedor abanico */
.hero-hand-fan {
  position: relative;
  width: 320px;
  height: 420px;
}

/* Base común para todas las cartas del abanico */
.floating-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  transform-origin: bottom center;
  transition: box-shadow 0.3s ease;
}
.floating-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Carta 1 — extremo izquierdo */
.hc-1 {
  width: 120px;
  bottom: 0;
  left: 0px;
  z-index: 1;
  filter: brightness(0.55);
  animation: hc1-float 6s ease-in-out infinite;
}
@keyframes hc1-float {
  0%,100% { transform: rotate(-28deg) translateY(0); filter: brightness(0.55); }
  50%      { transform: rotate(-28deg) translateY(-12px); filter: brightness(0.65); }
}

/* Carta 2 — izquierda media */
.hc-2 {
  width: 140px;
  bottom: 0;
  left: 55px;
  z-index: 2;
  filter: brightness(0.72);
  animation: hc2-float 5.5s ease-in-out infinite 0.6s;
}
@keyframes hc2-float {
  0%,100% { transform: rotate(-13deg) translateY(0); filter: brightness(0.72); }
  50%      { transform: rotate(-13deg) translateY(-14px); filter: brightness(0.82); }
}

/* Carta 3 — centro, la principal */
.hc-3 {
  width: 175px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 3px rgba(243,107,18,0.4);
  animation: hc3-float 4.5s ease-in-out infinite;
}
@keyframes hc3-float {
  0%,100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-20px) rotate(0deg); }
}

/* Carta 4 — derecha media */
.hc-4 {
  width: 140px;
  bottom: 0;
  right: 55px;
  z-index: 2;
  filter: brightness(0.72);
  animation: hc4-float 5.5s ease-in-out infinite 1s;
}
@keyframes hc4-float {
  0%,100% { transform: rotate(13deg) translateY(0); filter: brightness(0.72); }
  50%      { transform: rotate(13deg) translateY(-14px); filter: brightness(0.82); }
}

/* Carta 5 — extremo derecho */
.hc-5 {
  width: 120px;
  bottom: 0;
  right: 0px;
  z-index: 1;
  filter: brightness(0.55);
  animation: hc5-float 6s ease-in-out infinite 1.5s;
}
@keyframes hc5-float {
  0%,100% { transform: rotate(28deg) translateY(0); filter: brightness(0.55); }
  50%      { transform: rotate(28deg) translateY(-12px); filter: brightness(0.65); }
}

/* Etiqueta flotante debajo del abanico */
.hero-cards-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(243,107,18,0.45);
  z-index: 10;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 1;
  animation: fade-in 1s ease forwards 1.5s;
  opacity: 0;
}
.scroll-arrow {
  font-size: 1.4rem;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== JUEGO SECTION ===== */
.juego-section { background: var(--white); }
.juego-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.juego-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
.juego-desc:last-of-type { margin-bottom: 32px; }

/* Card Fan */
.juego-visual { display: flex; justify-content: center; }
.card-fan {
  position: relative;
  width: 260px;
  height: 380px;
}
.fan-card {
  position: absolute;
  width: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
  transform-origin: bottom center;
}
.fan-card:hover { z-index: 10; transform: translateY(-20px) scale(1.08) rotate(0deg) !important; }
.fan-1 { transform: rotate(-20deg) translateX(-60px); top: 30px; left: 0; }
.fan-2 { transform: rotate(-10deg) translateX(-20px); top: 10px; left: 20px; }
.fan-3 { transform: rotate(0deg); top: 0; left: 50px; z-index: 5; }
.fan-4 { transform: rotate(10deg) translateX(20px); top: 10px; left: 70px; }
.fan-5 { transform: rotate(20deg) translateX(60px); top: 30px; left: 90px; }

/* ===== VIDEO SECTION ===== */
.video-preview-section { background: var(--gray-light); }
.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== CONTENIDO SECTION ===== */
.contenido-section { background: var(--white); }

.contenido-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.stat-card {
  background: linear-gradient(135deg, #111111, #222222);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.stat-number {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 8px;
}
.stat-icon { font-size: 1.4rem; }

/* Tabs */
.showcase-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--gray-light);
  transition: var(--transition);
  border: 2px solid transparent;
}
.tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.tab-btn.active { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(243,107,18,0.35); }

.tab-content { display: none !important; }
.tab-content.active { display: block !important; animation: fade-in 0.4s ease; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 20px;
}
.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.card-item img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
  aspect-ratio: 2/3;
  object-fit: cover;
}
.card-item:hover img {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.card-item span {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
}

/* ===== COMO SECTION ===== */
.como-section { background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%); }
.como-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}
/* Video dentro del grid: forzar aspect-ratio 16:9 propio */
.como-grid .video-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-bottom: 56.25% !important;   /* 16:9 */
  height: 0 !important;
  overflow: hidden !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18) !important;
  background: #000 !important;
}
.como-grid .video-wrapper iframe {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}
.instrucciones-card {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%) !important;
  color: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  padding: 40px 32px !important;
  text-align: center !important;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  border-top: 4px solid var(--orange) !important;
  border-bottom: 4px solid var(--green) !important;
  position: relative;
  overflow: hidden;
}
.instrucciones-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(243,107,18,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.instrucciones-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(243,107,18,0.3));
}
.instrucciones-card h3 {
  font-family: 'League Spartan', sans-serif !important;
  font-size: 1.6rem !important;
  margin-bottom: 12px !important;
  color: var(--white) !important;
}
.instrucciones-card p {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 24px !important;
  line-height: 1.7 !important;
}
.instrucciones-card .btn-outline {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5) !important;
  border-width: 2px !important;
}
.instrucciones-card .btn-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}

/* Reglas */
.reglas-rapidas { margin-top: 20px; }
.reglas-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.reglas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.regla-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.regla-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.regla-num {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1;
}
.regla-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }

/* ===== COMPRAR SECTION ===== */
.comprar-section {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 60%, #0a1500 100%);
  color: var(--white);
}
.comprar-section .section-tag { background: rgba(243,107,18,0.2); }
.comprar-section .section-title { color: var(--white); }
.comprar-section .section-subtitle { color: rgba(255,255,255,0.7); }

.shop-wrapper { display: flex; justify-content: center; }
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.product-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(243,107,18,0.5);
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 320px;
}
.product-cards-display { position: relative; width: 220px; height: 300px; }
.prod-card {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.prod-card-back {
  width: 160px;
  top: 0; left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}
.prod-card-front {
  width: 160px;
  top: 20px; left: 40px;
  transform: rotate(0deg);
  z-index: 3;
  animation: product-float 4s ease-in-out infinite;
}
.prod-card-side {
  width: 140px;
  top: 40px; left: 80px;
  transform: rotate(8deg);
  z-index: 2;
}
@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.product-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.product-includes li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.product-price {
  margin-bottom: 20px;
}
.price-amount {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.price-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.quantity-selector label {
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}
.qty-btn:hover { background: rgba(255,255,255,0.15); }
.qty-value {
  min-width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.btn-mercadopago {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(90deg, #009ee3, #0077cc);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,158,227,0.4);
  margin-bottom: 10px;
}
.btn-mercadopago:hover {
  background: linear-gradient(90deg, #0077cc, #005aa3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,158,227,0.5);
}

.payment-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.shipping-info { margin-top: 4px; }
.shipping-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(243,107,18,0.12);
  border: 1px solid rgba(243,107,18,0.3);
  border-radius: 12px;
  padding: 14px 18px;
}
.shipping-badge span { font-size: 1.5rem; }
.shipping-badge strong { display: block; color: var(--orange); font-size: 0.9rem; }
.shipping-badge small { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ===== NOSOTROS SECTION ===== */
.nosotros-section { background: var(--gray-light); }
.nosotros-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.nosotros-intro p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.8;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--orange);
}
.team-avatar { margin-bottom: 20px; }
.avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto;
}
.avatar-jose { background: linear-gradient(135deg, #111111, #333333); }
.avatar-vale { background: linear-gradient(135deg, var(--orange), var(--red)); }
.team-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.team-role {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.team-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 4px;
  text-align: left;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 4px 4px 4px 0;
}
.faq-answer p + p { margin-top: 8px; }

/* ===== CONTACTO SECTION ===== */
.contacto-section { background: var(--gray-light); }
.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.92rem; color: var(--text-mid); }

/* Form */
.contacto-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-success {
  display: none;
  background: rgba(0,200,100,0.12);
  border: 1.5px solid rgba(0,200,100,0.4);
  color: #006633;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 700;
  text-align: center;
}
.form-success.show { display: block; animation: fade-in 0.4s ease; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-team { font-size: 0.85rem !important; color: rgba(255,255,255,0.4) !important; }
.footer-links h4 {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-badges { display: flex; flex-direction: column; gap: 10px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-mid);
  line-height: 1;
}
.modal-close:hover { color: var(--orange); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.modal p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contenido-stats { grid-template-columns: repeat(3, 1fr); }
  .reglas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 20px 16px 28px;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid rgba(243,107,18,0.4);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.9);
    border-radius: 10px;
  }
  .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--orange); }
  .nav-cta { margin-top: 8px; }

  /* Hero — una columna, cards abajo del texto */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 50px 16px 60px;
    text-align: center;
  }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  /* Hero cards 5-card fan — escala reducida en mobile */
  .hero-cards {
    height: 260px;
    order: -1;
  }
  .hero-cards-glow { width: 200px; height: 200px; }
  .hero-hand-fan { width: 240px; height: 280px; }
  .hc-1 { width: 80px; left: 5px; }
  .hc-2 { width: 95px; left: 40px; }
  .hc-3 { width: 115px; }
  .hc-4 { width: 95px; right: 40px; }
  .hc-5 { width: 80px; right: 5px; }
  .hero-cards-label { font-size: 0.78rem; padding: 5px 16px; bottom: -14px; }

  /* Sections */
  .juego-grid { grid-template-columns: 1fr; gap: 40px; }
  .juego-visual { order: -1; }
  .card-fan { width: 200px; height: 280px; }
  .fan-card { width: 120px; }

  .contenido-stats { grid-template-columns: repeat(2, 1fr); }
  .contenido-stats .stat-card:last-child { grid-column: 1/-1; }

  .como-grid { grid-template-columns: 1fr; }
  .reglas-grid { grid-template-columns: 1fr 1fr; }

  .product-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .product-image { height: 220px; }

  .team-grid { grid-template-columns: 1fr; max-width: 380px; }

  .contacto-wrapper { grid-template-columns: 1fr; }
  .contacto-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Cards grid mobile — carrusel horizontal (sin scroll infinito vertical) */
  .cards-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 8px 4px 16px !important;
    max-height: none !important;
  }
  .cards-grid .card-item {
    flex: 0 0 120px !important;
    scroll-snap-align: start;
    max-width: 120px;
  }
  .cards-grid .card-item img {
    width: 120px !important;
    height: 180px !important;
  }
  /* Scrollbar naranja horizontal */
  .cards-grid::-webkit-scrollbar { height: 4px; }
  .cards-grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 4px; }
  .cards-grid::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

  /* Prevent overflow */
  .btn, .btn-lg, .btn-primary, .btn-outline, .btn-mercadopago, .sticky-cta-btn {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }
  .product-card {
    overflow: hidden;
    max-width: 100vw;
  }
  .product-info {
    overflow: hidden;
    word-break: break-word;
  }
  .trust-badges {
    flex-direction: column;
  }
  .product-social-proof {
    flex-direction: column;
    gap: 6px;
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-social-proof {
    justify-content: center;
    flex-wrap: wrap;
  }
  .container {
    overflow-x: hidden;
  }
  .shipping-badge {
    flex-wrap: wrap;
  }
  .regla-card p {
    font-size: 0.88rem;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 2.2rem;
  }

  /* Sticky CTA mobile - mostrar */
  .sticky-cta-mobile { display: flex !important; }
  body.carecaca-home { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .contenido-stats { grid-template-columns: 1fr 1fr; }
  .reglas-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; flex-wrap: wrap; justify-content: center; }
  /* cards-grid hereda el carrusel horizontal del breakpoint 768px */
  .cards-grid .card-item { flex: 0 0 100px !important; max-width: 100px; }
  .cards-grid .card-item img { width: 100px !important; height: 150px !important; }
  .hero-social-proof { flex-direction: column; gap: 4px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .trust-badges { flex-direction: column; }
  .product-card { padding: 24px 16px !important; }
  .product-name { font-size: 1.5rem; }
  .price-amount { font-size: 2rem; }
  .btn-mercadopago { font-size: 0.9rem; padding: 14px; }
  .product-includes li { font-size: 0.82rem; }
  .instrucciones-card { padding: 28px 20px; min-height: auto; }
  .instrucciones-card h3 { font-size: 1.3rem; }
  /* Hero cards 5-fan — más compacto en xs */
  .hero-cards { height: 220px; }
  .hero-hand-fan { width: 200px; height: 240px; }
  .hc-1 { width: 68px; left: 0; }
  .hc-2 { width: 80px; left: 30px; }
  .hc-3 { width: 98px; }
  .hc-4 { width: 80px; right: 30px; }
  .hc-5 { width: 68px; right: 0; }
  /* Contenedor: evitar scroll horizontal */
  section, .container, .hero-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

/* =============================================================
   UX HEATMAP: SOCIAL PROOF EN HERO
   ============================================================= */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.75s;
}
.hero-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}
.hero-reviews-text {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =============================================================
   UX HEATMAP: CTA BANNER INTERMEDIO (post-engagement zone)
   ============================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e55500 100%);
  padding: 0;
}
.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner-tag {
  display: block;
  color: rgba(255,255,255,0.95);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cta-banner-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.cta-banner .btn-primary {
  background: var(--white) !important;
  color: var(--orange) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
  flex-shrink: 0;
}
.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.05) !important;
}

/* =============================================================
   UX HEATMAP: URGENCIA EN PRODUCTO (decision zone)
   ============================================================= */
.product-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #ff4444;
  font-weight: 800;
  font-size: 0.88rem;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: urgency-blink 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes urgency-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

/* Social proof en zona de compra */
.product-social-proof {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.proof-stars { flex-shrink: 0; font-size: 0.85rem; }
.product-social-proof span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.product-social-proof em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

/* Trust badges (reduce friccion) */
.trust-badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.trust-item {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* =============================================================
   UX HEATMAP: BOTON PULSANTE (CTA principal)
   ============================================================= */
.btn-pulse {
  position: relative;
  overflow: visible;
}
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* =============================================================
   UX HEATMAP: STICKY CTA MOBILE (thumb zone)
   ============================================================= */
.sticky-cta-mobile {
  display: none; /* se muestra solo en mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  animation: slide-up-sticky 0.5s ease forwards 2s;
}
@keyframes slide-up-sticky {
  to { transform: translateY(0); }
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta-price {
  display: flex;
  flex-direction: column;
}
.sticky-price {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  line-height: 1;
}
.sticky-cta-price small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(243,107,18,0.5);
  transition: all 0.2s ease;
}
.sticky-cta-btn:hover,
.sticky-cta-btn:active {
  background: #d4560a;
  transform: scale(1.05);
}

/* =============================================================
   BRAND "CARE CACA" — League Spartan + MAYÚSCULAS
   ============================================================= */
.cc-brand,
.title-care, .title-caca,
.logo-care, .logo-caca,
.hero-title,
.product-name,
.nav-logo-text,
.footer-logo span,
.sticky-cta-btn,
.hero-pretitle {
  font-family: 'League Spartan', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em;
}
.cc-brand { font-weight: 900; }

/* =============================================================
   TIENDA ONLINE — estático (sin animación)
   ============================================================= */
.tienda-static .prod-card,
.tienda-static .prod-card-front,
.comprar-section .prod-card,
.comprar-section .prod-card-front,
.comprar-section .btn-pulse,
.comprar-section .urgency-dot {
  animation: none !important;
}

/* Mensaje de confianza MercadoLibre */
.trust-ml {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,232,0,0.08), rgba(0,168,225,0.08));
  border: 1px solid rgba(255,232,0,0.25);
  border-left: 3px solid #FFE600;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  line-height: 1.5;
}
.trust-ml-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.trust-ml p { margin: 0; color: inherit; }
.trust-ml strong { color: #fff; font-weight: 800; }
.trust-ml a {
  color: #FFE600;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255,230,0,0.5);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.trust-ml a:hover { color: #fff; }

/* =============================================================
   TIENDAS DISTRIBUIDORAS (reemplaza bloque Ubicación)
   ============================================================= */
.contact-item-distribuidoras { align-items: flex-start; }
.distribuidoras-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.distribuidoras-list li { margin: 0; }
.distribuidoras-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(243,107,18,0.08);
  border: 1.5px solid rgba(243,107,18,0.3);
  color: var(--orange, #F36B12);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'League Spartan', sans-serif;
}
.distribuidoras-list a:hover {
  background: var(--orange, #F36B12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243,107,18,0.35);
}

/* =============================================================
   MODAL: poder de la carta (click en tarjeta)
   ============================================================= */
.cc-poder-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10000;
}
.cc-poder-overlay.open { opacity: 1; visibility: visible; }
.cc-poder-dialog {
  position: relative;
  background: linear-gradient(160deg, #111 0%, #1a0800 100%);
  border: 1px solid rgba(243,107,18,0.3);
  border-radius: 20px;
  padding: 32px 28px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(243,107,18,0.3), 0 0 0 1px rgba(255,255,255,0.04);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'League Spartan', sans-serif;
  color: #fff;
}
.cc-poder-overlay.open .cc-poder-dialog { transform: scale(1); }
.cc-poder-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.2s;
}
.cc-poder-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cc-poder-card {
  width: 140px;
  height: 200px;
  margin: 0 auto 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 2px rgba(243,107,18,0.4);
  background: #000;
}
.cc-poder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-poder-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  color: #F36B12;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.cc-poder-text {
  font-family: 'League Spartan', sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.card-item {
  cursor: pointer;
  outline: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(243,107,18,0.7);
  border-radius: 10px;
}
.card-item:active { transform: scale(0.96); }

/* =============================================================
   RESPONSIVE: MEJORAS MOBILE
   ============================================================= */
@media (max-width: 768px) {
  /* Trust MercadoLibre — ajuste mobile */
  .trust-ml {
    font-size: 0.82rem;
    padding: 12px 14px;
    gap: 10px;
  }
  .trust-ml-icon { font-size: 1.2rem; }

  /* Distribuidoras — tipografía cómoda */
  .distribuidoras-list a { font-size: 0.88rem; padding: 9px 14px; }

  /* Modal poder */
  .cc-poder-dialog { padding: 26px 20px 22px; max-width: 320px; }
  .cc-poder-card { width: 120px; height: 170px; }
  .cc-poder-title { font-size: 1.35rem; }
  .cc-poder-text { font-size: 0.92rem; }

  /* Mensajes CTA intermedios: stack + menor padding */
  .cta-banner-inner { padding: 24px 16px; gap: 14px; }
  .cta-banner-tag { font-size: 1rem; }
  .cta-banner-desc { font-size: 0.85rem; }

  /* Hero — evita que el título se desborde */
  .hero-title { font-size: 3.4rem; line-height: 1; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-pretitle { font-size: 0.78rem; }

  /* Product card: evitar overflow por margen interno */
  .product-card { padding: 28px 18px; }
  .product-name { font-size: 1.7rem; }
  .product-includes li { font-size: 0.88rem; }

  /* Reglas rápidas: texto completo sin cortar */
  .regla-card { padding: 18px 16px; }
  .regla-card p { font-size: 0.88rem; line-height: 1.55; }

  /* FAQ: mejor tap target */
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }

  /* Footer: centrar y dar aire */
  .footer { padding: 50px 0 24px; }
  .footer-grid { text-align: center; }
  .footer-badges { justify-content: center; }

  /* Contact items: layout vertical legible */
  .contact-item { align-items: flex-start; }
  .contact-item > div:last-child { min-width: 0; word-break: break-word; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .hero-pretitle { font-size: 0.72rem; letter-spacing: 0.08em; }
  .section-title { font-size: 1.7rem; }
  .section-tag { font-size: 0.72rem; }

  /* Modal — ocupar pantalla casi completa */
  .cc-poder-dialog { max-width: 100%; padding: 24px 18px 20px; }
  .cc-poder-card { width: 110px; height: 155px; }
  .cc-poder-title { font-size: 1.2rem; }

  /* Distribuidoras — botones a ancho completo */
  .distribuidoras-list { align-items: stretch; }
  .distribuidoras-list a { justify-content: center; }

  /* Trust ML */
  .trust-ml { flex-direction: column; gap: 8px; text-align: center; border-left: none; border-top: 3px solid #FFE600; border-radius: 10px; }

  /* Product display centrado */
  .product-cards-display { margin: 0 auto; }

  /* Reduce padding lateral general */
  .container { padding-left: 14px; padding-right: 14px; }

  /* Sticky CTA mobile — compacto */
  .sticky-cta-inner { padding: 10px 14px; gap: 10px; }
  .sticky-price { font-size: 1rem; }
  .sticky-cta-btn { font-size: 0.88rem; padding: 12px 18px; }
}

/* Reduce motion: respeta preferencias del usuario */
@media (prefers-reduced-motion: reduce) {
  .prod-card-front,
  .btn-pulse,
  .urgency-dot,
  .floating-card,
  .shape,
  .hero-cards-glow { animation: none !important; }
  .cc-poder-dialog { transition: none !important; }
  .card-flip-front, .card-flip-back { transition: none !important; }
}

/* =============================================================
   CARD FLIP ANIMATION 3D — reemplaza el popup modal
   ============================================================= */

/* Hint global de sección */
.cards-flip-hint {
  text-align: center;
  margin-bottom: 18px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  animation: flip-hint-blink 2.5s ease-in-out infinite;
}
@keyframes flip-hint-blink {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(243,107,18,0.35); }
}

/* Contenedor flip — grid para apilar frente y dorso */
/* NOTA: NO usamos transform-style:preserve-3d porque card-pop animation crea
   un stacking context que lo bloquea. Usamos opacity+rotateY en cada cara. */
.card-flip-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

/* Frente y dorso en la misma celda del grid */
.card-flip-front,
.card-flip-back {
  grid-column: 1;
  grid-row: 1;
}
.card-flip-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 0.15s ease-in, transform 0.15s ease-in;
  pointer-events: auto;
}
/* Estado volteado — cara frontal se encoge y desaparece */
.card-item.flipped .card-flip-front {
  opacity: 0;
  transform: scaleX(0);
  pointer-events: none;
}
/* Estado volteado — cara trasera aparece con delay */
.card-item.flipped .card-flip-back {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: auto;
  transition: opacity 0.15s ease-out 0.14s, transform 0.15s ease-out 0.14s;
}
.card-flip-back {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.15s ease-in, transform 0.15s ease-in;
  pointer-events: none;
  border-radius: 12px;
  background: linear-gradient(160deg, #1e1e1e 0%, #1a0800 100%);
  border: 2px solid var(--orange);
  box-shadow: 0 8px 28px rgba(243,107,18,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  text-align: center;
  overflow: hidden;
}
.card-back-emoji {
  font-size: 1.5rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px rgba(243,107,18,0.5));
}
.card-back-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.card-back-text {
  font-family: 'League Spartan', sans-serif;
  color: rgba(255,255,255,0.92);
  font-size: 0.7rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Hint individual por carta */
.card-hint {
  margin-top: 4px;
  font-size: 0.63rem;
  font-weight: 700;
  color: rgba(243,107,18,0.75);
  text-align: center;
  letter-spacing: 0.02em;
  animation: hint-pulse 2.2s ease-in-out infinite;
  transition: color 0.3s;
}
.card-item.flipped .card-hint { color: rgba(255,255,255,0.45); }
@keyframes hint-pulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

/* Hover suave en desktop (solo cuando no está volteada) */
@media (hover: hover) {
  .card-item:not(.flipped):hover {
    transform: translateY(-5px) scale(1.03) !important;
  }
}

/* Anular el transform de hover img original — el efecto va en el inner */
.card-item:hover img { transform: none !important; }
.card-item:not(.flipped):hover img {
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* =============================================================
   FIX: REGLA CARD — número no se desborda
   ============================================================= */
.regla-card { overflow: hidden; }
.regla-num {
  display: inline-block !important;
  transform-origin: left center !important;
  max-width: 100%;
}
.regla-card:hover .regla-num,
.regla-card:focus-within .regla-num {
  transform: scale(1.1) !important;
}
/* En mobile: desactivar el scale para evitar cortes */
@media (max-width: 768px) {
  .regla-card:hover .regla-num,
  .regla-card:focus-within .regla-num { transform: none !important; }
  .regla-card { overflow: visible; }
  .regla-num { font-size: 2.2rem; }
}

/* =============================================================
   FIX: CARTAS — click funcional en mobile
   ============================================================= */
.card-item {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(243,107,18,0.25);
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.2s ease;
}
@media (hover: none), (max-width: 768px) {
  .card-item img { pointer-events: none; }
}

/* =============================================================
   FIX: SAFE MARGINS EN MOBILE (respeta notch + lados)
   ============================================================= */
:root {
  --cc-safe-pad: 16px;
}
@supports (padding: env(safe-area-inset-left)) {
  :root {
    --cc-safe-pad: max(16px, env(safe-area-inset-left));
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: var(--cc-safe-pad) !important;
    padding-right: var(--cc-safe-pad) !important;
    max-width: 100% !important;
  }
  .section { padding-left: 0; padding-right: 0; }
  body.carecaca-home,
  body {
    overflow-x: hidden;
  }
  /* Instrucciones card — botón completo */
  .instrucciones-card {
    padding: 26px 18px !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .instrucciones-card .btn,
  .instrucciones-card .btn-outline {
    display: inline-block;
    max-width: 100%;
    padding: 14px 22px;
    font-size: 0.9rem;
    white-space: normal;
    word-break: break-word;
  }
  /* CTA banner intermedio */
  .cta-banner,
  .cta-banner-inner { box-sizing: border-box; max-width: 100%; }

  /* Product-card y urgency evitan desbordes */
  .product-card { box-sizing: border-box; max-width: 100%; }
  .product-urgency { flex-wrap: wrap; }

  /* Sticky CTA — siempre sobre contenido */
  .sticky-cta-mobile { z-index: 9500; }
  /* Padding inferior para no tapar contenido por sticky CTA */
  body.carecaca-home { padding-bottom: 92px !important; }
}

@media (max-width: 480px) {
  :root { --cc-safe-pad: 14px; }
  .instrucciones-card h3 { font-size: 1.15rem; }
  .instrucciones-card .btn-outline { width: 100%; text-align: center; }
  /* Evita que elementos internos desborden */
  .hero-title, .section-title, .product-name { word-break: break-word; }
}
