/* MAMBA BFC — Design System v1 (2026) · tokens + componentes para Elementor */
:root {
  --mamba-black: #080808; --mamba-ink: #111111; --mamba-panel: #171717; --mamba-panel-2: #202020;
  --mamba-red: #C10B32; --mamba-red-active: #EF1748; --mamba-wine: #720018;
  --mamba-paper: #F2EFE8; --mamba-sand: #D8CFBF; --mamba-white: #FFFFFF; --mamba-muted: #A6A6A6;
  --mamba-border: rgba(255,255,255,.10); --mamba-border-strong: rgba(255,255,255,.18);
  --mamba-border-red: rgba(193,11,50,.55); --mamba-border-paper: rgba(8,8,8,.14);
  --mamba-hover: rgba(255,255,255,.06); --mamba-focus: #EF1748;
  --mamba-success: #2E9E5B; --mamba-error: #E23A3A; --mamba-warning: #E0A22E;
  --mamba-disabled: #4A4A4A; --mamba-disabled-text: #7A7A7A;
  --overlay-photo: linear-gradient(180deg, rgba(8,8,8,.15) 0%, rgba(8,8,8,.78) 100%);
  --overlay-photo-strong: linear-gradient(180deg, rgba(8,8,8,.45) 0%, rgba(8,8,8,.92) 100%);
  --overlay-red: linear-gradient(160deg, rgba(114,0,24,.55) 0%, rgba(8,8,8,.85) 100%);
  --overlay-side: linear-gradient(90deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.35) 60%, rgba(8,8,8,.15) 100%);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fs-hero: clamp(58px, 9.6vw, 138px); --fs-h2: clamp(46px, 7vw, 96px);
  --fs-h3: clamp(30px, 4vw, 54px); --fs-h4: clamp(24px, 2.6vw, 34px);
  --fs-body: 16px; --fs-small: 14px; --fs-eyebrow: 12px;
  --container: 1380px; --pad-x: 16px; --section-gap: 72px;
  --radius-card: 20px; --radius-panel: 28px; --radius-pill: 999px;
  --ease-fast: 160ms cubic-bezier(.2,.7,.3,1); --ease-med: 260ms cubic-bezier(.2,.7,.3,1);
  --header-h: 66px;
}
@media (min-width: 768px) { :root { --pad-x: 24px; --section-gap: 110px; --header-h: 78px; } }

html { scroll-padding-top: calc(var(--header-h) + 44px); }
body { -webkit-font-smoothing: antialiased; }
:focus-visible { outline: 3px solid var(--mamba-focus); outline-offset: 3px; border-radius: 4px; }

/* Tipografía utilitaria */
.display { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: .005em; }
.display--hero { font-size: var(--fs-hero); font-weight: 900; }
.display--h2 { font-size: var(--fs-h2); }
.display--h3 { font-size: var(--fs-h3); }
.display--h4 { font-size: var(--fs-h4); font-weight: 700; }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--mamba-white); }
.outline--red { -webkit-text-stroke: 1.5px var(--mamba-red-active); }
@supports not (-webkit-text-stroke: 1px black) { .outline { color: var(--mamba-muted); } .outline--red { color: var(--mamba-red-active); } }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; color: var(--mamba-muted); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 14px; height: 14px; background: var(--mamba-red); clip-path: polygon(0 0, 50% 38%, 100% 0, 100% 34%, 50% 72%, 0 34%); flex: none; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--dark { color: rgba(8,8,8,.6); }
.lead { font-size: 18px; color: var(--mamba-muted); max-width: 60ch; }
.text-red { color: var(--mamba-red-active); }

