/* ==========================================================================
   1. VARIABLES PREMIUM & SISTEMA VISUAL GLOBAL
   ========================================================================== */
:root {
    --color-cream: #FDFBF7;
    --color-cream-alt: #F4EFE6;
    --color-chocolate: #2B1E16;
    --color-chocolate-deep: #1A120D;
    --color-gold: #C69C6D;
    --color-gold-hover: #D8B084;
    --color-white: #FFFFFF;
    
    /* Variables agregadas para Feedback de Formularios */
    --color-error: #D34343; 
    --color-success: #4CAF50;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --text-xs: clamp(0.75rem, 0.8vw, 0.85rem);
    --text-sm: clamp(0.875rem, 1vw, 0.95rem);
    --text-base: clamp(1rem, 1.1vw, 1.125rem);
    --text-h3: clamp(1.25rem, 2vw, 1.75rem);
    --text-h2: clamp(2rem, 3.5vw, 3rem);
    --text-h1: clamp(2.5rem, 5vw, 4.25rem);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    --shadow-soft: 0 10px 30px rgba(43, 30, 22, 0.05);
    --shadow-card: 0 15px 35px rgba(43, 30, 22, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    --shadow-premium: 0 25px 50px -12px rgba(43, 30, 22, 0.25), inset 0 1px 0 rgba(255,255,255,0.8);
    --shadow-glow: 0 0 40px rgba(198, 156, 109, 0.25);
    --shadow-glass: 0 10px 30px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    
    --container: 1240px;
    --section-pad: clamp(5rem, 8vw, 8rem);
    
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before, 
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial;
}

body {
    background-color: var(--color-cream);
    color: var(--color-chocolate);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, 
h2, 
h3, 
h4, 
.font-display {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.text-italic {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

/* Clase de Accesibilidad Global */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.justify-center {
    justify-content: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.relative-section {
    position: relative;
}

.dark-section {
    background-color: var(--color-chocolate-deep);
    color: var(--color-cream);
}

.bg-cream-alt {
    background-color: var(--color-cream-alt);
}

.bg-cream {
    background-color: var(--color-cream);
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-white-muted {
    color: rgba(255,255,255,0.7) !important;
}

.text-chocolate {
    color: var(--color-chocolate) !important;
}

.text-sm {
    font-size: var(--text-sm);
}

/* Eyebrows & Divisores */
.eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: var(--text-h2);
    margin-bottom: 1.25rem;
}

.section-title--centered {
    text-align: center;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-header.text-left::after {
    margin: 1.5rem 0 0;
}

.section-desc {
    font-size: var(--text-base);
    color: rgba(43,30,22,0.7);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.section-divider--top {
    top: -59px;
}

.section-divider--bottom {
    bottom: -59px;
    transform: rotate(180deg);
}

/* ==========================================================================
   3. BOTONES & CHIPS (SHIMMER)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all 0.5s var(--ease-premium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    animation: shimmer 0.8s var(--ease-smooth) forwards;
}

@keyframes shimmer {
    100% { left: 200%; }
}

.btn--gold {
    background-color: var(--color-gold);
    color: var(--color-chocolate-deep);
    box-shadow: 0 6px 20px rgba(198, 156, 109, 0.25), inset 0 1px 1px rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--gold:hover {
    background-color: #ceaa82;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 156, 109, 0.4), inset 0 1px 1px rgba(255,255,255,0.5);
}

.btn--chocolate {
    background-color: var(--color-chocolate);
    color: var(--color-cream);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,0.05);
}

.btn--chocolate:hover {
    background-color: var(--color-chocolate-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn--outline {
    border-color: rgba(43,30,22,0.3);
    color: var(--color-chocolate);
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--color-chocolate);
    color: var(--color-cream);
    border-color: var(--color-chocolate);
    transform: translateY(-2px);
}

.btn--outline-gold {
    border-color: rgba(198, 156, 109, 0.4);
    color: var(--color-chocolate);
    background-color: rgba(198, 156, 109, 0.05);
}

.btn--outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-chocolate-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn--glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn--small {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 252, 247, 0.95);
    border: 1px solid rgba(198, 156, 109, 0.35);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-chocolate);
    box-shadow: 0 2px 8px rgba(43, 30, 22, 0.08);
    backdrop-filter: blur(4px);
}

.chip--dark {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.1);
}

.chip svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    stroke-width: 2;
}

/* SVG premium upgrade */
.btn svg {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 1.5 !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: scale(1.1);
}

.badge-item svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.5 !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-social svg,
.fab-whatsapp svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 1.5 !important;
}

/* Asegurar aria-hidden en SVGs decorativos */
svg[aria-hidden="true"] {
    pointer-events: none;
}

/* ==========================================================================
   4. HEADER 3D & MENÚ MOBILE
   ========================================================================== */
.site-header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.5s var(--ease-premium);
    pointer-events: none;
}

.header__inner {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(198, 156, 109, 0.15);
    border-radius: var(--radius-pill);
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem 0 2rem;
    margin: 0 auto;
    pointer-events: auto;
    box-shadow: var(--shadow-glass);
    transition: all 0.5s var(--ease-premium);
}

.site-header.is-scrolled .header__inner {
    background: rgba(253, 251, 247, 0.98);
    box-shadow: var(--shadow-glass), var(--shadow-card);
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__mark {
    width: 38px;
    height: 38px;
    background: var(--color-chocolate);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.logo__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-chocolate);
    line-height: 1.1;
}

.logo__subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav__item {
    display: flex;
    align-items: center;
}

.nav__item:not(:first-child)::before {
    content: '•';
    color: var(--color-chocolate);
    opacity: 0.4;
    margin-right: 1.5rem;
    font-size: 0.8rem;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-chocolate);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.4s var(--ease-smooth);
    transform: translateX(-50%);
}

.nav__link:hover, 
.nav__link.active {
    color: var(--color-gold);
}

.nav__link:hover::after, 
.nav__link.active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1001;
    position: relative;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--color-chocolate);
    transition: 0.4s var(--ease-smooth);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .top-bar {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .middle-bar {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,18,13,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85vw;
    max-width: 360px;
    height: 100vh;
    background: var(--color-cream);
    z-index: 1000;
    padding: 3rem 2.5rem;
    box-shadow: -10px 0 40px rgba(43,30,22,0.15);
    transition: right 0.6s var(--ease-premium);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.is-active {
    right: 0;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: visible;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-shrink: 0;
}

.menu-close {
    background: none;
    border: none;
    color: var(--color-chocolate);
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
    overflow: visible;
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-chocolate);
    display: block;
    border-bottom: 1px solid rgba(198,156,109,0.1);
    padding-bottom: 0.5rem;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.mobile-nav__link:hover, 
.mobile-nav__link:focus {
    padding-left: 10px;
    color: var(--color-gold);
    outline: none;
}

.mobile-menu__footer {
    margin-top: 2rem;
}

/* Fix: menú mobile items visibles al abrir */
.mobile-menu.is-active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   5. HEROS GLOBALES (HOME, CATÁLOGO, NOSOTROS, BLOG, CONTACTO)
   ========================================================================== */
.hero, 
.hero-catalog, 
.hero-about, 
.hero-blog, 
.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero__glow {
    position: absolute;
    background: radial-gradient(circle, rgba(198,156,109,0.15) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(198,156,109,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    opacity: 0.5;
}

.mask-wrap {
    display: block;
    overflow: hidden;
}

.reveal--clip {
    transform: translateY(110%);
    display: inline-block;
    transition: transform 1.2s var(--ease-premium);
}

.is-visible .reveal--clip {
    transform: translateY(0);
}

.line-1 { transition-delay: 0.1s; }
.line-2 { transition-delay: 0.2s; }
.line-3 { transition-delay: 0.3s; }

/* Contacto y Heros Secundarios */
.contact-hero, 
.hero-catalog, 
.hero-about, 
.hero-blog {
    min-height: auto;
    padding-top: 160px;
    justify-content: center;
}

.contact-hero .hero__glow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-chocolate-deep);
}

.hero__desc {
    font-size: var(--text-base);
    color: rgba(43,30,22,0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Home Hero Específico */
.hero {
    min-height: 90vh;
    padding-top: 130px;
}

.hero .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--container);
    text-align: left;
}

.hero .hero__title {
    max-width: 95%;
}

.hero .hero__desc {
    margin-left: 0;
    margin-right: 0;
}

.hero .hero__glow {
    top: 15%;
    right: 5%;
    width: 60vw;
    height: 60vw;
}

.floating-particle {
    position: absolute;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.p-1 {
    top: 25%;
    left: 8%;
    width: 40px;
    animation-delay: 0s;
}

.p-2 {
    bottom: 25%;
    right: 45%;
    width: 24px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.microcopy {
    font-size: var(--text-xs);
    color: rgba(43,30,22,0.6);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__media {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.media__frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.media__glow-back {
    position: absolute;
    inset: -20px;
    background: var(--color-gold);
    filter: blur(30px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.media__glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ==========================================================================
   6. CARDS BENTO & PRODUCTOS (COMPARTIDOS)
   ========================================================================== */
.categories {
    padding: var(--section-pad) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 340px);
    gap: 1.5rem;
    perspective: 1000px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(198,156,109,0.15);
    transform-style: preserve-3d;
    transition: box-shadow 0.5s var(--ease-premium), transform 0.2s ease-out;
    background: var(--color-chocolate-deep);
}

.bento-card:hover {
    box-shadow: var(--shadow-premium);
    z-index: 10;
}

.bento--large { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento--medium { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento--small { grid-column: span 1; grid-row: 2 / 3; padding: 2rem; }

.bento__img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bento__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
}

.bento-card:hover .bento__img {
    transform: scale(1.08);
}

.bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,13,0.95) 0%, rgba(26,18,13,0.2) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento__overlay {
    opacity: 0.85;
}

.bento__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    transform: translateZ(20px);
}

.bento__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.bento__content h3 {
    font-size: var(--text-h3);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bento--large .bento__content h3 {
    font-size: 2.5rem;
}

.bento__content p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

/* Formatos Rápidos de Contacto usando Bento Base */
.contact-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    perspective: 1000px;
}

/* ==========================================================================
   7. TIMELINES (PROCESO EN HOME, NOSOTROS, CONTACTO)
   ========================================================================== */
.process {
    padding: var(--section-pad) 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding-bottom: 2rem;
}

.timeline-line {
    position: absolute;
    background: rgba(198,156,109,0.15);
    z-index: 1;
    border-radius: 2px;
}

.timeline-line-progress {
    background: var(--color-gold);
    box-shadow: var(--shadow-glow);
    border-radius: 2px;
}

/* Timeline Horizontal */
.timeline-line.horizontal-line {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.timeline-line-progress.horizontal-progress {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Timeline Vertical */
.vertical-timeline {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 800px;
}

.timeline-line.vertical-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    height: 100%;
}

.timeline-line-progress.vertical-progress {
    width: 100%;
    height: 0%;
    transition: height 0.1s linear;
}

.timeline-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.timeline-step-v {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.timeline-step-v:nth-child(odd) {
    flex-direction: row-reverse;
}

.step__num, 
.step-v__num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(198,156,109,0.1);
    line-height: 0.8;
    margin-bottom: -1.5rem;
    z-index: -1;
    font-style: italic;
}

.step-v__num {
    width: 60px;
    height: 60px;
    background: var(--color-chocolate);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 3;
    box-shadow: 0 0 0 8px var(--color-cream-alt), inset 0 1px 2px rgba(255,255,255,0.3);
    flex-shrink: 0;
    margin: 0;
}

.step__card, 
.step-v__content {
    background: var(--color-cream);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(198,156,109,0.1);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}

.step-v__content {
    width: calc(50% - 60px);
    padding: 2.5rem;
}

.timeline-step:hover .step__card, 
.timeline-step-v:hover .step-v__content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.step__icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
}

.step__icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--color-chocolate);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
}

.step__icon-glow {
    position: absolute;
    inset: -4px;
    background: var(--color-gold);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.timeline-step:hover .step__icon-glow {
    opacity: 0.4;
}

.step__card h4, 
.step-v__content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-v__content h4 {
    font-size: 1.25rem;
}

.step__card p, 
.step-v__content p {
    font-size: var(--text-sm);
    color: rgba(43,30,22,0.7);
}

/* ==========================================================================
   8. FORMULARIO PREMIUM Y CHECKLIST (CONTACTO & CATÁLOGO)
   ========================================================================== */
.contact-form-section {
    overflow: hidden;
}

.form-card {
    background: var(--color-cream);
    border: 1px solid rgba(198,156,109,0.2);
    box-shadow: var(--shadow-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.form-card--contact {
    border-color: rgba(198,156,109,0.4);
    box-shadow: var(--shadow-premium);
}

.premium-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(43,30,22,0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-chocolate);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-bottom-color: var(--color-gold);
}

.form-control::placeholder {
    color: rgba(43,30,22,0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Estados de Validación y Feedback (Accesibilidad) */
.form-control.is-invalid {
    border-bottom-color: var(--color-error);
}

.form-control.is-valid {
    border-bottom-color: var(--color-success);
}

.error-msg {
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: 0.3rem;
    display: none;
}

.form-control.is-invalid + .error-msg, 
.form-control.is-invalid + .helper-text + .error-msg {
    display: block;
}

.helper-text {
    font-size: 0.75rem;
    color: rgba(43,30,22,0.5);
    display: block;
    margin-top: 0.3rem;
}

.form-feedback {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: none;
}

.form-feedback.is-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: block;
}

.form-feedback.is-error {
    background: rgba(211, 67, 67, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(211, 67, 67, 0.2);
    display: block;
}

/* Sidebar Checklist de Contacto */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,156,109,0.15);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-chocolate-deep);
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(198,156,109,0.15);
}

.checklist li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checklist .title {
    font-size: 0.95rem;
    color: var(--color-chocolate);
    line-height: 1.4;
}

.checklist svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   9. SLIDERS: PRODUCTOS & TALLER & TUNNEL
   ========================================================================== */
.showcase, 
.workshop-gallery {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.showcase-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 2rem 4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    perspective: 1000px;
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - var(--container)/2 + 1.5rem);
    padding-right: calc(50vw - var(--container)/2 + 1.5rem);
}

.showcase-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 340px;
    scroll-snap-align: center;
    background: var(--color-cream-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(198,156,109,0.15);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease-out;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.product__img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
}

.product-card:hover .product__img-wrap img {
    transform: scale(1.05);
}

.product__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43,30,22,0.4) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product__overlay {
    opacity: 1;
}

.product__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(253,251,247,0.95);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-chocolate);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--color-cream-alt);
    transform: translateZ(10px);
}

.product__info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product__info p {
    font-size: var(--text-sm);
    color: rgba(43,30,22,0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product__ideal {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.workshop-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    border: 1px solid rgba(198,156,109,0.15);
    background: var(--color-cream);
}

.workshop-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.workshop-card figcaption {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-chocolate-deep);
    font-weight: 500;
}

.tunnel, 
.featured-tunnel {
    padding: var(--section-pad) 0;
    position: relative;
}

.featured-tunnel {
    padding-bottom: 10vh;
    background: var(--color-cream);
}

.tunnel-header {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.sticky-stack-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 5vh;
    perspective: 1000px;
}

.sticky-card {
    position: sticky;
    top: 15vh;
    height: 60vh;
    min-height: 420px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.2);
    border: 1px solid rgba(198,156,109,0.3);
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: calc(var(--index) * 20px);
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.sticky-card__img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.sticky-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1.2s var(--ease-premium);
}

.sticky-card:hover .sticky-card__img-wrapper img {
    transform: scale(1.05);
}

.sticky-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(26,18,13,0.95) 0%, transparent 60%);
}

.sticky-card__content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: var(--color-white);
    text-align: center;
    transform: translateZ(20px);
    max-width: 700px;
    margin: 0 auto;
}

