/* ============================================================
   BODY10trainers - CSS Optimizado (generado desde Tailwind CDN)
   Reemplaza: https://cdn.tailwindcss.com
   ============================================================ */

/* --- RESET & BASE --- */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: ui-sans-serif, system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: inherit; }
button { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; background: transparent; border: 0; cursor: pointer; }
img, svg, video { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
::selection { background-color: #39FF14; color: #000; }

/* --- CUSTOM PROPERTIES (colores del tema) --- */
:root {
  --color-primary: #39FF14;
  --color-accent: #00E5FF;
  --color-charcoal: #0F1115;
  --color-navy-deep: #0A0E1A;
}

/* --- TIPOGRAFÍA BASE --- */
body { font-family: "Inter", sans-serif; background-color: var(--color-charcoal); color: #d1d5db; }
h1, h2, h3, h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; }

/* --- COMPONENTES PERSONALIZADOS --- */
.text-neon { text-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }
.hero-clip { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background-color: var(--color-navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  z-index: 60;
}
.dropdown-item {
  display: block; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; color: #9ca3af;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.15s ease;
}
.dropdown-item:hover { color: var(--color-primary); background: rgba(255,255,255,0.05); }

/* --- LAYOUT --- */
.layout-container { display: flex; flex-direction: column; height: 100%; flex-grow: 1; }
.layout-content-container { display: flex; flex-direction: column; flex: 1; }

/* --- UTILIDADES GENERADAS --- */

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

/* Position */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* Inset */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-10 { right: 2.5rem; }
.right-\[-10\%\] { right: -10%; }
.bottom-\[-10\%\] { bottom: -10%; }
.left-0 { left: 0; }
.-top-4 { top: -1rem; }
.-top-10 { top: -2.5rem; }
.-bottom-4 { bottom: -1rem; }
.-bottom-20 { bottom: -5rem; }
.-left-4 { left: -1rem; }
.-left-20 { left: -5rem; }
.-right-4 { right: -1rem; }
.-right-10 { right: -2.5rem; }
.-z-0 { z-index: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }

/* Flex */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow, .grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Space */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Sizing */
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-px { height: 1px; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-\[500px\] { height: 500px; }
.min-h-screen { min-height: 100vh; }
.min-h-\[85vh\] { min-height: 85vh; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }
.w-\[500px\] { width: 500px; }
.min-w-\[120px\] { min-width: 120px; }
.min-w-\[220px\] { min-width: 220px; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-\[280px\] { max-width: 280px; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[850px\] { max-width: 850px; }
.max-w-\[1000px\] { max-width: 1000px; }
.max-w-\[1400px\] { max-width: 1400px; }
.size-8 { width: 2rem; height: 2rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-16 { width: 4rem; height: 4rem; }
.size-24 { width: 6rem; height: 6rem; }

/* Aspect ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }

/* Margin */
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-heading { font-family: "Oswald", sans-serif; }
.font-body { font-family: "Inter", sans-serif; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-\[15rem\] { font-size: 15rem; }
.text-\[20rem\] { font-size: 20rem; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[0\.9\] { line-height: 0.9; }
.whitespace-nowrap { white-space: nowrap; }
.break-all { word-break: break-all; }
.select-none { user-select: none; }

/* Colors - Text */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-primary\/5 { color: rgba(57, 255, 20, 0.05); }
.text-neon { text-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }

/* Colors - Background */
.bg-charcoal { background-color: var(--color-charcoal); }
.bg-navy-deep { background-color: var(--color-navy-deep); }
.bg-primary { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-accent); }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-gray-900 { background-color: #111827; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-transparent { background-color: transparent; }
.bg-charcoal\/95 { background-color: rgba(15,17,21,0.95); }
.bg-navy-deep\/98 { background-color: rgba(10,14,26,0.98); }
.bg-primary\/5 { background-color: rgba(57,255,20,0.05); }
.bg-primary\/10 { background-color: rgba(57,255,20,0.1); }
.bg-accent\/10 { background-color: rgba(0,229,255,0.1); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-navy-deep { --tw-gradient-from: var(--color-navy-deep); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-charcoal { --tw-gradient-to: var(--color-charcoal); }
.to-transparent { --tw-gradient-to: transparent; }
.via-navy-deep\/80 { --tw-gradient-stops: var(--tw-gradient-from), rgba(10,14,26,0.8), var(--tw-gradient-to, transparent); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* Border */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-t-4 { border-top-width: 4px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-\[40px\] { border-width: 40px; }
.border-dashed { border-style: dashed; }
.border-primary { border-color: var(--color-primary); }
.border-accent { border-color: var(--color-accent); }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-primary\/5 { border-color: rgba(57,255,20,0.05); }
.border-primary\/10 { border-color: rgba(57,255,20,0.1); }
.border-primary\/20 { border-color: rgba(57,255,20,0.2); }
.border-accent\/20 { border-color: rgba(0,229,255,0.2); }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-\[0_10px_30px_rgba\(57\,255\,20\,0\.15\)\] { box-shadow: 0 10px 30px rgba(57,255,20,0.15); }
.shadow-\[0_10px_30px_rgba\(0\,229\,255\,0\.15\)\] { box-shadow: 0 10px 30px rgba(0,229,255,0.15); }
.shadow-\[0_10px_40px_rgba\(57\,255\,20\,0\.2\)\] { box-shadow: 0 10px 40px rgba(57,255,20,0.2); }

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Pointer / cursor */
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

/* Transform & Transition */
.transform { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) skewX(var(--tw-skew-x,0)) skewY(var(--tw-skew-y,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-opacity { transition: opacity 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }
.origin-left { transform-origin: left; }
.scale-x-0 { transform: scaleX(0); }
.grayscale { filter: grayscale(100%); }

/* Backdrop */
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* --- HOVER STATES --- */
.hover\:text-primary:hover { color: var(--color-primary); }
.hover\:text-accent:hover { color: var(--color-accent); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-accent:hover { background-color: var(--color-accent); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:-translate-x-2:hover { transform: translateX(-0.5rem); }
.hover\:-skew-x-12:hover { transform: skewX(-12deg); }
.hover\:border-accent:hover { border-color: var(--color-accent); }
.hover\:border-accent\/20:hover { border-color: rgba(0,229,255,0.2); }
.hover\:border-accent\/30:hover { border-color: rgba(0,229,255,0.3); }
.hover\:border-primary\/20:hover { border-color: rgba(57,255,20,0.2); }
.hover\:border-primary\/30:hover { border-color: rgba(57,255,20,0.3); }
.hover\:shadow-\[0_0_30px_rgba\(57\,255\,20\,0\.4\)\]:hover { box-shadow: 0 0 30px rgba(57,255,20,0.4); }

/* --- GROUP HOVER --- */
.group:hover .group-hover\:text-primary { color: var(--color-primary); }
.group:hover .group-hover\:text-black { color: #000000; }
.group:hover .group-hover\:bg-primary { background-color: var(--color-primary); }
.group:hover .group-hover\:bg-accent { background-color: var(--color-accent); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:scale-x-100 { transform: scaleX(1); }
.group:hover .group-hover\:rotate-180 { transform: rotate(180deg); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0); }

/* --- RESPONSIVE --- */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:items-end { align-items: flex-end; }
  .md\:aspect-square { aspect-ratio: 1 / 1; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
  .md\:translate-x-\[-20px\] { transform: translateX(-20px); }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}