/* Botones */
.btn, .btn .elementor-button { border-radius: var(--radius-pill); }
.btn { display: inline-flex; }
.btn .elementor-button, a.btn, button.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 28px; border: 1px solid transparent; font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast), transform var(--ease-fast); }
.btn-primary .elementor-button, a.btn-primary, button.btn-primary { background: var(--mamba-red); color: var(--mamba-white); }
.btn-primary .elementor-button:hover, a.btn-primary:hover, button.btn-primary:hover { background: var(--mamba-red-active); color: var(--mamba-white); }
.btn-secondary .elementor-button, a.btn-secondary { background: transparent; color: var(--mamba-white); border-color: var(--mamba-border-strong); }
.btn-secondary .elementor-button:hover, a.btn-secondary:hover { border-color: var(--mamba-white); background: var(--mamba-hover); color: var(--mamba-white); }
.btn-ghost .elementor-button, a.btn-ghost { background: transparent; color: var(--mamba-white); padding-inline: 14px; }
.btn-ghost .elementor-button:hover, a.btn-ghost:hover { color: var(--mamba-red-active); background: transparent; }
.btn-light .elementor-button, a.btn-light { background: var(--mamba-white); color: var(--mamba-black); }
.btn-light .elementor-button:hover, a.btn-light:hover { background: var(--mamba-paper); color: var(--mamba-black); }
.btn-dark .elementor-button, a.btn-dark { background: var(--mamba-black); color: var(--mamba-white); }
.btn-dark .elementor-button:hover, a.btn-dark:hover { background: var(--mamba-ink); color: var(--mamba-white); }
.btn-whatsapp .elementor-button, a.btn-whatsapp { background: transparent; border-color: var(--mamba-border-strong); color: var(--mamba-white); }
.btn-whatsapp .elementor-button:hover, a.btn-whatsapp:hover { border-color: #2E9E5B; color: #7BE0A5; }
.btn--lg .elementor-button, a.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 16px; }

/* Offer bar */
.offer-bar { background: var(--mamba-red); color: var(--mamba-white); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-align: center; padding: 10px var(--pad-x); }
.offer-bar a { color: var(--mamba-white); text-underline-offset: 3px; }

/* Header */
.site-header { background: rgba(8,8,8,.82) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--mamba-border); }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.brand-word span { color: var(--mamba-red-active); }
.cart-link { position: relative; }
.cart-count { position: absolute; top: 0; right: -4px; min-width: 17px; height: 17px; padding-inline: 4px; border-radius: var(--radius-pill); background: var(--mamba-red); color: var(--mamba-white); font-size: 10.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Cinta de marca */
.hero-strip { border-block: 1px solid var(--mamba-border); background: var(--mamba-ink); overflow: hidden; padding-block: 14px; }
.hero-strip .strip-track { display: flex; gap: 56px; width: max-content; animation: strip-scroll 32s linear infinite; }
.hero-strip span { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--mamba-muted); display: inline-flex; align-items: center; gap: 56px; }
.hero-strip span::after { content: ""; width: 12px; height: 12px; background: var(--mamba-red); clip-path: polygon(0 0, 50% 38%, 100% 0, 100% 34%, 50% 72%, 0 34%); }
@keyframes strip-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-strip .strip-track { animation: none; } }

/* Hero */
.hero-badge { display: inline-flex; align-items: baseline; gap: 8px; border: 1px solid var(--mamba-border-strong); border-radius: var(--radius-pill); padding: 8px 18px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mamba-paper); background: rgba(8,8,8,.5); }
.hero-badge strong { font-family: var(--font-display); font-size: 20px; color: var(--mamba-red-active); letter-spacing: .02em; }
.hero-mark { opacity: .16; pointer-events: none; }

/* Selector por objetivo */
.goal-card { border: 1px solid var(--mamba-border); border-radius: var(--radius-card); background: var(--mamba-panel); transition: border-color var(--ease-fast), background-color var(--ease-fast), transform var(--ease-fast); }
.goal-card:hover { border-color: var(--mamba-border-red); background: var(--mamba-panel-2); transform: translateY(-2px); }
.goal-label { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; text-transform: uppercase; line-height: 1; }
.goal-sub { display: block; margin-top: 6px; font-family: var(--font-body); font-size: 13.5px; font-weight: 400; text-transform: none; color: var(--mamba-muted); }
.goal-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--mamba-border-strong); display: flex; align-items: center; justify-content: center; transition: background-color var(--ease-fast), border-color var(--ease-fast); }
.goal-card:hover .goal-arrow { background: var(--mamba-red); border-color: var(--mamba-red); }