.card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-gold);
    color: var(--color-chocolate-deep);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-pill);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sticky-card__content h3 {
    font-size: var(--text-h2);
    margin-bottom: 0.5rem;
}

.sticky-card__content p {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   10. FILTROS Y MASONRY GRID (CATÁLOGO)
   ========================================================================== */
.masonry-section {
    padding: var(--section-pad) 0;
}

.filters-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.filters-scroll {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-pill {
    background: transparent;
    border: 1px solid rgba(198,156,109,0.3);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-chocolate);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--color-gold);
}

.filter-pill.active {
    background: var(--color-gold);
    color: var(--color-chocolate-deep);
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(198,156,109,0.3);
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(198,156,109,0.15);
    transform-style: preserve-3d;
}

.masonry-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px) scale3d(1.02, 1.02, 1.02);
    z-index: 2;
}

.masonry__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.masonry__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease-premium);
}

.masonry-item:hover .masonry__img-wrap img {
    transform: scale(1.05);
}

.masonry__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,13,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--color-white);
}

.masonry-item:hover .masonry__overlay {
    opacity: 1;
}

.masonry-item.is-hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* ==========================================================================
   11. EDITORIAL, BLOG & TESTIMONIOS
   ========================================================================== */
.editorial-history {
    padding: var(--section-pad) 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.editorial-text .prose p {
    font-size: 1.05rem;
    color: rgba(43,30,22,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.editorial-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4;
    perspective: 1000px;
}

.collage-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img--main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
    z-index: 2;
}

.collage-img--secondary {
    width: 55%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 3;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-cream);
}

