/** Shopify CDN: Minification failed

Line 598:0 Unexpected "<"

**/
/* ============================================================
   builder-tailwind-utilities.css v2 — COMPLETO
   Cubre TODAS las clases usadas en builder sections (Modo B, Dawn addon).
   Incluye: layout, spacing, typography, colors, effects, animations,
   responsive variants, arbitrary values, touch/swipe gallery.
   ============================================================ */

/* === RESET BASE === */
*, ::before, ::after { box-sizing: border-box; }
img, svg, video { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; padding: 0; font: inherit; }

/* === DISPLAY === */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
@media (min-width: 768px) { .md\:block { display: block; } .md\:flex { display: flex; } .md\:hidden { display: none; } }
@media (min-width: 1024px) { .lg\:block { display: block; } .lg\:flex { display: flex; } .lg\:grid { display: grid; } .lg\:hidden { display: none; } }

/* === POSITION === */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; top: 0; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; } .top-4 { top: 1rem; } .top-6 { top: 1.5rem; }
.bottom-0 { bottom: 0; } .bottom-4 { bottom: 1rem; } .bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; } .left-4 { left: 1rem; }
.right-0 { right: 0; } .right-4 { right: 1rem; } .right-6 { right: 1.5rem; }
@media (min-width: 640px) { .sm\:top-6 { top: 1.5rem; } .sm\:right-6 { right: 1.5rem; } }
.z-0 { z-index: 0; } .z-10 { z-index: 10; } .z-20 { z-index: 20; }
.z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }

/* === CONTAINER === */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { max-width: 640px; padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

/* === FLEX === */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.self-center { align-self: center; }
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-wrap { flex-wrap: wrap; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:w-auto { width: auto; }
  .sm\:text-left { text-align: left; }
}
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
}

/* === GRID === */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-full { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .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\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-span-10 { grid-column: span 10 / span 10; }
  .lg\:col-span-11 { grid-column: span 11 / span 11; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* === GAP === */
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; }
@media (min-width: 640px) { .sm\:gap-3 { gap: 0.75rem; } .sm\:gap-4 { gap: 1rem; } .sm\:gap-8 { gap: 2rem; } }
@media (min-width: 1024px) { .lg\:gap-8 { gap: 2rem; } .lg\:gap-12 { gap: 3rem; } .lg\:gap-16 { gap: 4rem; } }

/* === SIZING === */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-1 { width: 0.25rem; } .w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; } .w-3 { width: 0.75rem; }
.w-4 { width: 1rem; } .w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; } .w-8 { width: 2rem; }
.w-10 { width: 2.5rem; } .w-11 { width: 2.75rem; }
.w-12 { width: 3rem; } .w-14 { width: 3.5rem; }
.w-16 { width: 4rem; } .w-20 { width: 5rem; } .w-24 { width: 6rem; }
@media (min-width: 640px) { .sm\:w-\[440px\] { width: 440px; } .sm\:w-14 { width: 3.5rem; } .sm\:w-20 { width: 5rem; } }
@media (min-width: 1024px) { .lg\:w-\[480px\] { width: 480px; } }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-1 { height: 0.25rem; } .h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; } .h-3 { height: 0.75rem; }
.h-4 { height: 1rem; } .h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; } .h-8 { height: 2rem; }
.h-10 { height: 2.5rem; } .h-11 { height: 2.75rem; }
.h-12 { height: 3rem; } .h-14 { height: 3.5rem; }
.h-16 { height: 4rem; } .h-20 { height: 5rem; } .h-24 { height: 6rem; }
@media (min-width: 640px) { .sm\:h-14 { height: 3.5rem; } .sm\:h-20 { height: 5rem; } }