/* Listas con chevron Mamba */
.trust-points ul, ul.trust-points { list-style: none; margin: 0; padding: 0; }
.trust-points li { display: flex; gap: 14px; align-items: flex-start; color: rgba(255,255,255,.88); margin-bottom: 18px; }
.trust-points li::before { content: ""; flex: none; margin-top: 5px; width: 15px; height: 15px; background: var(--mamba-red); clip-path: polygon(0 0, 50% 38%, 100% 0, 100% 34%, 50% 72%, 0 34%); }
.trust-points strong { display: block; font-family: var(--font-display); font-size: 20px; text-transform: uppercase; letter-spacing: .03em; }

/* Actividades / bento */
.activity-card { position: relative; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--mamba-border); isolation: isolate; }
.activity-card .activity-tag { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--mamba-paper); background: rgba(8,8,8,.55); border: 1px solid var(--mamba-border); border-radius: var(--radius-pill); padding: 6px 12px; }
.activity-card .activity-go { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mamba-red-active); }
.activity-meta { font-size: 13.5px; color: rgba(255,255,255,.75); }

/* Tarifas */
.rate-card { border-radius: var(--radius-card); border: 1px solid var(--mamba-border); background: var(--mamba-panel); }
.rate-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.rate-for { font-size: 13.5px; color: var(--mamba-muted); }
.rate-price .amount { font-family: var(--font-display); font-size: 62px; font-weight: 800; line-height: 1; }
.rate-price .period { font-size: 14px; color: var(--mamba-muted); }
.rate-includes { border-top: 1px solid var(--mamba-border); }
.rate-includes li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.85); margin-bottom: 10px; list-style: none; }
.rate-includes li::before { content: ""; flex: none; margin-top: 4px; width: 12px; height: 12px; background: var(--mamba-red); clip-path: polygon(0 0, 50% 38%, 100% 0, 100% 34%, 50% 72%, 0 34%); }
.rate-card.is-featured { background: linear-gradient(170deg, var(--mamba-wine) 0%, #3d0011 68%, var(--mamba-ink) 100%); border-color: var(--mamba-border-red); position: relative; }
.rate-flag { background: var(--mamba-red-active); color: var(--mamba-white); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); display: inline-block; }
.rate-note { font-size: 13px; color: var(--mamba-muted); }
@media (min-width: 1024px) { .rate-card.is-featured { transform: translateY(-14px); } }

/* Mamba Kids */
.kids { background: var(--mamba-red); border-radius: var(--radius-panel); overflow: hidden; }
.kids .eyebrow { color: rgba(255,255,255,.85); }
.kids .eyebrow::before { background: var(--mamba-black); }
.kids .outline { -webkit-text-stroke-color: var(--mamba-white); }
.kids-facts li { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-pill); padding: 8px 16px; list-style: none; display: inline-block; margin: 0 8px 8px 0; }

/* Entrenamiento personal */
.pt-figure { border-radius: var(--radius-panel); overflow: hidden; }
.pt-quote { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; text-transform: uppercase; line-height: 1.05; }

/* Prueba social */
.review-card { background: var(--mamba-panel); border: 1px solid var(--mamba-border); border-radius: var(--radius-card); }
.review-stars { color: var(--mamba-red-active); letter-spacing: 3px; font-size: 15px; }
.review-card blockquote { margin: 0; font-size: 15.5px; color: rgba(255,255,255,.88); border: 0; padding: 0; }
.review-card figcaption, .review-author { font-size: 13.5px; color: var(--mamba-muted); }

/* Tienda (sección clara) */
.shop-section { background: var(--mamba-paper); color: var(--mamba-black); }
.shop-section .eyebrow { color: rgba(8,8,8,.55); }
.shop-section .lead { color: rgba(8,8,8,.65); }
.shop-section .outline { -webkit-text-stroke-color: var(--mamba-black); }
.shop-section h1, .shop-section h2, .shop-section h3, .shop-section h4 { color: var(--mamba-black); }
.product-card { background: var(--mamba-white); border: 1px solid var(--mamba-border-paper); border-radius: var(--radius-card); overflow: hidden; color: var(--mamba-black); transition: transform var(--ease-fast), border-color var(--ease-fast); }
.product-card:hover { transform: translateY(-4px); border-color: rgba(8,8,8,.3); }
.product-badge { background: var(--mamba-red); color: var(--mamba-white); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius-pill); padding: 5px 12px; display: inline-block; }
.product-badge--stock { background: var(--mamba-black); }
.product-cat { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(8,8,8,.5); }
.product-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.product-price { font-weight: 700; font-size: 17px; }
.product-price del { color: rgba(8,8,8,.4); font-weight: 400; margin-right: 8px; }