.quote-block {
    padding: var(--section-pad) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-quote {
    max-width: 800px;
    position: relative;
    margin: 0 auto 2rem;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(198,156,109,0.2);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.brand-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Blog Layout */
.featured-post-section {
    padding: var(--section-pad) 0;
}

.featured-post {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(198,156,109,0.2);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.featured-post__img {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
}

.featured-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-premium);
}

.featured-post:hover .featured-post__img img {
    transform: scale(1.03);
}

.featured-post__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,13,0.95) 0%, transparent 80%);
}

.featured-post__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    color: var(--color-white);
    transform: translateZ(20px);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

.post-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.7);
}

.featured-post__content h2 {
    font-size: var(--text-h2);
    margin-bottom: 1rem;
    max-width: 900px;
}

.featured-post__content h2 a {
    transition: color 0.3s ease;
}

.featured-post__content h2 a:hover {
    color: var(--color-gold);
}

.featured-post__content p {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-bottom: 0;
}

/* Fix: botón outline gold visible sobre fondo oscuro */
.featured-post__content .btn--outline-gold {
    color: var(--color-white);
    border-color: var(--color-gold);
    background-color: rgba(198, 156, 109, 0.15);
}

.featured-post__content .btn--outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-chocolate-deep);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.post-card {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,156,109,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.post-card__img-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.post-card__img-wrap {
    width: 100%;
    height: 100%;
}

.post-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
}

.post-card:hover .post-card__img-wrap img {
    transform: scale(1.05);
}

.post-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-chocolate-deep);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.post-card__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card__info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-card:hover .post-card__info h3 {
    color: var(--color-gold);
}

.post-card__info p {
    font-size: 0.9rem;
    color: rgba(43,30,22,0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(198,156,109,0.2);
    padding-top: 1rem;
    font-size: 0.8rem;
}

.post-card.is-hidden {
    display: none !important;
}

.blog-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,156,109,0.15);
    position: relative;
    overflow: hidden;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-chocolate-deep);
}

.sidebar-list li {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(198,156,109,0.2);
    padding-bottom: 1rem;
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.sidebar-list a:hover {
    transform: translateX(5px);
}

.sidebar-list .title {
    font-weight: 500;
    color: var(--color-chocolate);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sidebar-list a:hover .title {
    color: var(--color-gold);
}

.pagination {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonios y Badges */
.testimonials {
    padding: var(--section-pad) 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.test-card {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(198,156,109,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.test-card p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-chocolate-deep);
    line-height: 1.4;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(198,156,109,0.2);
    padding-top: 1.5rem;
}

.trust-badges {
    padding: 5rem 0;
}

.badges-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-cream);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-chocolate-deep);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,156,109,0.15);
}

.badge-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon {
    transform: scale(1.1);
}

/* ==========================================================================
   12. FAQ & CTA JEWEL
   ========================================================================== */
.consultation-faq, 
.faq-cta {
    padding: var(--section-pad) 0;
}

.faq-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    perspective: 1000px;
}

.accordion-item {
    border-bottom: 1px solid rgba(198,156,109,0.3);
    padding: 1.5rem 0;
}

.accordion-item summary {
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    color: var(--color-chocolate-deep);
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary:focus-visible {
    color: var(--color-gold);
}

.icon-plus {
    position: relative;
    width: 14px;
    height: 14px;
}

.icon-plus::before, 
.icon-plus::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    transition: transform 0.4s var(--ease-premium);
}

.icon-plus::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.icon-plus::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.accordion-item[open] .icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item[open] .icon-plus::before {
    transform: rotate(180deg);
}

.accordion-content {
    padding-top: 1rem;
    font-size: var(--text-sm);
    color: rgba(43,30,22,0.7);
    line-height: 1.6;
}

