/**
 * ROOTS LIMA - NOCTA Style
 * Minimal Premium Fashion
 */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ========================================
   BRAND VARIABLES
   ======================================== */

:root {
    --accent-color: #442F77;
    --accent-soft: rgba(68, 47, 119, 0.25);
    --accent-glow: rgba(68, 47, 119, 0.15);
    --accent-dark: rgba(68, 47, 119, 0.08);
}

/* ========================================
   RESET & BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

#main-content,
#header-container,
#footer-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Logo conversion */
.logo, .footer-logo {
    filter: brightness(0) invert(1);
}

/* ========================================
   MOTION SYSTEM - NOCTA STYLE
   ======================================== */

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Scroll Reveal System */
body:not(.reveal-ready) .reveal {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-ready .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-ready .reveal:not(.reveal-visible):not(.hero) {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero always visible */
.hero {
    opacity: 1 !important;
    transform: none !important;
}

/* Image Hover Effects */
.product-image,
.service-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card:hover .product-image,
.service-item:hover .service-image {
    transform: scale(1.05);
}

/* CTA Premium - Base Styles */
.cta-premium {
    position: relative;
    padding: 16px 48px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cta-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-premium:hover {
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(68, 47, 119, 0.4),
        0 12px 32px rgba(255, 255, 255, 0.12);
    letter-spacing: 2.5px;
}

.cta-premium:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-premium:active {
    transform: translateY(-1px) scale(0.98);
}

/* Card Hover Lift */
.product-card,
.service-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card:hover,
.service-item:hover {
    transform: translateY(-4px);
}

/* Stagger Animation Delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }

/* Performance Optimizations */
.product-image-wrapper,
.service-image-container,
.gallery-item__frame {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========================================
   HEADER
   ======================================== */

/* ========================================
   HEADER - Premium Refinement
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 88px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.header--scrolled {
    height: 80px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 0 rgba(68, 47, 119, 0.08);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: min(1600px, 100%);
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    gap: 48px;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header--scrolled .header__logo {
    min-width: 38px;
    height: 38px;
}

.header__logo:hover {
    transform: translateX(-50%) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.header__logo .logo {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

.header__nav {
    display: flex;
    gap: 48px;
    align-items: center;
}

.header__nav--left {
    flex: 1;
    justify-content: flex-start;
}

.header__nav--right {
    flex: 1;
    justify-content: flex-end;
}

.nav__link {
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.nav__link:hover {
    opacity: 1;
    letter-spacing: 1.2px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%
    );
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* CTA Button - Enhanced Premium Presence */
.nav__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(68, 47, 119, 0.15);
    border: 1.5px solid var(--accent-color, #442F77);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(68, 47, 119, 0);
}

.nav__cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.nav__cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color, #442F77);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav__cta-btn:hover {
    background: rgba(68, 47, 119, 0.25);
    border-color: var(--accent-color, #442F77);
    box-shadow: 
        0 0 24px rgba(68, 47, 119, 0.5), 
        0 0 48px rgba(68, 47, 119, 0.25),
        inset 0 0 12px rgba(68, 47, 119, 0.3);
    transform: translateY(-2px);
    letter-spacing: 1.3px;
}

.nav__cta-btn:hover::before {
    left: 100%;
}

.nav__cta-btn:hover::after {
    opacity: 0.2;
}

.nav__cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hamburger - oculto por defecto */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    border-color: rgba(255,255,255,0.6);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9998;
    padding: 100px 24px 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#header-container.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.mobile-menu__close:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}

.mobile-menu__close svg {
    width: 24px;
    height: 24px;
}

#header-container.header--menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 320px;
    flex: 0 0 auto;
}

.mobile-menu__link {
    display: block;
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s, background 0.3s;
    flex-shrink: 0;
}

.mobile-menu__link:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.03);
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
    padding: 20px 32px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--accent-color, #442F77);
    background: rgba(68, 47, 119, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu__cta:hover {
    background: rgba(68, 47, 119, 0.4);
    border-color: rgba(68, 47, 119, 0.8);
}

/* Hamburger animado cuando abierto */
#header-container.header--menu-open .menu-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#header-container.header--menu-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

#header-container.header--menu-open .menu-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav__cta-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(68, 47, 119, 0.6));
}

.nav__cta-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: max(24px, env(safe-area-inset-right, 24px));
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* WhatsApp Tooltip */
.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: #000;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* ========================================
   HERO
   ======================================== */

/* ========================================
   HERO - Premium Refinement
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.02);
    object-fit: cover;
    pointer-events: none;
}

/* Cinematic Overlay System */
.hero__overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.50) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 2;
}

.hero__overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.50) 100%
    );
    z-index: 3;
}

.hero__overlay-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 4;
}

.hero__radial-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle at center,
        rgba(68, 47, 119, 0.08) 0%,
        transparent 60%
    );
    z-index: 5;
    pointer-events: none;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    max-width: 900px;
    padding: 60px 40px;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: none;
    max-width: 560px;
    line-height: 1.7;
}