/* Paneles y formularios */
.form-panel { background: var(--mamba-panel); border: 1px solid var(--mamba-border); border-radius: var(--radius-panel); }
.form-note { font-size: 13px; color: var(--mamba-muted); }
.wpforms-container .wpforms-field-label { font-size: 13.5px !important; font-weight: 600 !important; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.85) !important; }
.wpforms-container input[type=text], .wpforms-container input[type=email], .wpforms-container input[type=tel], .wpforms-container input[type=number], .wpforms-container select, .wpforms-container textarea { min-height: 52px; padding: 14px 16px !important; background: var(--mamba-ink) !important; border: 1px solid var(--mamba-border-strong) !important; border-radius: 12px !important; color: var(--mamba-white) !important; font-family: var(--font-body) !important; font-size: 16px !important; transition: border-color var(--ease-fast); }
.wpforms-container input:focus, .wpforms-container select:focus, .wpforms-container textarea:focus { border-color: var(--mamba-red-active) !important; outline: none; }
.wpforms-container input::placeholder, .wpforms-container textarea::placeholder { color: var(--mamba-disabled-text); }
.wpforms-container .wpforms-error { color: var(--mamba-error) !important; font-size: 13px; }
.wpforms-container button[type=submit] { background: var(--mamba-red) !important; color: var(--mamba-white) !important; border: 0 !important; border-radius: var(--radius-pill) !important; min-height: 56px; padding: 16px 36px !important; font-family: var(--font-body) !important; font-size: 16px !important; font-weight: 600 !important; cursor: pointer; transition: background-color var(--ease-fast); }
.wpforms-container button[type=submit]:hover { background: var(--mamba-red-active) !important; }
.wpforms-container .wpforms-confirmation-container-full { background: var(--mamba-panel); border: 1px solid var(--mamba-success); border-radius: var(--radius-card); color: var(--mamba-white); }

/* Ubicación */
.location-item { background: var(--mamba-panel); border: 1px solid var(--mamba-border); border-radius: var(--radius-card); transition: border-color var(--ease-fast), background-color var(--ease-fast); }
.location-item:hover { border-color: var(--mamba-border-red); background: var(--mamba-panel-2); }
.li-label { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; }
.li-sub { display: block; font-family: var(--font-body); font-size: 13.5px; font-weight: 400; text-transform: none; color: var(--mamba-muted); margin-top: 2px; }
.map-shell { border-radius: var(--radius-panel); overflow: hidden; background: var(--mamba-panel-2); border: 1px solid var(--mamba-border); }

/* Footer */
.site-footer { border-top: 1px solid var(--mamba-border); background: var(--mamba-ink); }
.footer-social a { width: 44px; height: 44px; border: 1px solid var(--mamba-border-strong); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--mamba-white); transition: border-color var(--ease-fast), background-color var(--ease-fast); }
.footer-social a:hover { border-color: var(--mamba-red); background: var(--mamba-red); }
.footer-legal { border-top: 1px solid var(--mamba-border); font-size: 13px; color: var(--mamba-muted); }

/* CTA móvil fijo */
.mobile-cta { border-top: 1px solid var(--mamba-border); }
.mobile-cta a { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.mc-primary { background: var(--mamba-red) !important; }
body.is-checkout .mobile-cta { display: none !important; }

/* Reveal: solo activo si el JS añade body.js-reveal (nunca oculta contenido sin JS) */
body.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 480ms ease, transform 480ms cubic-bezier(.2,.7,.3,1); }
body.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { body.js-reveal .reveal { opacity: 1; transform: none; transition: none; } }