.min-h-screen { min-height: 100vh; }
.min-h-\[44px\] { min-height: 44px; }
.min-h-\[520px\] { min-height: 520px; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.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-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.max-w-\[1440px\] { max-width: 1440px; }
.max-w-\[18ch\] { max-width: 18ch; }
.max-w-\[20ch\] { max-width: 20ch; }

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

/* === SPACING === */
/* Padding */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; } .p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.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-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.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-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.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-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-6 { padding-top: 1.5rem; } .pt-8 { padding-top: 2rem; } .pt-12 { padding-top: 3rem; }
.pb-5 { padding-bottom: 1.25rem; } .pb-6 { padding-bottom: 1.5rem; } .pb-8 { padding-bottom: 2rem; }
@media (min-width: 640px) {
  .sm\:p-8 { padding: 2rem; } .sm\:p-10 { padding: 2.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .sm\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:pt-12 { padding-top: 3rem; }
  .sm\:pb-6 { padding-bottom: 1.5rem; } .sm\:pb-16 { padding-bottom: 4rem; }
}
@media (min-width: 1024px) {
  .lg\:p-10 { padding: 2.5rem; } .lg\:p-12 { padding: 3rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
}

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; } .mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.ml-0\.5 { margin-left: 0.125rem; } .ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
@media (min-width: 640px) {
  .sm\:mb-4 { margin-bottom: 1rem; } .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mb-7 { margin-bottom: 1.75rem; } .sm\:mb-8 { margin-bottom: 2rem; }
  .sm\:mb-10 { margin-bottom: 2.5rem; } .sm\:mb-12 { margin-bottom: 3rem; }
  .sm\:mt-16 { margin-top: 4rem; }
}
@media (min-width: 1024px) {
  .lg\:mb-8 { margin-bottom: 2rem; } .lg\:mb-10 { margin-bottom: 2.5rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
  .lg\:mt-24 { margin-top: 6rem; }
}
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* === TYPOGRAPHY === */
.text-\[9px\] { font-size: 9px; line-height: 1.4; }
.text-\[10px\] { font-size: 10px; line-height: 1.4; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-\[40px\] { font-size: 40px; }
.text-\[80px\] { font-size: 80px; }
.text-\[96px\] { font-size: 96px; }
@media (min-width: 640px) {
  .sm\:text-\[10px\] { font-size: 10px; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}
@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
@media (min-width: 1024px) {
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-\[80px\] { font-size: 80px; }
}
@media (min-width: 1280px) {
  .xl\:text-\[96px\] { font-size: 96px; }
}

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[1\.05\] { line-height: 1.05; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Font families — overriden per-product by pdp-theme-vars */
.font-display {
  font-family: var(--color-font-display, var(--font-display, 'Manrope', system-ui, sans-serif));
  font-weight: 700;
}
.font-body {
  font-family: var(--color-font-body, var(--font-body, system-ui, sans-serif));
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration: line-through; }
.underline-offset-4 { text-underline-offset: 4px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { overflow-wrap: break-word; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }

@media (min-width: 640px) { .sm\:text-left { text-align: left; } .sm\:text-center { text-align: center; } }
@media (min-width: 1024px) { .lg\:text-left { text-align: left; } }

/* === COLORS — dual variable name (--color-brand-* and --brand-*) === */
/* Background */
.bg-brand-1 { background-color: var(--color-brand-1, var(--brand-1, #f5f5f5)); }
.bg-brand-2 { background-color: var(--color-brand-2, var(--brand-2, #eeeeee)); }
.bg-brand-3 { background-color: var(--color-brand-3, var(--brand-3, #e0e0e0)); }
.bg-brand-9 { background-color: var(--color-brand-9, var(--brand-9, #1a1a1a)); }
.bg-brand-10 { background-color: var(--color-brand-10, var(--brand-10, #111111)); }
.bg-brand-11 { background-color: var(--color-brand-11, var(--brand-11, #0a0a0a)); }
.bg-brand-12 { background-color: var(--color-brand-12, var(--brand-12, #050505)); }
.bg-accent-9 { background-color: var(--color-accent-9, var(--accent-9, #4caf50)); }
.bg-accent-10 { background-color: var(--color-accent-10, var(--accent-10, #3d9e43)); }
.bg-accent-2 { background-color: var(--color-accent-3, var(--accent-3, #c8ebc9)); }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-900 { background-color: #111827; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-500 { background-color: #ef4444; }
.bg-yellow-50 { background-color: #fefce8; }

/* Gradient backgrounds */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.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-brand-2 { --tw-gradient-from: var(--color-brand-2, #eeeeee); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-3 { --tw-gradient-from: var(--color-brand-3, #e0e0e0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-brand-2 { --tw-gradient-to: var(--color-brand-2, #eeeeee); }
.to-brand-3 { --tw-gradient-to: var(--color-brand-3, #e0e0e0); }
.to-brand-9 { --tw-gradient-to: var(--color-brand-9, #1a1a1a); }
.to-transparent { --tw-gradient-to: transparent; }

/* Text color */
.text-brand-1 { color: var(--color-brand-1, var(--brand-1, #f5f5f5)); }
.text-brand-9 { color: var(--color-brand-9, var(--brand-9, #1a1a1a)); }
.text-brand-10 { color: var(--color-brand-10, var(--brand-10, #111111)); }
.text-brand-11 { color: var(--color-brand-11, var(--brand-11, #0a0a0a)); }
.text-brand-12 { color: var(--color-brand-12, var(--brand-12, #050505)); }
.text-accent-9 { color: var(--color-accent-9, var(--accent-9, #4caf50)); }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-500 { color: #6b7280; }
.text-gray-900 { color: #111827; }
.text-neutral-11 { color: #525252; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
/* Opacity variants via CSS */
.text-brand-12\/70 { color: color-mix(in srgb, var(--color-brand-12, #050505) 70%, transparent); }
.text-brand-12\/60 { color: color-mix(in srgb, var(--color-brand-12, #050505) 60%, transparent); }

/* Border color */
.border-brand-3 { border-color: var(--color-brand-3, var(--brand-3, #e0e0e0)); }
.border-brand-6 { border-color: var(--color-brand-6, #c0c0c0); }
.border-brand-9 { border-color: var(--color-brand-9, var(--brand-9, #1a1a1a)); }
.border-brand-11 { border-color: var(--color-brand-11, var(--brand-11, #0a0a0a)); }
.border-brand-12 { border-color: var(--color-brand-12, var(--brand-12, #050505)); }
.border-accent-9 { border-color: var(--color-accent-9, var(--accent-9, #4caf50)); }
.border-white { border-color: #fff; }
.border-gray-200 { border-color: #e5e7eb; }
.border-brand-12\/15 { border-color: color-mix(in srgb, var(--color-brand-12, #050505) 15%, transparent); }

/* Ring */
.ring-brand-9 { --ring-color: var(--color-brand-9, var(--brand-9, #1a1a1a)); }

/* === BORDERS === */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.rounded-none { border-radius: 0; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.sm\:rounded-\[24px\] { }
@media (min-width: 640px) { .sm\:rounded-\[24px\] { border-radius: 24px; } }

/* === EFFECTS === */
.shadow-none { box-shadow: none; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.07); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.10); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.10); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

/* OPACITY — crítico para el carrusel */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* POINTER EVENTS — crítico para ocultar slides */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* OVERFLOW */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* OBJECT FIT */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* BACKGROUND SIZE/POSITION */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* === TRANSITIONS — crítico para animaciones del carrusel === */
.transition { transition: all 150ms ease; }
.transition-all { transition: all 150ms ease; }
.transition-colors { transition: color 150ms, background-color 150ms, border-color 150ms; }
.transition-opacity { transition: opacity 300ms ease; }
.transition-transform { transition: transform 150ms ease; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-in { transition-timing-function: ease-in; }
.ease-out { transition-timing-function: ease-out; }
.ease-in-out { transition-timing-function: ease-in-out; }

/* === TRANSFORMS === */
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.translate-y-0 { transform: translateY(0); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.rotate-180 { transform: rotate(180deg); }
.active\:scale-95:active { transform: scale(0.95); }

/* === RING === */
.ring-2 { box-shadow: 0 0 0 2px var(--ring-color, var(--color-brand-9, #1a1a1a)); }
.ring-4 { box-shadow: 0 0 0 4px var(--ring-color, var(--color-brand-9, #1a1a1a)); }
.ring-white { --ring-color: #fff; }
.ring-offset-2 { --ring-offset: 2px; }

/* === MISC === */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none { user-select: none; }
.appearance-none { appearance: none; }
.outline-none { outline: none; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.italic { font-style: italic; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1)); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* === HOVER STATES === */
.hover\:underline:hover { text-decoration: underline; }
.hover\:no-underline:hover { text-decoration: none; }
.hover\:bg-brand-9:hover { background-color: var(--color-brand-9, #1a1a1a); }
.hover\:bg-brand-10:hover { background-color: var(--color-brand-10, #111); }
.hover\:bg-brand-11:hover { background-color: var(--color-brand-11, #0a0a0a); }
.hover\:bg-accent-10:hover { background-color: var(--color-accent-10, #3d9e43); }
.hover\:text-brand-1:hover { color: var(--color-brand-1, #f5f5f5); }
.hover\:text-brand-9:hover { color: var(--color-brand-9, #1a1a1a); }
.hover\:border-brand-9:hover { border-color: var(--color-brand-9, #1a1a1a); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:opacity-80:hover { opacity: 0.8; }

/* Focus */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring-color, var(--color-brand-9, #1a1a1a)); }

/* === ANIMATION & REVEAL CLASSES === */

/* reveal-up: entrada desde abajo con fade */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.revealed, .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* reveal-fade: solo fade */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.reveal-fade.revealed, .reveal-fade.is-visible {
  opacity: 1;
}

/* reveal-zoom: zoom desde pequeño */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-zoom.revealed, .reveal-zoom.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger: hijos con delay incremental */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* Reveal observer — activa las animaciones al entrar en viewport */
<script-placeholder>/* JS de reveal en builder-motion.css */</script-placeholder>

/* === PREMIUM EFFECT CLASSES === */

/* display-kinetic: headline cinematográfico */
.display-kinetic {
  font-family: var(--color-font-display, var(--font-display, 'Manrope', system-ui, sans-serif));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

/* magnetic: botón con efecto hover magnético (sin JS, CSS only hover) */
.magnetic {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background-color 0.2s ease;
}
.magnetic:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.magnetic:active {
  transform: translateY(0) scale(0.98);
}

/* tilt-card: sutil efecto perspectiva en la galería (CSS only) */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tilt-card:hover {
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

/* aspirational-glass: glass morphism card */
.aspirational-glass {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* aspirational-cta: full-bleed background section */
.aspirational-cta {
  background-size: cover;
  background-position: 25% center;
}
@media (min-width: 768px) {
  .aspirational-cta { background-position: center center; }
}

/* === HOVER ACCENT === */
.bg-accent-9:hover { background-color: var(--color-accent-10, #3d9e43); }

/* === MARQUEE / TICKER === */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === ACCORDION (FAQ) === */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] .accordion-icon { transform: rotate(180deg); }
.accordion-icon { transition: transform 0.3s ease; }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
details[open] .accordion-body {
  max-height: 600px;
}

/* === DIVIDER === */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-brand-3 > * + * { border-color: var(--color-brand-3, #e0e0e0); }
.divide-gray-200 > * + * { border-color: #e5e7eb; }

/* === TABLE === */
.table { display: table; }
.table-auto { table-layout: auto; }
.border-collapse { border-collapse: collapse; }

/* === ADDITIONAL UTILITIES === */
.isolate { isolation: isolate; }
.mix-blend-multiply { mix-blend-mode: multiply; }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur { filter: blur(8px); }

/* Visually hidden (accesibilidad) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Image reset */
img { max-width: 100%; display: block; }
picture { display: block; }

/* ============================================================
   REVEAL ANIMATIONS — patrón "opt-in JS"
   Sin JS: elementos visibles normalmente (sin opacity:0).
   Con JS: html.has-reveals activa las transiciones de entrada.
   El IntersectionObserver vive en builder-motion.css.
   ============================================================ */
html.has-reveals .reveal-up   { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2,0,0,1); }
html.has-reveals .reveal-fade { opacity: 0; transition: opacity 0.65s ease; }
html.has-reveals .reveal-zoom { opacity: 0; transform: scale(0.95); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2,0,0,1); }
html.has-reveals .reveal-up.revealed,
html.has-reveals .reveal-fade.revealed,
html.has-reveals .reveal-zoom.revealed { opacity: 1; transform: none; }