.hero__title {
    font-size: 76px;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

/* CTA Wrapper */
.hero__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-cta {
    position: relative;
    padding: 18px 56px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover {
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(68, 47, 119, 0.5),
        0 0 80px rgba(68, 47, 119, 0.25),
        0 16px 48px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta:active {
    transform: translateY(-2px) scale(0.98);
}

/* Micro Proof */
.hero__micro-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.hero__micro-proof svg {
    width: 14px;
    height: 14px;
    color: #FFB800;
    filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.4));
}

.proof-divider {
    opacity: 0.3;
    margin: 0 2px;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero__scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-animation {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

/* Entry Animations */
.hero-animate-subtitle,
.hero-animate-title,
.hero-animate-cta {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-animate-subtitle.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-animate-title.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-animate-cta.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* ========================================
   SOCIAL PROOF
   ======================================== */

.social-proof {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
    overflow: hidden;
}

.social-proof__container {
    position: relative;
    max-width: min(1000px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
}

.social-proof__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

.rating-score {
    color: #fff;
    font-weight: 600;
}

.rating-divider {
    color: #333;
}

.social-proof__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1;
    color: #fff;
    transition: text-shadow 0.4s ease;
}

.stat-suffix {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1;
    color: #fff;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number-wrapper .stat-suffix {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    opacity: 0.85;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
    color: #888;
}

.stat-divider-wrapper {
    position: relative;
    width: 1px;
    height: 56px;
}

.stat-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(68, 47, 119, 0.3) 20%,
        rgba(68, 47, 119, 0.5) 50%,
        rgba(68, 47, 119, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(68, 47, 119, 0.2);
}

/* Luxury Conversion: stat microcopy */
.stat-microcopy {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: -4px;
}

/* Luxury Conversion: micro-CTA */
.social-proof__micro-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.micro-cta__text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.micro-cta__btn {
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.micro-cta__btn:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(68, 47, 119, 0.3);
}

/* ========================================
   QUICK SERVICES
   ======================================== */

.quick-services {
    width: 100%;
    background: #000;
    padding: 100px 0 120px;
}

.quick-services__container {
    max-width: min(1400px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
}

.quick-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.quick-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1/1.2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-service-card:hover {
    transform: scale(1.05);
}

.quick-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0.7) 75%, 
        rgba(0, 0, 0, 0.9) 100%);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.quick-service-card:hover .quick-service-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 40%, 
        rgba(0, 0, 0, 0.8) 75%, 
        rgba(0, 0, 0, 0.95) 100%);
}

.quick-service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px 32px;
    gap: 12px;
}

.quick-service-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1.1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-service-card:hover .quick-service-title {
    transform: translateY(-2px);
}

.quick-service-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.quick-service-card:hover .quick-service-desc {
    color: #fff;
}

.quick-service-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 4px;
}

.quick-service-card:hover .quick-service-link {
    color: #442F77;
}

/* ========================================
   CTA INTERMEDIATE
   ======================================== */