.cta-card {
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198,156,109,0.3);
    box-shadow: var(--shadow-premium);
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.cta-card__glow {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(198,156,109,0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card h2 {
    font-size: var(--text-h2);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.cta-card p {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.cta-microcopy {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   13. FOOTER PREMIUM Y FAB WHATSAPP
   ========================================================================== */
.site-footer {
    position: relative;
    padding-top: 8rem;
}

.footer-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.footer__inner {
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 4rem;
}

.footer-desc {
    margin: 1.5rem 0;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer-nav h4, 
.footer-contact h4, 
.footer-gallery h4 {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav a, 
.footer-contact p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.contact-data {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.contact-data li {
    margin-bottom: 0.5rem;
}

.contact-data strong {
    color: var(--color-white);
    font-weight: 500;
}

.ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.ig-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.ig-grid img:hover {
    opacity: 1;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* Footer premium upgrade */
.site-footer {
    padding-top: 4rem;
    background: var(--color-chocolate);
}

.footer__inner {
    padding-bottom: 3rem;
}

.footer-brand .logo__title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4), inset 0 1px 1px rgba(255,255,255,0.5);
    z-index: 99;
    transition: transform 0.4s var(--ease-premium), opacity 0.4s;
}

.fab-whatsapp:hover {
    transform: scale(1.1) rotate(-5deg);
}

.fab-whatsapp.hide {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   14. ANIMACIONES REVEAL Y FAILSAFES (GLOBALES)
   ========================================================================== */
.reveal {
    opacity: 0;
    transition: all 1s var(--ease-premium);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.reveal--up { transform: translateY(40px); }
.reveal--left { transform: translateX(40px); }
.reveal--right { transform: translateX(-40px); }
.reveal--scale { transform: scale(0.95); }

/* Failsafe si JS está desactivado */
noscript .reveal {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Stagger logic */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-premium);
}

.stagger-parent.is-visible .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-parent.is-visible .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-parent.is-visible .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-parent.is-visible .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-parent.is-visible .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-parent.is-visible .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-parent.is-visible .stagger-item:nth-child(6) { transition-delay: 0.6s; }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal, 
    .reveal--clip, 
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    .3d-tilt {
        transform: none !important;
    }
}

/* ==========================================================================
   15. SECCIONES SIN ESTILOS — ESTILOS FALTANTES AGREGADOS
   ========================================================================== */

/* Intro Gallery (Catálogo) */
.intro-gallery {
    padding: var(--section-pad) 0;
    background: var(--color-cream);
}

.intro-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--color-cream-alt);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(198,156,109,0.15);
    box-shadow: var(--shadow-soft);
}

.mini-step__num {
    width: 48px;
    height: 48px;
    background: var(--color-chocolate);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Value Cards (Nosotros) */
.values-section {
    padding: var(--section-pad) 0;
    background: var(--color-cream);
}

.bento-values {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.value-card {
    background: var(--color-cream-alt);
    border: 1px solid rgba(198,156,109,0.15);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    min-height: 280px;
}

.value-card h3 {
    font-size: var(--text-h3);
    margin-bottom: 1rem;
    color: var(--color-chocolate-deep);
    line-height: 1.2;
}

.value-card p {
    font-size: var(--text-sm);
    color: rgba(43,30,22,0.7);
    line-height: 1.6;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--color-chocolate);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Logo light variant */
.logo--light .logo__title {
    color: var(--color-cream);
}

.logo--light .logo__subtitle {
    color: var(--color-gold);
}

/* Card ideal (Catálogo sticky cards) */
.card__ideal {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Post card read more */
.post-card__read-more {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.post-card__read-more:hover {
    color: var(--color-chocolate);
}

.read-time {
    font-size: 0.75rem;
    color: rgba(43,30,22,0.5);
    margin-top: 0.25rem;
}

/* Form actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Blog grid section */
.blog-grid-section {
    padding: var(--section-pad) 0;
    background: var(--color-cream);
}

/* Featured post section */
.featured-post-section {
    padding: var(--section-pad) 0;
}

/* Post category */
.post-category {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

/* Consultation FAQ */
.consultation-faq {
    padding: var(--section-pad) 0;
    background: var(--color-cream-alt);
}

/* FAQ column & CTA column */
.faq-column, .cta-column {
    display: flex;
    flex-direction: column;
}

/* Contact channels */
.contact-channels {
    padding: 2rem 0;
    background: var(--color-cream-alt);
}

/* Workshop gallery */
.workshop-gallery {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

/* Trust badges */
.trust-badges {
    padding: var(--section-pad) 0;
    background: var(--color-cream-alt);
    position: relative;
}

/* Hero inner variants */
.hero-catalog__inner,
.hero-about__inner,
.hero-blog__inner {
    max-width: var(--container);
    margin: 0 auto;
}

/* ==========================================================================
   16. RESPONSIVE / MOBILE FIRST (SISTEMA ROBUSTO)
   ========================================================================== */

/* Base mobile-first: 320px en adelante */

/* 320px - 359px: Mobile extremo */
@media (max-width: 359px) {
    :root {
        --text-h1: clamp(1.75rem, 7vw, 2.5rem);
        --text-h2: clamp(1.5rem, 5vw, 2rem);
        --text-h3: clamp(1.15rem, 4vw, 1.5rem);
        --section-pad: clamp(3rem, 6vw, 4rem);
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .site-header {
        top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .header__inner {
        padding: 0 0.5rem 0 0.75rem;
        height: 60px;
        gap: 0.5rem;
    }
    
    .logo__title {
        font-size: 0.85rem;
    }
    
    .logo__subtitle {
        font-size: 0.55rem;
    }
    
    .logo__mark {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        position: relative;
    }
    
    .hero .hero__media {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        opacity: 0.60;
        pointer-events: none;
        width: 260px;
        height: 260px;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(43, 30, 22, 0.15);
    }
    
    .hero .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero .hero__content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 0.75rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 0.85) 30%, rgba(255, 252, 247, 0.5) 60%, transparent 100%);
    }
    
    .hero .hero__title {
        max-width: 100%;
        text-shadow: 0 2px 20px rgba(255, 252, 247, 1), 0 1px 4px rgba(255, 252, 247, 1), 0 0 30px rgba(255, 252, 247, 0.8);
    }
    
    .hero .hero__desc {
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 10px rgba(255, 252, 247, 1), 0 0 20px rgba(255, 252, 247, 0.8);
    }
    
    .hero__title {
        font-size: var(--text-h1);
        margin-bottom: 1rem;
    }
    
    .hero__desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
}

/* 360px - 479px: Mobile estándar */
@media (min-width: 360px) and (max-width: 479px) {
    .hero .hero__media {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        opacity: 0.60;
        pointer-events: none;
        width: 280px;
        height: 280px;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(43, 30, 22, 0.15);
    }
}

/* 480px - 575px: Mobile wide */
@media (min-width: 480px) and (max-width: 575px) {
    .hero .hero__media {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        opacity: 0.60;
        pointer-events: none;
        width: 300px;
        height: 300px;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(43, 30, 22, 0.15);
    }
}

/* 576px - 767px: Small tablet */
@media (min-width: 576px) and (max-width: 767px) {
    .hero .hero__media {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        opacity: 0.60;
        pointer-events: none;
        width: 320px;
        height: 320px;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(43, 30, 22, 0.15);
    }
}

/* 768px - 1023px: Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero__media {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        opacity: 0.60;
        pointer-events: none;
        width: 350px;
        height: 350px;
        margin: 0;
    }
    
    .hero__media .media__frame {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(43, 30, 22, 0.15);
    }
}

    .trust-chips {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .chip {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .btn--small {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title {
        margin-bottom: 0.75rem;
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: -0.02em;
    }
    
    .section-header .eyebrow {
        display: block;
        text-align: center;
    }
    
    .section-desc {
        text-align: center;
    }
    
    .section-divider {
        height: 30px;
    }
    
    .section-divider--top {
        top: -29px;
    }
    
    .section-divider--bottom {
        bottom: -29px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .bento-card {
        height: auto;
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .bento--large,
    .bento--medium,
    .bento--small {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .bento__content h3 {
        font-size: 1.25rem;
    }
    
    .bento--large .bento__content h3 {
        font-size: 1.5rem;
    }
    
    .bento__content p {
        font-size: 0.85rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-line.horizontal-line {
        display: none;
    }
    
    .step__card {
        padding: 1.5rem;
    }
    
    .step__num {
        font-size: 3rem;
    }
    
    .vertical-line {
        left: 24px;
    }
    
    .timeline-step-v {
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .step-v__num {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        box-shadow: 0 0 0 4px var(--color-cream-alt), inset 0 1px 2px rgba(255,255,255,0.3);
    }
    
    .step-v__content {
        width: calc(100% - 64px);
        padding: 1.5rem;
    }
    
    .step-v__content h4 {
        font-size: 1rem;
    }
    
    .showcase-slider {
        padding: 0.5rem 0.75rem 2rem;
        margin: 0;
        gap: 1rem;
    }
    
    .product-card {
        flex: 0 0 280px;
    }
    
    .product__img-wrap {
        height: 240px;
    }
    
    .workshop-card {
        flex: 0 0 280px;
    }
    
    .workshop-card img {
        height: 220px;
    }
    
    .sticky-card {
        height: auto;
        min-height: 320px;
        padding: 1.5rem;
        top: 100px;
    }
    
    .sticky-card__content {
        padding: 1.5rem;
    }
    
    .sticky-card__content h3 {
        font-size: var(--text-h3);
    }
    
    .sticky-card__content p {
        font-size: 0.9rem;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .collage-img--main {
        width: 100%;
        position: relative;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .collage-img--secondary {
        display: none;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -1.5rem;
    }
    
    .brand-quote p {
        font-size: 1.25rem;
    }
    
    .bento-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 48px;
        height: 48px;
    }
    
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-post__img {
        height: auto;
        min-height: 250px;
    }
    
    .featured-post__content {
        padding: 1.5rem;
    }
    
    .featured-post__content h2 {
        font-size: var(--text-h3);
    }
    
    .post-card__info {
        padding: 1rem;
    }
    
    .post-card__info h3 {
        font-size: 1rem;
    }
    
    .filters-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        justify-content: flex-start;
        gap: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .filter-pill {
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .masonry-grid {
        column-count: 1;
        column-gap: 1rem;
    }
    
    .masonry-item {
        margin-bottom: 1rem;
    }
    
    .faq-cta__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: var(--text-h2);
    }
    
    .cta-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.8rem 0;
        font-size: 14px;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-divider {
        height: 60px;
    }
    
    .footer-desc {
        max-width: 100%;
        margin: 1rem auto;
    }
    
    .footer-nav ul,
    .footer-contact p {
        text-align: center;
    }
    
    .footer-nav ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-gallery {
        text-align: center;
    }
    
    .ig-grid {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .fab-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
    
    .mobile-nav__link {
        font-size: 1.5rem;
        padding-bottom: 0.4rem;
    }
    
    .mobile-menu__header {
        margin-bottom: 2rem;
    }
    
    .mobile-menu {
        padding: 2rem 1.5rem;
    }
    
    .mobile-menu__footer {
        margin-top: 1.5rem;
    }
    
    .accordion-item {
        padding: 1rem 0;
    }
    
    .accordion-item summary {
        font-size: 0.95rem;
    }
    
    .accordion-content {
        font-size: 0.85rem;
    }
    
    .badges-flex {
        gap: 0.75rem;
    }
    
    .badge-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mini-step {
        padding: 1.5rem;
    }
    
    .floating-particle {
        display: none;
    }
    
    .hero__media {
        max-width: 280px;
        margin: 0 auto;
        position: relative;
    }
    
    .media__frame {
        border-radius: var(--radius-md);
    }
    
    .hero-catalog,
    .hero-about,
    .hero-blog,
    .contact-hero {
        padding-top: 120px;
        padding-bottom: 2rem;
    }
}

/* 360px - 479px: Mobile estándar */
@media (min-width: 360px) and (max-width: 479px) {
    :root {
        --text-h1: clamp(2rem, 6vw, 2.75rem);
        --text-h2: clamp(1.75rem, 4vw, 2.25rem);
        --section-pad: clamp(3.5rem, 6vw, 5rem);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .site-header {
        padding: 0 0.5rem;
    }
    
    .header__inner {
        gap: 0.5rem;
    }
    
    .hero {
        padding-top: 110px;
    }
    
    .hero .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        position: relative;
    }
    
    .hero .hero__media {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        opacity: 0.18;
        pointer-events: none;
        max-width: 100%;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .hero .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero .hero__content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 0.75rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 0.85) 30%, rgba(255, 252, 247, 0.5) 60%, transparent 100%);
    }
    
    .hero .hero__title {
        max-width: 100%;
        text-shadow: 0 2px 20px rgba(255, 252, 247, 1), 0 1px 4px rgba(255, 252, 247, 1), 0 0 30px rgba(255, 252, 247, 0.8);
    }
    
    .hero .hero__desc {
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 10px rgba(255, 252, 247, 1), 0 0 20px rgba(255, 252, 247, 0.8);
    }
    
    .hero__title {
        font-size: var(--text-h1);
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .bento-card {
        height: auto;
        min-height: 320px;
        padding: 1.75rem;
    }
    
    .product-card {
        flex: 0 0 300px;
    }
    
    .workshop-card {
        flex: 0 0 320px;
    }
    
    .sticky-card {
        min-height: 360px;
    }
    
    .footer-divider {
        height: 80px;
    }
    
    .mobile-nav__link {
        font-size: 1.75rem;
    }
    
    .featured-post__img {
        min-height: 300px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-values {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .faq-cta__grid {
        gap: 2.5rem;
    }
    
    .cta-card {
        padding: 2.5rem 2rem;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }
}

/* 480px - 575px: Mobile wide */
@media (min-width: 480px) and (max-width: 575px) {
    :root {
        --text-h1: clamp(2.25rem, 5vw, 3rem);
        --text-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        position: relative;
    }
    
    .hero .hero__media {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        opacity: 0.18;
        pointer-events: none;
        max-width: 100%;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .hero .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero .hero__content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 0.75rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 0.85) 30%, rgba(255, 252, 247, 0.5) 60%, transparent 100%);
    }
    
    .hero .hero__title {
        max-width: 100%;
        text-shadow: 0 2px 20px rgba(255, 252, 247, 1), 0 1px 4px rgba(255, 252, 247, 1), 0 0 30px rgba(255, 252, 247, 0.8);
    }
    
    .hero .hero__desc {
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 10px rgba(255, 252, 247, 1), 0 0 20px rgba(255, 252, 247, 0.8);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }
    
    .bento--large {
        grid-column: 1 / -1;
    }
    
    .bento--medium {
        grid-column: 1 / -1;
    }
    
    .bento--small {
        grid-column: span 1;
    }
    
    .bento-card {
        height: auto;
        min-height: 260px;
    }
    
    .product-card {
        flex: 0 0 320px;
    }
    
    .workshop-card {
        flex: 0 0 340px;
    }
    
    .bento-values {
        grid-template-columns: 1fr 1fr;
    }
    
    .value-card {
        min-height: 220px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-desc {
        max-width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .mini-step {
        padding: 1.25rem;
    }
    
    .mini-step p {
        font-size: 0.85rem;
    }
}

/* 576px - 767px: Small tablet */
@media (min-width: 576px) and (max-width: 767px) {
    .hero .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        position: relative;
    }
    
    .hero .hero__media {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        opacity: 0.18;
        pointer-events: none;
        max-width: 100%;
        margin: 0;
    }
    
    .hero .hero__media .media__frame {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .hero .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero .hero__content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 0.75rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 0.85) 30%, rgba(255, 252, 247, 0.5) 60%, transparent 100%);
    }
    
    .hero .hero__title {
        max-width: 100%;
        text-shadow: 0 2px 20px rgba(255, 252, 247, 1), 0 1px 4px rgba(255, 252, 247, 1), 0 0 30px rgba(255, 252, 247, 0.8);
    }
    
    .hero .hero__desc {
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 10px rgba(255, 252, 247, 1), 0 0 20px rgba(255, 252, 247, 0.8);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento--large {
        grid-column: 1 / -1;
        height: auto;
        min-height: 360px;
    }
    
    .bento--medium {
        grid-column: 1 / -1;
        height: auto;
        min-height: 280px;
    }
    
    .bento--small {
        grid-column: span 1;
        height: auto;
        min-height: 240px;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .timeline-line.horizontal-line {
        display: none;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .collage-img--main {
        width: 85%;
        margin: 0 auto;
        position: relative;
    }
    
    .collage-img--secondary {
        display: none;
    }
    
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .article-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .featured-post__img {
        min-height: 350px;
    }
    
    .faq-cta__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .bento-values {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .value-card {
        min-height: 240px;
        padding: 2rem;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .mini-step {
        padding: 1.5rem;
    }
    
    .masonry-grid {
        column-count: 2;
        column-gap: 1.25rem;
    }
    
    .product-card {
        flex: 0 0 340px;
    }
    
    .workshop-card {
        flex: 0 0 360px;
    }
    
    .sticky-card {
        min-height: 380px;
    }
}

/* 768px - 1023px: Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .header__inner {
        padding: 0 0.75rem 0 1.5rem;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        position: relative;
    }
    
    .hero__media {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        opacity: 0.18;
        pointer-events: none;
        max-width: 100%;
        margin: 0;
    }
    
    .hero__media .media__frame {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero__content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 0.75rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 0.85) 30%, rgba(255, 252, 247, 0.5) 60%, transparent 100%);
    }
    
    .hero__title {
        text-shadow: 0 2px 20px rgba(255, 252, 247, 1), 0 1px 4px rgba(255, 252, 247, 1), 0 0 30px rgba(255, 252, 247, 0.8);
    }
    
    .hero__desc {
        margin: 0 auto 2rem;
        text-shadow: 0 1px 10px rgba(255, 252, 247, 1), 0 0 20px rgba(255, 252, 247, 0.8);
    }
    
    .trust-chips,
    .hero__actions {
        justify-content: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento--large {
        grid-column: 1 / -1;
        height: auto;
        min-height: 400px;
    }
    
    .bento--medium {
        grid-column: 1 / -1;
        height: auto;
        min-height: 320px;
    }
    
    .bento--small {
        grid-column: span 1;
        height: auto;
        min-height: 280px;
    }
    
    .timeline-line.horizontal-line {
        display: none;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .editorial-text .prose {
        margin: 0 auto;
    }
    
    .collage-img--main {
        width: 80%;
        position: relative;
        margin: 0 auto;
    }
    
    .collage-img--secondary {
        display: none;
    }
    
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .masonry-grid {
        column-count: 2;
    }
    
    .faq-cta__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .bento-values {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        min-height: 260px;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-post__img {
        min-height: 380px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .sticky-card {
        min-height: 400px;
    }
    
    .product-card {
        flex: 0 0 360px;
    }
    
    .workshop-card {
        flex: 0 0 380px;
    }
}

/* 1024px - 1199px: Desktop pequeño */
@media (min-width: 1024px) and (max-width: 1199px) {
    .header__inner {
        padding: 0 1rem 0 1.5rem;
    }
    
    .hero .hero__inner {
        gap: 3rem;
    }
    
    .hero__title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .bento--large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        height: auto;
        min-height: 500px;
    }
    
    .bento--medium {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        height: auto;
        min-height: 240px;
    }
    
    .bento--small {
        grid-column: span 1;
        grid-row: 2 / 3;
        height: auto;
        min-height: 240px;
    }
    
    .editorial-grid {
        gap: 3rem;
    }
    
    .collage-img--main {
        width: 70%;
    }
    
    .collage-img--secondary {
        width: 50%;
    }
    
    .editorial-layout {
        grid-template-columns: 1.75fr 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .bento-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-card {
        min-height: 260px;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .sticky-card {
        min-height: 420px;
    }
}

/* 1200px - 1439px: Desktop */
@media (min-width: 1200px) and (max-width: 1439px) {
    .header__inner {
        padding: 0 1.5rem 0 2rem;
    }
    
    .hero .hero__inner {
        gap: 4rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 320px);
    }
    
    .bento--large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .bento--medium {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }
    
    .bento--small {
        grid-column: span 1;
        grid-row: 2 / 3;
    }
    
    .editorial-layout {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        gap: 3rem;
    }
    
    .bento-values {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .value-card {
        min-height: 280px;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .sticky-card {
        min-height: 450px;
    }
}

/* 1440px+: Desktop grande */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero .hero__inner {
        max-width: 1320px;
    }
    
    .hero__title {
        font-size: clamp(3rem, 4vw, 4.5rem);
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 360px);
        gap: 2rem;
    }
    
    .bento--large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .bento--medium {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }
    
    .bento--small {
        grid-column: span 1;
        grid-row: 2 / 3;
    }
    
    .editorial-layout {
        grid-template-columns: 2.5fr 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        gap: 4rem;
    }
    
    .bento-values {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .value-card {
        min-height: 300px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .sticky-card {
        min-height: 480px;
    }
    
    .product-card {
        flex: 0 0 380px;
    }
    
    .workshop-card {
        flex: 0 0 420px;
    }
}

/* ==========================================================================
   17. ALTURA REDUCIDA (LAPTOPS BAJOS)
   ========================================================================== */

/* Laptops muy bajos: 500px - 599px */
@media (min-width: 1024px) and (max-height: 599px) {
    .site-header {
        top: 0.5rem;
    }
    
    .header__inner {
        height: 56px;
        padding: 0 0.75rem 0 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero__title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero__desc {
        margin-bottom: 1.5rem;
    }
    
    .hero-catalog,
    .hero-about,
    .hero-blog,
    .contact-hero {
        padding-top: 120px;
        padding-bottom: 1.5rem;
    }
    
    .section-pad,
    .relative-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .categories,
    .process,
    .showcase,
    .tunnel,
    .faq-cta,
    .consultation-faq,
    .masonry-section,
    .editorial-history,
    .values-section,
    .workshop-gallery,
    .trust-badges,
    .blog-grid-section,
    .featured-post-section,
    .contact-form-section,
    .contact-channels {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .sticky-card {
        height: auto;
        min-height: 320px;
        top: 80px;
    }
    
    .bento-card {
        height: auto;
        min-height: 240px;
    }
    
    .step__card {
        padding: 1.5rem;
    }
    
    .step-v__content {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .footer-divider {
        height: 80px;
    }
    
    .footer__inner {
        padding-bottom: 2rem;
    }
    
    .section-divider {
        height: 40px;
    }
    
    .section-divider--top {
        top: -39px;
    }
    
    .section-divider--bottom {
        bottom: -39px;
    }
}

/* Laptops bajos: 600px - 699px */
@media (min-width: 1024px) and (min-height: 600px) and (max-height: 699px) {
    .site-header {
        top: 0.75rem;
    }
    
    .header__inner {
        height: 60px;
    }
    
    .hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 2.5rem;
    }
    
    .hero-catalog,
    .hero-about,
    .hero-blog,
    .contact-hero {
        padding-top: 130px;
        padding-bottom: 2rem;
    }
    
    .section-pad,
    .relative-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .categories,
    .process,
    .showcase,
    .tunnel,
    .faq-cta,
    .consultation-faq,
    .masonry-section,
    .editorial-history,
    .values-section,
    .workshop-gallery,
    .trust-badges,
    .blog-grid-section,
    .featured-post-section,
    .contact-form-section,
    .contact-channels {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .sticky-card {
        height: auto;
        min-height: 360px;
        top: 100px;
    }
    
    .footer-divider {
        height: 90px;
    }
    
    .section-divider {
        height: 45px;
    }
    
    .section-divider--top {
        top: -44px;
    }
    
    .section-divider--bottom {
        bottom: -44px;
    }
}

/* Laptops medianos: 700px - 799px */
@media (min-width: 1024px) and (min-height: 700px) and (max-height: 799px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
    }
    
    .sticky-card {
        min-height: 400px;
        top: 110px;
    }
    
    .section-divider {
        height: 50px;
    }
    
    .section-divider--top {
        top: -49px;
    }
    
    .section-divider--bottom {
        bottom: -49px;
    }
}

/* ==========================================================================
   18. FIXES GLOBALES ADICIONALES
   ========================================================================== */

/* Asegurar que no haya overflow horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Asegurar que las imágenes no desborden */
img {
    max-width: 100%;
    height: auto;
}

/* Prevenir que SVGs causen overflow */
.section-divider,
.footer-divider {
    display: block;
    max-width: 100vw;
}

/* Asegurar que el mobile menu no cause scroll horizontal */
.mobile-menu {
    max-width: 360px;
}

@media (max-width: 359px) {
    .mobile-menu {
        width: 85vw;
        max-width: none;
    }
}

/* Smooth scroll para anclas */
html {
    scroll-padding-top: 120px;
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 100px;
    }
}

/* Prevenir que el FAB tape contenido en mobile */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* Asegurar que los botones no sean demasiado anchos */
.btn {
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Asegurar que los formularios no desborden */
.form-control {
    max-width: 100%;
}

/* Prevenir que el showcase slider cause overflow */
.showcase-slider {
    max-width: 100vw;
    overflow-x: auto;
}

/* Asegurar que las cards de sticky tunnel no sean demasiado altas */
@media (max-height: 700px) {
    .sticky-card {
        height: auto;
        min-height: 280px;
    }
    
    .sticky-card__content {
        padding: 1.5rem;
    }
    
    .sticky-card__content h3 {
        font-size: var(--text-h3);
        margin-bottom: 0.5rem;
    }
    
    .sticky-card__content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Asegurar que el timeline vertical se vea bien en alturas bajas */
@media (max-height: 600px) {
    .timeline-grid-vertical {
        gap: 2rem;
    }
    
    .timeline-step-v {
        gap: 1rem;
    }
    
    .step-v__content {
        padding: 1.25rem;
    }
    
    .step-v__num {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

/* Prevenir que el footer sea demasiado alto en laptops bajas */
@media (min-width: 1024px) and (max-height: 700px) {
    .site-footer {
        padding-top: 4rem;
    }
    
    .footer__inner {
        padding-bottom: 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-desc {
        margin: 1rem 0;
    }
    
    .footer-nav ul li,
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
}

/* Asegurar que el menú mobile sea scrollable en landscape */
@media (max-height: 500px) and (max-width: 1025px) {
    .mobile-menu {
        overflow-y: auto;
        padding-bottom: 3rem;
    }
    
    .mobile-nav__link {
        font-size: 1.25rem;
        padding-bottom: 0.3rem;
    }
    
    .mobile-menu__header {
        margin-bottom: 1rem;
    }
    
    .mobile-menu__footer {
        margin-top: 1rem;
    }
    
    .mobile-menu__footer .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Prevenir que el hero se rompa en orientación landscape de mobile */
@media (max-height: 500px) and (max-width: 767px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
    }
    
    .hero .hero__inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1.5rem;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .trust-chips {
        margin-bottom: 1rem;
    }
    
    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero__actions .btn {
        width: auto;
    }
    
    .hero__media {
        max-width: 100%;
    }
}

/* Asegurar que los badges se vean bien en mobile */
@media (max-width: 767px) {
    .badges-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .badge-item {
        justify-content: center;
        width: 100%;
    }
}

/* Prevenir que el quote block se rompa en mobile */
@media (max-width: 767px) {
    .quote-block {
        padding: 3rem 0;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: -2rem;
    }
    
    .brand-quote p {
        font-size: 1.25rem;
    }
}

/* Asegurar que el showcase slider no tenga overflow horizontal */
.showcase-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.showcase-slider::-webkit-scrollbar {
    display: none;
}

/* Prevenir que el product tag se rompa en mobile */
@media (max-width: 767px) {
    .product__tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Asegurar que el masonry overlay no se rompa en mobile */
@media (max-width: 767px) {
    .masonry__overlay {
        padding: 1rem;
    }
    
    .masonry__overlay h3 {
        font-size: 1rem;
    }
    
    .masonry__overlay .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Prevenir que el blog sidebar CTA se rompa en mobile */
@media (max-width: 767px) {
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .sidebar-widget h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-list li {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* Asegurar que el checklist de contacto se vea bien en mobile */
@media (max-width: 767px) {
    .checklist li {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .checklist .title {
        font-size: 0.9rem;
    }
}

/* Prevenir que el workshop gallery cause overflow */
.workshop-gallery {
    overflow: hidden;
}

/* Asegurar que las cards de producto sean accesibles en mobile */
@media (max-width: 767px) {
    .product__info {
        padding: 1.5rem;
    }
    
    .product__info h3 {
        font-size: 1.1rem;
    }
    
    .product__info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .product__ideal {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

/* Prevenir que el hero glow tape contenido */
.hero__glow {
    pointer-events: none;
    z-index: 0;
}

/* Asegurar que las floating particles no tapen el contenido */
.floating-particle {
    pointer-events: none;
    z-index: 0;
}

/* Prevenir que el media glow back sea demasiado grande */
@media (max-width: 767px) {
    .media__glow-back {
        inset: -10px;
        filter: blur(20px);
    }
}

/* Asegurar que el footer bottom no se rompa en mobile */
@media (max-width: 767px) {
    .footer-bottom {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
}

/* Prevenir que el card badge se rompa en mobile */
@media (max-width: 767px) {
    .card__badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Asegurar que el post meta se vea bien en mobile */
@media (max-width: 767px) {
    .post-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .post-time svg {
        width: 12px;
        height: 12px;
    }
}

/* Prevenir que el pagination se rompa en mobile */
@media (max-width: 767px) {
    .pagination {
        margin-top: 2rem;
    }
    
    .pagination .btn {
        width: 100%;
    }
}

/* Asegurar que el post card badge se vea bien en mobile */
@media (max-width: 767px) {
    .post-card__badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Prevenir que el editorial text se rompa en mobile */
@media (max-width: 767px) {
    .editorial-text .prose p {
        font-size: 0.95rem;
    }
}

/* Asegurar que el collage shape no cause overflow */
.collage-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-gold);
    opacity: 0.1;
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .collage-shape {
        display: none;
    }
}

/* Prevenir que el bento overlay sea demasiado oscuro en mobile */
@media (max-width: 767px) {
    .bento__overlay {
        background: linear-gradient(to top, rgba(26,18,13,0.9) 0%, rgba(26,18,13,0.4) 50%, transparent 100%);
    }
}

/* Asegurar que el step icon wrap no se rompa en mobile */
@media (max-width: 767px) {
    .step__icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .step__icon {
        width: 48px;
        height: 48px;
    }
    
    .step__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Prevenir que el FAQ CTA grid se rompa en orientación landscape */
@media (max-height: 500px) and (max-width: 767px) {
    .faq-cta__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .faq-column {
        gap: 1rem;
    }
    
    .accordion-item {
        padding: 0.75rem 0;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
}

/* Asegurar que el formulario de contacto no se rompa en altura baja */
@media (max-height: 600px) {
    .form-card {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.75rem 0;
    }
}

/* Prevenir que el sticky tunnel se rompa en altura baja */
@media (max-height: 600px) {
    .sticky-stack-container {
        padding-bottom: 2vh;
    }
    
    .sticky-card {
        margin-bottom: 2rem;
    }
}

/* Mobile: más espacio lateral para sticky cards */
@media (max-width: 767px) {
    .sticky-stack-container {
        padding: 0 1rem;
    }
    
    .sticky-card {
        margin: 0 0.5rem 2rem;
    }
}

/* Asegurar que el hero pattern no cause problemas de performance */
.hero__pattern {
    will-change: transform;
}

/* Prevenir que el media frame cause problemas en mobile */
@media (max-width: 767px) {
    .media__frame {
        transform: none !important;
    }
}

/* Fallback: timeline items siempre visibles */
.timeline-step-v,
.step-v {
    opacity: 1 !important;
    transform: none !important;
    min-height: auto;
}

/* Prevenir que el tilt-3d cause problemas en mobile */
@media (max-width: 767px) {
    .tilt-3d {
        transform: none !important;
    }
    
    .tilt-3d:hover {
        transform: none !important;
    }
}

/* Asegurar que el body scroll se restaure al cerrar el menú */
body.menu-open {
    overflow: hidden;
}

/* Prevenir que el mobile overlay tape el botón de cerrar */
.mobile-overlay {
    z-index: 999;
}

.menu-close {
    z-index: 1001;
}

/* Asegurar que el menú mobile esté por encima del overlay */
.mobile-menu {
    z-index: 1000;
}

/* Prevenir que el header tape el contenido al hacer scroll */
.site-header {
    z-index: 100;
}

/* Asegurar que el main tenga padding top para el header */
main {
    padding-top: 0;
}

/* ==========================================================================
   100. UPGRADE GENERAL EXQUISITO
   ========================================================================== */

/* Espaciado coherente entre secciones en mobile */
@media (max-width: 767px) {
    section {
        margin-bottom: 2rem;
    }
    
    .bento-card,
    .value-card,
    .product-card,
    .post-card,
    .step__card,
    .step-v__content,
    .cta-card,
    .form-card {
        padding: 1.5rem;
    }
    
    .grid,
    .bento-grid,
    .article-grid,
    .contact-channels-grid,
    .faq-cta__grid,
    .editorial-layout,
    .editorial-grid {
        gap: 1rem;
    }
}

/* Fondos alternados para contraste */
.bg-white {
    background-color: var(--color-white);
}

/* Hover states en links y botones */
a:not(.btn):not(.nav__link):not(.mobile-nav__link):hover {
    color: var(--color-gold);
}

/* Focus states accesibles */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Active states en botones */
.btn:active {
    transform: scale(0.98);
}

/* Micro-interacciones en cards */
.bento-card,
.value-card,
.product-card,
.post-card,
.step__card,
.step-v__content,
.cta-card,
.form-card,
.contact-channel,
.mini-step {
    transition: all 0.3s var(--ease-smooth);
}

.bento-card:hover,
.value-card:hover,
.product-card:hover,
.post-card:hover,
.step__card:hover,
.step-v__content:hover,
.cta-card:hover,
.form-card:hover,
.contact-channel:hover,
.mini-step:hover {
    box-shadow: 0 20px 40px rgba(43, 30, 22, 0.12);
    transform: translateY(-4px);
}

/* Responsive: evitar overflow en flex/grid */
.flex-item,
.grid > *,
.bento-grid > *,
.article-grid > *,
.contact-channels-grid > *,
.footer-grid > *,
.timeline-grid > *,
.timeline-grid-vertical > * {
    min-width: 0;
}

/* Smooth transitions globales */
* {
    scroll-behavior: smooth;
}

/* Reduce motion para accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prevenir que el hero tenga demasiado padding top en mobile */
@media (max-width: 767px) {
    .hero {
        padding-top: 100px;
    }
}

/* Asegurar que el footer bottom tenga espacio para el FAB */
@media (max-width: 767px) {
    .footer-bottom {
        padding-bottom: 80px;
    }
}

/* Prevenir que el IG grid tenga imágenes deformadas */
.ig-grid img {
    aspect-ratio: 1;
    object-fit: cover;
}

/* Asegurar que el logo no se rompa en mobile */
@media (max-width: 359px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo__text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }
}

/* Prevenir que el nav__list se rompa en desktop pequeño */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav__list {
        gap: 1rem;
    }
    
    .nav__item:not(:first-child)::before {
        margin-right: 1rem;
    }
    
    .nav__link {
        font-size: 0.85rem;
    }
    
    .btn--gold {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Asegurar que el header actions no se rompa */
.header__actions {
    flex-shrink: 0;
}

/* Prevenir que el main nav ocupe demasiado espacio */
.main-nav {
    flex: 1;
    min-width: 0;
}

/* Asegurar que el nav__list no desborde */
.nav__list {
    flex-wrap: wrap;
    justify-content: center;
}

/* Prevenir que el site header se rompa en alturas muy bajas */
@media (max-height: 400px) {
    .site-header {
        position: relative;
        top: 0;
    }
    
    .hero {
        padding-top: 1rem;
    }
}

/* ==========================================================================
   99. MENÚ MOBILE - VISIBILIDAD
   ========================================================================== */
@media (max-width: 1025px) {
    .menu-toggle {
        display: flex;
    }
    .hidden-mobile {
        display: none !important;
    }
    .main-nav {
        display: none;
    }
}