.cta-intermediate {
    width: 100%;
    background: #000;
    padding: 120px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.cta-intermediate__container {
    max-width: min(800px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.cta-intermediate__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(68, 47, 119, 0.1);
    border: 1px solid rgba(68, 47, 119, 0.3);
    border-radius: 20px;
    margin-bottom: 32px;
    color: var(--accent-color, #442F77);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-intermediate__badge svg {
    width: 14px;
    height: 14px;
}

.cta-intermediate__title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-intermediate__subtitle {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 48px;
}

.cta-intermediate__notice {
    margin-top: 24px;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

/* ========================================
   PRODUCTS
   ======================================== */

.products {
    width: 100%;
    background: #000;
    padding: 80px 0;
}

.products__header {
    max-width: min(1400px, calc(100% - 120px));
    margin: 0 auto 56px;
    padding: 0 60px;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card--visible {
    opacity: 1;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #0a0a0a;
    margin-bottom: 12px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.4s;
    z-index: 2;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-card:hover .product-overlay {
    background: rgba(0,0,0,0.2);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 0 12px 20px;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
}

.product-price {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #333;
    color: #999;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(8px);
}

.product-card:hover .product-whatsapp-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
}

.product-whatsapp-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.product-whatsapp-btn:hover svg {
    transform: scale(1.1);
}


/* ========================================
   SERVICES
   ======================================== */

.services {
    width: 100%;
    background: #000;
    padding: 120px 0 140px;
}

.services__header {
    max-width: min(1400px, calc(100% - 120px));
    margin: 0 auto 100px;
    padding: 0 60px;
    text-align: center;
}

.services__guide {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.services__trust {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: min(1400px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
}

.service-item {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out backwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }

.service-item--visible {
    opacity: 1;
}

/* Luxury Conversion: servicio principal prioridad visual */
.service-item--primary {
    transform: scale(1.02);
}

.service-item--primary .service-image-container {
    box-shadow: 0 0 0 1px rgba(68, 47, 119, 0.2),
                0 0 60px rgba(68, 47, 119, 0.12);
}

.service-item--primary .service-name {
    color: #fff;
    text-shadow: 0 0 24px rgba(68, 47, 119, 0.25);
}

.service-item--primary:hover {
    transform: scale(1.03) translateY(-4px);
}

.service-item--primary:hover .service-image-container {
    box-shadow: 0 0 0 1px rgba(68, 47, 119, 0.35),
                0 0 80px rgba(68, 47, 119, 0.2);
}

/* Badge "Más solicitado" */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* Servicios secundarios: menor prominencia */
.service-item--secondary {
    transform: scale(0.98);
    opacity: 0.95;
}

.service-item--secondary .service-name {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
}

.service-item--secondary .service-description {
    color: rgba(255, 255, 255, 0.7);
}

.service-item--secondary:hover {
    transform: scale(0.99) translateY(-4px);
    opacity: 1;
}

.service-item--secondary:hover .service-name {
    color: #fff;
}

.service-item--secondary.service-item--visible {
    opacity: 0.95;
}

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4.5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover .service-image-container {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0.65) 75%, 
        rgba(0, 0, 0, 0.85) 100%);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.service-item:hover .service-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 40%, 
        rgba(0, 0, 0, 0.75) 75%, 
        rgba(0, 0, 0, 0.92) 100%);
}

.service-text-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 50px 40px 40px;
}

.service-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover .service-name {
    transform: translateY(-4px);
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
}

.service-item:hover .service-description {
    color: #fff;
}

.service-cta {
    align-self: flex-start;
    padding: 10px 28px;
    text-decoration: none;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #442F77;
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cta:hover::before {
    left: 0;
}

.service-cta:hover {
    color: #fff;
    border-color: #442F77;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 47, 119, 0.3);
}

/* ========================================
   GALLERY - Estructura internacional
   ======================================== */

.gallery {
    width: 100%;
    padding: 120px 0 140px;
}

.gallery__header {
    max-width: min(900px, calc(100% - 120px));
    margin: 0 auto 80px;
    padding: 0 60px;
    text-align: center;
}

.gallery__eyebrow {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.gallery__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.gallery__subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.gallery__cta {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__cta:hover {
    color: #fff;
    letter-spacing: 1.3px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    max-width: min(1440px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
    height: 360px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: galleryFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }

.gallery-item--visible {
    opacity: 1;
}

@keyframes galleryFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.gallery-item__frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.gallery-item__number {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-item__title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item__meta {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    width: 100%;
    padding: 120px 0 140px;
    overflow: hidden;
}

.testimonials__header {
    max-width: 720px;
    margin: 0 auto 64px;
    padding: 0 60px;
    text-align: center;
}

.testimonials__eyebrow {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.testimonials__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #fff;
}

.testimonials__slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    min-height: 400px;
}

.testimonials__track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    max-width: 700px;
}

.quote-icon {
    font-size: 120px;
    line-height: 1;
    color: #333;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.testimonial-quote {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: #fff;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.author-role {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot:hover {
    background: #666;
    transform: scale(1.2);
}

.dot--active {
    background: #fff;
    transform: scale(1.3);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    width: 100%;
    padding: 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cta-section.section-atmosphere {
    background: none;
}

.cta-section__container {
    max-width: min(720px, calc(100% - 120px));
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-section__eyebrow {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cta-section__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

.cta-section__subtitle {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-section__button {
    margin-top: 8px;
    text-decoration: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 100px 0 40px;
}

.footer__container {
    max-width: min(1400px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer__logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}

.footer__links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 280px));
    gap: 80px;
    max-width: min(1200px, calc(100% - 120px));
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    justify-content: center;
    align-items: start;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    width: 100%;
}

.footer__column:last-child {
    align-items: center;
    justify-content: center;
}

.footer__heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    width: 100%;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer__link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #fff;
}

.footer__link--social {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.newsletter-description {
    font-size: 13px;
    color: #666;
    text-align: center;
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 10px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s;
    text-align: center;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    border-color: #666;
}

.newsletter-button {
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
}

.newsletter-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Footer Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}

.contact-value {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.contact-value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer__copyright {
    font-size: 12px;
    color: #666;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.separator {
    color: #333;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========================================
   ACCENT COLOR SYSTEM
   ======================================== */

/* Navigation Links */
.nav-item {
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover::after {
    width: 100%;
}

/* CTA Premium Glow */
.cta-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cta-premium:hover::after {
    opacity: 1;
}

.cta-premium:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Product Cards Accent */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 70%);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-wrapper::before {
    opacity: 1;
}

/* Service Items Border */
.service-image-container {
    position: relative;
}

.service-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-soft);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.service-item:hover .service-image-container::after {
    opacity: 1;
}

/* Testimonials Accent Stripe */
.testimonial-slide {
    position: relative;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation Dots */
.dot {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot--active {
    background: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-glow);
}

.dot:hover {
    border-color: var(--accent-color);
}

/* Focus Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Scroll Indicator */
.hero__scroll-indicator .scroll-animation {
    box-shadow: 0 0 8px var(--accent-glow);
}

/* Footer Links */
.footer-link {
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Section Titles Accent */
.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin-top: 16px;
    opacity: 0.3;
}

/* ========================================
   ATMOSPHERE SYSTEM - Cinematographic Premium
   NOCTA-inspired editorial depth
   ======================================== */

.section-atmosphere {
    --atmo-accent: rgba(68, 47, 119, 0.12);
    --atmo-accent-soft: rgba(68, 47, 119, 0.06);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Layer 1: Editorial background image - cinematic treatment */
.section-atmosphere::before {
    content: '';
    position: absolute;
    inset: -2%;
    background-image: var(--atmo-image);
    background-size: cover;
    background-position: var(--atmo-position, center);
    background-repeat: no-repeat;
    filter: grayscale(0.4) brightness(0.42) contrast(1.1) saturate(0.7) blur(0.4px);
    transform: scale(1.05);
    transform-origin: center;
    z-index: 0;
}

/* Layer 2: Dark overlay - legibilidad + imagen visible */
.section-atmosphere::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Overlay oscuro - imagen más discreta */
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.55) 30%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.75) 100%
        ),
        /* Vignette sutil en bordes */
        radial-gradient(
            ellipse 120% 120% at 50% 50%,
            transparent 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        /* Acento #442F77 */
        radial-gradient(
            ellipse 80% 60% at var(--atmo-glow-x, 50%) var(--atmo-glow-y, 30%),
            var(--atmo-accent) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 60% 80% at var(--atmo-glow-x-2, 80%) var(--atmo-glow-y-2, 70%),
            var(--atmo-accent-soft) 0%,
            transparent 50%
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -70px 70px rgba(0, 0, 0, 0.3),
        inset 0 0 150px rgba(0, 0, 0, 0.18);
    z-index: 1;
    pointer-events: none;
}

.section-atmosphere > * {
    position: relative;
    z-index: 2;
}

/* Services */
.atmosphere-services {
    --atmo-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=2400&q=90');
    --atmo-position: center 40%;
}

/* Social Proof */
.atmosphere-social-proof {
    --atmo-image: url('https://images.unsplash.com/photo-1595152772835-219674b2a8a6?w=2400&q=90');
    --atmo-position: center 50%;
}

/* Gallery */
.atmosphere-gallery {
    --atmo-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=2400&q=90');
    --atmo-position: center 30%;
    --atmo-glow-x: 20%;
    --atmo-glow-y: 20%;
}

/* CTA Intermediate */
.atmosphere-cta {
    --atmo-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=2400&q=90');
    --atmo-position: center 50%;
    --atmo-glow-x: 70%;
    --atmo-glow-y: 40%;
}

/* Testimonials */
.atmosphere-testimonials {
    --atmo-image: url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?w=2400&q=90');
    --atmo-position: center 60%;
}

/* CTA Final */
.atmosphere-cta-final {
    --atmo-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=2400&q=90');
    --atmo-position: center 40%;
    --atmo-glow-x: 80%;
    --atmo-glow-y: 30%;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .header__container,
    .products__header,
    .products__grid,
    .services__header,
    .services__grid,
    .gallery__header,
    .gallery__grid,
    .testimonials__header,
    .testimonials__slider,
    .testimonials__content,
    .footer__container {
        padding: 0 40px;
    }

    /* Header - Tablet Refinement */
    .header {
        height: 80px;
    }

    .header--scrolled {
        height: 72px;
    }

    .header__container {
        gap: 40px;
    }

    .header__nav { 
        gap: 32px; 
    }

    .header__logo { 
        min-width: 38px;
        height: 38px;
    }

    .header--scrolled .header__logo {
        min-width: 34px;
        height: 34px;
    }

    .nav__link {
        font-size: 10px;
        letter-spacing: 0.9px;
    }

    /* CTA Button - Maintain premium presence */
    .nav__cta-btn {
        padding: 11px 24px;
        gap: 9px;
    }

    .nav__cta-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Hero - Tablet */
    .hero {
        margin-top: 80px;
    }

    .hero__content {
        gap: 48px;
        padding: 48px 32px;
    }

    .hero__text {
        gap: 28px;
    }

    .hero__title { 
        font-size: 56px;
        letter-spacing: -2px;
    }

    .hero__subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-cta {
        padding: 16px 48px;
        font-size: 11px;
    }

    .hero__micro-proof {
        font-size: 10px;
    }

    .section-title { font-size: 40px; }

    /* Social Proof - Tablet */
    .social-proof {
        padding: 80px 0 100px;
    }

    .social-proof__container {
        padding: 0 40px;
    }

    .social-proof__rating {
        margin-bottom: 60px;
    }

    .social-proof__stats {
        gap: 60px;
    }

    .stat-number {
        font-size: 56px;
        letter-spacing: -1.5px;
    }

    .stat-suffix {
        font-size: 56px;
        letter-spacing: -1.5px;
    }

    .stat-number-wrapper .stat-suffix {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .stat-divider-wrapper {
        height: 48px;
    }

    .stat-divider {
        height: 36px;
    }

    /* Quick Services - Tablet */
    .quick-services__container {
        padding: 0 40px;
    }

    .quick-services__grid {
        gap: 20px;
    }

    .quick-service-card {
        aspect-ratio: 1/1.3;
    }

    .quick-service-content {
        padding: 36px 28px 28px;
        gap: 10px;
    }

    .quick-service-title {
        font-size: 20px;
    }

    .quick-service-desc {
        font-size: 12px;
    }

    /* CTA Intermediate */
    .cta-intermediate__container {
        padding: 0 40px;
    }

    .cta-intermediate__title {
        font-size: 48px;
    }

    /* Services - Tablet */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-name {
        font-size: 20px;
    }

    .service-description {
        font-size: 13px;
    }

    .products__grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        height: 300px;
    }
    .footer__links-grid {
        grid-template-columns: repeat(3, 270px);
        gap: 60px;
        padding: 40px 40px;
        justify-content: center;
    }

    .cta-section {
        padding: 100px 40px;
    }

    .cta-section__title {
        font-size: 48px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before,
    .whatsapp-float::after {
        font-size: 12px;
        padding: 8px 14px;
        right: 72px;
    }

    .whatsapp-float::after {
        right: 64px;
    }
}

@media (max-width: 768px) {
    .section-atmosphere::before {
        inset: 0;
        transform: scale(1.02);
    }

    .header__container,
    .products__header,
    .products__grid,
    .services__header,
    .services__grid,
    .gallery__header,
    .gallery__grid,
    .testimonials__header,
    .testimonials__slider,
    .testimonials__content,
    .footer__container {
        padding: 0 24px;
    }

    /* Header - Menú hamburguesa móvil */
    .header {
        height: 72px;
    }

    .header--scrolled {
        height: 68px;
    }

    .header__container {
        gap: 16px;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        order: -1;
    }

    .header__nav {
        display: none !important;
    }

    .header__container::after {
        content: '';
        width: 44px;
        height: 44px;
    }

    .header__logo { 
        min-width: 36px;
        height: 36px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header--scrolled .header__logo {
        min-width: 34px;
        height: 34px;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero - Mobile */
    .hero { 
        margin-top: 72px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__content {
        gap: 36px;
        padding: 48px 24px 32px;
    }

    .hero__text {
        gap: 28px;
    }

    .hero__title { 
        font-size: 44px;
        letter-spacing: -1.5px;
        line-height: 1.05;
    }

    .hero__subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        max-width: 100%;
        line-height: 1.7;
    }

    .hero-cta {
        padding: 18px 48px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero__micro-proof {
        font-size: 10px;
        gap: 8px;
    }

    .hero__micro-proof svg {
        width: 13px;
        height: 13px;
    }

    .hero__scroll-indicator {
        bottom: 36px;
    }

    .section-title { font-size: 34px; }

    /* Social Proof - Mobile */
    .social-proof {
        padding: 60px 0 80px;
    }

    .social-proof__container {
        padding: 0 24px;
    }

    .social-proof__rating {
        margin-bottom: 48px;
    }

    .social-proof__stats {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .stat-suffix {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .stat-number-wrapper .stat-suffix {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .stat-divider-wrapper {
        display: none;
    }

    .social-proof__micro-cta {
        margin-top: 40px;
    }

    .stat-microcopy {
        font-size: 10px;
    }

    /* Quick Services - Mobile */
    .quick-services {
        padding: 80px 0 100px;
    }

    .quick-services__container {
        padding: 0 24px;
    }

    .quick-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-service-card {
        aspect-ratio: 1/1.4;
    }

    .quick-service-content {
        padding: 32px 24px 24px;
        gap: 8px;
    }

    .quick-service-title {
        font-size: 18px;
    }

    .quick-service-desc {
        font-size: 12px;
    }

    /* CTA Intermediate */
    .cta-intermediate {
        padding: 80px 0;
    }

    .cta-intermediate__container {
        padding: 0 24px;
    }

    .cta-intermediate {
        padding: 72px 0;
    }

    .cta-intermediate__title {
        font-size: 38px;
        line-height: 1.15;
    }

    .cta-intermediate__subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonials {
        padding: 80px 0 100px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    /* Services - Mobile */
    .services {
        padding: 80px 0 100px;
    }

    .services__header {
        margin-bottom: 56px;
    }

    .services__guide {
        font-size: 12px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
    }

    .service-item--primary {
        transform: none;
    }

    .service-item--primary:hover {
        transform: translateY(-4px);
    }

    .service-item--secondary {
        transform: none;
        opacity: 1;
    }

    .service-item--secondary:hover {
        transform: translateY(-4px);
    }

    .service-badge {
        font-size: 8px;
        padding: 5px 10px;
        top: 16px;
        right: 16px;
    }

    .gallery__cta {
        margin-top: 16px;
        font-size: 11px;
    }

    .service-image-container {
        aspect-ratio: 3/5;
    }

    .service-name {
        font-size: 18px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-text-wrapper {
        padding: 40px 32px 32px;
        gap: 14px;
    }

    .service-cta {
        padding: 9px 24px;
        font-size: 10px;
    }

    .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .gallery {
        padding: 80px 0 100px;
    }

    .gallery__header {
        margin-bottom: 56px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 420px;
        gap: 6px;
    }

    .gallery-item:nth-child(5) {
        grid-column: 1 / -1;
    }

    .footer__links-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px;
        max-width: 100%;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .cta-section__title {
        font-size: 36px;
    }

    .cta-section__subtitle {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: max(16px, env(safe-area-inset-right, 16px));
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    /* Product WhatsApp always visible on mobile */
    .product-whatsapp-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .header__container,
    .products__header,
    .products__grid,
    .services__header,
    .services__grid,
    .gallery__header,
    .gallery__grid,
    .testimonials__header,
    .testimonials__slider,
    .testimonials__content,
    .footer__container {
        padding: 0 16px;
    }

    /* Hero - Small Mobile */
    .hero { 
        margin-top: 68px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__content {
        gap: 32px;
        padding: 40px 20px 28px;
    }

    .hero__text {
        gap: 24px;
    }

    .hero__title { 
        font-size: 36px;
        letter-spacing: -1px;
        line-height: 1.08;
    }

    .hero__subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        max-width: 100%;
        line-height: 1.7;
    }

    .hero-cta {
        padding: 16px 44px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero__micro-proof {
        font-size: 9px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__micro-proof svg {
        width: 12px;
        height: 12px;
    }

    .hero__scroll-indicator {
        bottom: 28px;
    }

    .section-title { font-size: 28px; }

    /* Header - Small Mobile */
    .header {
        height: 68px;
    }

    .header--scrolled {
        height: 64px;
    }

    .header__container {
        padding: 0 16px;
    }

    .header__logo { 
        min-width: 32px;
        height: 32px;
    }

    .header--scrolled .header__logo {
        min-width: 30px;
        height: 30px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle__line {
        width: 18px;
    }

    /* Social Proof - Small Mobile */
    .social-proof {
        padding: 48px 0 60px;
    }

    .social-proof__container {
        padding: 0 16px;
    }

    .social-proof__rating {
        margin-bottom: 40px;
        gap: 10px;
    }

    .rating-stars svg {
        width: 16px;
        height: 16px;
    }

    .rating-details {
        font-size: 11px;
    }

    .social-proof__stats {
        flex-direction: column;
        gap: 32px;
    }

    .stat-number {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .stat-suffix {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .stat-number-wrapper .stat-suffix {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .stat-divider-wrapper {
        display: none;
    }

    .social-proof__micro-cta {
        margin-top: 32px;
    }

    .micro-cta__btn {
        padding: 10px 28px;
        font-size: 10px;
    }

    /* Services - Small Mobile */
    .services {
        padding: 80px 0 100px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }

    .service-image-container {
        aspect-ratio: 3/5.5;
    }

    .service-name {
        font-size: 16px;
    }

    .service-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .service-text-wrapper {
        padding: 36px 28px 28px;
        gap: 12px;
    }

    .service-cta {
        padding: 8px 20px;
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Quick Services - Small Mobile */
    .quick-services {
        padding: 60px 0 80px;
    }

    .quick-services__container {
        padding: 0 16px;
    }

    .quick-services__grid {
        gap: 12px;
    }

    .quick-service-card {
        aspect-ratio: 1/1.5;
    }

    .quick-service-content {
        padding: 28px 20px 20px;
        gap: 8px;
    }

    .quick-service-title {
        font-size: 16px;
    }

    .quick-service-desc {
        font-size: 11px;
    }

    .quick-service-link {
        font-size: 10px;
    }

    /* CTA Intermediate */
    .cta-intermediate {
        padding: 60px 0;
    }

    .cta-intermediate__container {
        padding: 0 16px;
    }

    .cta-intermediate__title {
        font-size: 28px;
    }

    .cta-intermediate__subtitle {
        font-size: 13px;
    }

    .cta-intermediate__badge {
        font-size: 9px;
        padding: 6px 12px;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery {
        padding: 64px 0 80px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        height: 520px;
        gap: 6px;
    }

    .gallery-item:nth-child(5) {
        grid-column: 1;
    }

    .footer__links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        padding: 36px 16px;
    }

    .footer__column:last-child {
        max-width: 100%;
    }

    .cta-section {
        padding: 64px 16px;
    }

    .cta-section__title {
        font-size: 28px;
    }

    .cta-section__subtitle {
        font-size: 13px;
    }

    .mobile-menu {
        padding: 96px 20px 40px;
    }

    .mobile-menu__close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .mobile-menu__nav {
        max-width: 100%;
    }

    .mobile-menu__link {
        font-size: 15px;
        padding: 18px 20px;
    }

    .mobile-menu__cta {
        margin-top: 16px;
        padding: 18px 24px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 12px;
        right: max(16px, env(safe-area-inset-right, 16px));
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    /* Product WhatsApp button adjustments */
    .product-whatsapp-btn {
        padding: 6px 12px;
        font-size: 10px;
        gap: 4px;
    }

    .product-whatsapp-btn svg {
        width: 12px;
        height: 12px;
    }
}

/* ========================================
   HERO - IMAGEN LOCAL (reemplaza iframe YouTube)
   ======================================== */

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}

.hero.loaded .hero__bg-image {
    transform: scale(1);
}

/* ========================================
   HERO - TRUST BADGE (ubicación + rating)
   ======================================== */

.hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__trust-badge.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge__location,
.trust-badge__rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.trust-badge__divider {
    opacity: 0.35;
}

/* ========================================
   HERO - CTA DUAL
   ======================================== */

.hero__cta-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta--primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: #000;
    border: 1.5px solid #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-cta--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta--primary:hover {
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(68, 47, 119, 0.45), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-cta--primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta__icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-cta--secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-cta--secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.07);
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta--secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}

.hero-cta--secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta--secondary svg {
    transition: transform 0.3s ease;
}

.hero-cta--secondary:hover svg {
    transform: translateX(4px);
}

/* ========================================
   HERO - PROOF STRIP (bajo los CTAs)
   ======================================== */

.hero__proof-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__proof-strip.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.proof-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.proof-item svg {
    color: rgba(68, 47, 119, 0.9);
    flex-shrink: 0;
}

/* animate-badge también hereda de hero-animate-* */
.hero-animate-badge,
.hero-animate-proof {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-animate-badge.hero-animate-in,
.hero-animate-proof.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SERVICES - MEJORAS (meta + precio + free consult)
   ======================================== */

.services__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.services__trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
    letter-spacing: 0.5px;
}

.trust-sep {
    opacity: 0.3;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.service-price {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 2px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 11px;
    padding: 10px 20px;
}

/* Bloque consulta gratis debajo del grid */
.services__free-consult {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.free-consult__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.free-consult__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.free-consult__btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.free-consult__note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

/* ========================================
   GALLERY - MEJORAS (tag + bottom cta)
   ======================================== */

.gallery-item__tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.gallery__bottom-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    text-align: center;
}

.gallery__bottom-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

/* ========================================
   FAQ - SECCIÓN COMPLETA
   ======================================== */

.faq {
    padding: 100px 0 120px;
    position: relative;
}

.faq__container {
    max-width: min(760px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
}

.faq__header {
    text-align: center;
    margin-bottom: 64px;
}

.faq__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.faq__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.faq__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
}

.faq__question:hover {
    color: #fff;
}

.faq__icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

.faq__item--open .faq__icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq__item--open .faq__question {
    color: #fff;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2px;
}

.faq__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 64px;
    text-align: center;
}

.faq__cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE - Nuevos componentes
   ======================================== */

@media (max-width: 768px) {
    .hero__cta-wrapper {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta--primary,
    .hero-cta--secondary {
        width: 100%;
        justify-content: center;
    }

    .hero__trust-badge {
        font-size: 9px;
        padding: 6px 14px;
        gap: 7px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__proof-strip {
        gap: 8px;
    }

    .proof-item {
        font-size: 9px;
    }

    .faq__container {
        max-width: 100%;
        padding: 0 20px;
    }

    .faq__title {
        font-size: 28px;
        letter-spacing: -0.8px;
    }

    .faq__question {
        font-size: 14px;
        padding: 20px 0;
    }

    .services__trust-bar {
        flex-direction: column;
        gap: 6px;
    }

    .trust-sep {
        display: none;
    }

    .services__free-consult {
        padding: 32px 20px;
    }

    .gallery__bottom-cta {
        padding: 0 20px;
    }

    .faq {
        padding: 64px 0 80px;
    }
}

@media (max-width: 480px) {
    .hero__trust-badge {
        font-size: 8px;
        padding: 5px 12px;
        gap: 5px;
    }

    .faq__title {
        font-size: 24px;
    }

    .faq__question {
        font-size: 13px;
    }

    .services__free-consult {
        margin-top: 40px;
    }
}

/* ========================================================
   PÁGINAS INTERNAS — SISTEMA DE DISEÑO COMPARTIDO
   ======================================================== */

/* ----------------------------------------
   PAGE HERO — Hero corto para páginas internas
   ---------------------------------------- */

.page-hero {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 520px;
    margin-top: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero--short {
    height: 60vh;
    min-height: 440px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
    z-index: 1;
}

.loaded .page-hero__bg {
    transform: scale(1);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 2;
}

.page-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 820px;
    padding: 40px 40px;
    animation: fadeInUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
}

.page-hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.page-hero__title {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.page-hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 560px;
    letter-spacing: 0.2px;
}

.page-hero__cta {
    margin-top: 8px;
    gap: 10px;
}

.page-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 14px 28px;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-hero__cta-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.page-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.page-hero__scroll span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ----------------------------------------
   PAGE CTA — Sección CTA final compartida
   ---------------------------------------- */

.page-cta {
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.page-cta--dark {
    background: rgba(68,47,119,0.06);
    border-top: 1px solid rgba(68,47,119,0.15);
    border-bottom: 1px solid rgba(68,47,119,0.15);
}

.page-cta__container {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-cta__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.page-cta__title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1.1;
}

.page-cta__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    line-height: 1.7;
}

.page-cta__btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
}

/* ----------------------------------------
   NOSOTROS — Stats bar
   ---------------------------------------- */

.about-stats {
    padding: 56px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-stats__container {
    max-width: min(960px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.about-stat__number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1;
}

.about-stat__suffix {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-stat__stars {
    font-size: 20px;
    color: #FFB800;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.about-stat__divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ----------------------------------------
   NOSOTROS — About blocks (historia, filosofía)
   ---------------------------------------- */

.about-block {
    padding: 100px 0;
}

.about-block--alt {
    background: rgba(255,255,255,0.015);
}

.about-block__container {
    max-width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
}

.about-block__grid {
    display: grid;
    gap: 80px;
    align-items: center;
}

.about-block__grid--img-left {
    grid-template-columns: 1fr 1fr;
}

.about-block__grid--img-right {
    grid-template-columns: 1fr 1fr;
}

.about-block__grid--img-right .about-block__text {
    order: 1;
}

.about-block__grid--img-right .about-block__image-wrap {
    order: 2;
}

.about-block__image-wrap {
    position: relative;
    overflow: hidden;
}

.about-block__image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.about-block__image-wrap:hover .about-block__image {
    transform: scale(1.04);
}

.about-block__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(68,47,119,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-block__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-block__title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 28px;
}

.about-block__body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.about-block__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-tag {
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.about-quote {
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 2px solid var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    line-height: 1.6;
    background: rgba(68,47,119,0.06);
}

/* ----------------------------------------
   NOSOTROS — Valores
   ---------------------------------------- */

.about-values {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-values__container {
    max-width: min(1100px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-values__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.about-values__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 64px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.about-value-card {
    padding: 48px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.01);
}

.about-value-card:hover {
    background: rgba(68,47,119,0.08);
    border-color: rgba(68,47,119,0.3);
    transform: translateY(-4px);
}

.about-value-card__icon {
    color: var(--accent-color);
    margin-bottom: 24px;
    opacity: 0.8;
}

.about-value-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.about-value-card__text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

/* ----------------------------------------
   NOSOTROS — Proceso en pasos
   ---------------------------------------- */

.about-process {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-process__container {
    max-width: min(900px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-process__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.about-process__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 64px;
}

.about-process__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.process-step {
    flex: 1;
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(68,47,119,0.3);
    background: rgba(68,47,119,0.06);
}

.process-step__number {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -2px;
    color: rgba(68,47,119,0.6);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.process-step__text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.process-step__arrow {
    font-size: 24px;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ----------------------------------------
   NOSOTROS — Gallery preview
   ---------------------------------------- */

.about-gallery-preview {
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-gallery-preview__container {
    max-width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-gallery-preview__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.about-gallery-preview__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 48px;
}

.about-gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 40px;
}

.about-gallery-preview__item {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.about-gallery-preview__item:hover img {
    transform: scale(1.06);
}

.about-gallery-preview__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 4px;
}

.about-gallery-preview__link:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.5);
}

/* ----------------------------------------
   TRABAJOS — Portfolio intro stats
   ---------------------------------------- */

.portfolio-intro {
    padding: 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.portfolio-intro__container {
    max-width: min(800px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.portfolio-intro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pi-number {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1;
}

.pi-number sup {
    font-size: 20px;
    vertical-align: super;
}

.pi-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.portfolio-intro__divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ----------------------------------------
   TRABAJOS — Portfolio grid masonry
   ---------------------------------------- */

.portfolio-section {
    padding: 80px 0 100px;
}

.portfolio-section__header {
    max-width: min(700px, calc(100% - 80px));
    margin: 0 auto 56px;
    padding: 0 40px;
    text-align: center;
}

.portfolio-section__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.portfolio-section__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 12px;
}

.portfolio-section__subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item--large {
    grid-column: span 1;
    aspect-ratio: 4/5;
}

.portfolio-item__frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0,0,0,0.85) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-item__img {
    transform: scale(1.06);
}

.portfolio-item__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.portfolio-item__tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3px 8px;
    width: fit-content;
}

.portfolio-item__title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.portfolio-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.portfolio-item__cta:hover {
    color: #fff;
}

/* ----------------------------------------
   CONTACTO / RESERVAS — 3 pasos
   ---------------------------------------- */

.reservas-steps {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reservas-steps__container {
    max-width: min(1000px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reservas-steps__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.reservas-steps__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 64px;
}

.reservas-steps__grid {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.rstep {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.rstep:hover {
    border-color: rgba(68,47,119,0.3);
    background: rgba(68,47,119,0.05);
    transform: translateY(-4px);
}

.rstep__number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.rstep__icon {
    color: rgba(255,255,255,0.5);
}

.rstep__title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.rstep__text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.rstep__link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.rstep__link:hover { opacity: 0.7; }

.rstep__connector {
    font-size: 20px;
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
    margin-top: 80px;
}

/* ----------------------------------------
   CONTACTO / RESERVAS — WhatsApp CTA grande
   ---------------------------------------- */

.reservas-wa {
    padding: 100px 40px;
    text-align: center;
    background: rgba(68,47,119,0.06);
    border-top: 1px solid rgba(68,47,119,0.12);
    border-bottom: 1px solid rgba(68,47,119,0.12);
}

.reservas-wa__container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reservas-wa__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(68,47,119,0.15);
    border: 1px solid rgba(68,47,119,0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.reservas-wa__title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1.1;
}

.reservas-wa__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 460px;
}

.reservas-wa__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.reservas-wa__btn:hover {
    background: #1ebc59;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.3);
}

.reservas-wa__note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ----------------------------------------
   CONTACTO / RESERVAS — Info + Formulario
   ---------------------------------------- */

.reservas-content {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reservas-content__container {
    max-width: min(1100px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.reservas-info__title,
.reservas-form__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 40px;
}

.reservas-form__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-top: -28px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.rinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rinfo-item__icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.rinfo-item__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}

.rinfo-item__value {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.rinfo-item__value--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.rinfo-item__value--link:hover {
    color: #fff;
}

.rinfo-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}

.rinfo-trust__badge {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.3px;
}

/* FORMULARIO */
.rform {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rform__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rform__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.rform__input {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.rform__input::placeholder {
    color: rgba(255,255,255,0.2);
}

.rform__input:focus,
.rform__input--focus {
    border-color: rgba(68,47,119,0.6);
}

.rform__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    background-color: transparent;
    color: rgba(255,255,255,0.6);
}

.rform__select option {
    background: #0a0a0a;
    color: #fff;
}

.rform__textarea {
    resize: vertical;
    min-height: 120px;
}

.rform__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: #25D366;
    color: #fff;
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rform__submit:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

/* ----------------------------------------
   CONTACTO — Mapa
   ---------------------------------------- */

.reservas-map {
    padding-bottom: 0;
}

.reservas-map__header {
    text-align: center;
    padding: 60px 40px 40px;
}

.reservas-map__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 8px;
}

.reservas-map__subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.reservas-map__frame {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    filter: grayscale(80%) invert(90%) brightness(0.7);
}

/* ----------------------------------------
   TIENDA — Benefits bar
   ---------------------------------------- */

.tienda-benefits {
    padding: 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tienda-benefits__container {
    max-width: min(960px, calc(100% - 80px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.tienda-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

.tienda-benefit svg {
    color: var(--accent-color);
    flex-shrink: 0;
    opacity: 0.8;
}

.tienda-benefit__sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
}

/* ========================================================
   RESPONSIVE — Páginas internas
   ======================================================== */

@media (max-width: 1024px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 65vh;
        margin-top: 70px;
    }

    .page-hero--short {
        height: 55vh;
    }

    .page-hero__title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .page-hero__subtitle {
        font-size: 14px;
    }

    .page-hero__content {
        padding: 20px;
        gap: 16px;
    }

    .about-stats__container {
        gap: 24px;
        flex-wrap: wrap;
    }

    .about-stat__number {
        font-size: 36px;
    }

    .about-stat__divider {
        display: none;
    }

    .about-block__grid--img-left,
    .about-block__grid--img-right {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-block__grid--img-right .about-block__text { order: 1; }
    .about-block__grid--img-right .about-block__image-wrap { order: 2; }

    .about-block__image {
        height: 320px;
    }

    .about-block__title {
        font-size: 28px;
    }

    .about-values__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-process__steps {
        flex-direction: column;
        gap: 16px;
    }

    .process-step__arrow {
        transform: rotate(90deg);
    }

    .about-gallery-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta__title {
        font-size: 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        padding: 0 16px;
        gap: 4px;
    }

    .portfolio-intro__container {
        gap: 24px;
        flex-wrap: wrap;
    }

    .portfolio-intro__divider {
        display: none;
    }

    .reservas-steps__grid {
        flex-direction: column;
    }

    .rstep__connector {
        transform: rotate(90deg);
        margin-top: 0;
        align-self: center;
    }

    .reservas-content__container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .reservas-wa__title {
        font-size: 28px;
    }

    .reservas-wa__btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .tienda-benefits__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .tienda-benefit__sep { display: none; }

    .about-block__container,
    .about-values__container,
    .about-process__container {
        max-width: 100%;
        padding: 0 20px;
    }

    .reservas-steps__container,
    .reservas-content__container,
    .portfolio-section__header,
    .portfolio-intro__container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-hero__title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 12px;
        gap: 4px;
    }

    .about-gallery-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservas-map__frame {
        height: 280px;
    }

    .page-cta {
        padding: 64px 20px;
    }
}
