    /* ============================================
           VARIABLES Y RESET
           ============================================ */
        :root {
            --color-white: #FFFFFF;
            --color-gold: #D4AF37;
            --color-light-gray: #F5F5F5;
            --color-dark-gray: #333333;
            --color-medium-gray: #666666;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Poppins', sans-serif;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: inline-block;
            text-decoration: none;
            transition: var(--transition);
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        .logo-link:active,
        .logo-link:focus {
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        .logo-link:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 45px;
            width: auto;
            display: block;
            transition: var(--transition);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-dark-gray);
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.5;
            min-height: 1.425rem;
            position: relative;
            transition: var(--transition);
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        .nav-links a:active,
        .nav-links a:focus {
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-links a:hover {
            color: var(--color-gold);
        }

        /* Mega Menu Styles */
        .nav-item {
            position: relative;
        }

        .nav-item > a {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-item.is-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        .mega-menu {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-white);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 2.5rem;
            min-width: 900px;
            max-width: 1100px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10002;
            border-top: 3px solid var(--color-gold);
            will-change: opacity, visibility;
        }

        .nav-item.is-open .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mega-menu-category {
            margin-bottom: 1rem;
        }

        .mega-menu-category > a,
        .mega-menu-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-dark-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
            display: block;
            border-bottom: 2px solid var(--color-gold);
            padding-bottom: 0.5rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .mega-menu-category > a:hover,
        .mega-menu-title:hover {
            color: var(--color-gold);
        }

        .mega-menu-subcategory {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mega-menu-subcategory li a {
            color: var(--color-medium-gray);
            font-size: 0.88rem;
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            display: block;
            border-radius: 6px;
            transition: var(--transition);
            position: relative;
            padding-left: 1.2rem;
        }

        .mega-menu-subcategory li a::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--color-gold);
            font-size: 0.6rem;
            opacity: 0;
            transition: var(--transition);
        }

        .mega-menu-subcategory li a:hover {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
            color: var(--color-gold);
            padding-left: 1.5rem;
        }

        .mega-menu-subcategory li a:hover::before {
            opacity: 1;
        }

        /* Mobile Mega Menu - Optimizado para evitar CLS */
        .mobile-mega-menu {
            display: none;
            background: var(--color-light-gray);
            border-radius: 8px;
            margin-top: 0.5rem;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease;
            contain: layout style;
        }

        .mobile-mega-menu.active {
            max-height: 2000px;
        }

        .mobile-category {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .mobile-category:last-child {
            border-bottom: none;
        }

        .mobile-category-header {
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-dark-gray);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--color-white);
            transition: var(--transition);
        }

        .mobile-category-header:hover {
            background: rgba(212, 175, 55, 0.05);
            color: var(--color-gold);
        }

        .mobile-category-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .mobile-category.active .mobile-category-arrow {
            transform: rotate(180deg);
        }

        .mobile-subcategories {
            background: var(--color-light-gray);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .mobile-category.active .mobile-subcategories {
            max-height: 500px;
            padding: 0.5rem 0;
        }

        .mobile-subcategories a {
            display: block;
            padding: 0.7rem 2.5rem;
            color: var(--color-medium-gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .mobile-subcategories a:hover {
            background: var(--color-white);
            color: var(--color-gold);
            padding-left: 3rem;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
            z-index: 1003;
            position: relative;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #CDA434;
            transition: var(--transition);
            display: block;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100svh;
            min-height: 100dvh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            padding: 80px 0 40px;
        }

        @media (min-width: 769px) {
            .hero {
                height: 100dvh;
                padding: 0;
            }
        }

        /* Fondo con imagen parallax */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f5f5f5 url('../../api/image.php?src=assets%2Fimg%2Ffondo2.png&w=960&q=72&f=auto') center/cover no-repeat;
            z-index: 1;
        }

        @media (min-width: 769px) {
            .hero::before {
                top: -10%;
                left: -10%;
                width: 120%;
                height: 120%;
                background-image: url('../../api/image.php?src=assets%2Fimg%2Ffondo2.png&w=1920&q=68&f=auto');
            }
        }

        /* Overlay elegante con gradiente suave */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.92) 0%, 
                rgba(250, 245, 235, 0.88) 50%,
                rgba(255, 255, 255, 0.90) 100%);
            z-index: 2;
        }

        /* Ondas fluidas animadas con movimiento ligero */
        .hero-texture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            opacity: 0.12;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(205, 164, 52, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(205, 164, 52, 0.15) 0%, transparent 45%),
                radial-gradient(ellipse at 40% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 35%);
        }

        @media (min-width: 769px) {
            .hero-texture {
                transform: translateZ(0);
            }
        }

        /* Animación de ondas fluidas */
        @keyframes waveFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
                opacity: 0.12;
            }
            33% {
                transform: translate(-15px, -25px) scale(1.05) rotate(1deg);
                opacity: 0.18;
            }
            66% {
                transform: translate(20px, -15px) scale(0.98) rotate(-1deg);
                opacity: 0.15;
            }
        }

        /* Patron decorativo sutil */
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 4;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, 
                    transparent, 
                    transparent 10px, 
                    rgba(205, 164, 52, 0.1) 10px, 
                    rgba(205, 164, 52, 0.1) 11px);
        }

        @media (min-width: 769px) {
            .hero-pattern {
                transform: translateZ(0);
            }
        }

        .hero-content {
            max-width: 900px;
            min-height: 550px;
            padding: 2rem 1.5rem;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 769px) {
            .hero-content {
                min-height: 600px;
                padding: 0 2rem;
                transform: translateY(-56px);
            }
        }

        /* Logo Hero centrado con animación de brillo dorado */
        .hero-logo {
            width: 120px;
            height: auto;
            margin: 0 auto 1.5rem;
            display: block;
            opacity: 1;
            filter: drop-shadow(0 4px 15px rgba(205, 164, 52, 0.35));
        }

        @media (min-width: 769px) {
            .hero-logo {
                width: 180px;
                margin: 0 auto 2.5rem;
                filter: drop-shadow(0 6px 25px rgba(205, 164, 52, 0.4));
            }
        }

        /* Animación de brillo dorado sutil */
        @keyframes logoGlow {
            0%, 100% {
                filter: drop-shadow(0 6px 25px rgba(205, 164, 52, 0.4));
            }
            50% {
                filter: drop-shadow(0 8px 35px rgba(205, 164, 52, 0.6)) 
                        drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
            }
        }

        /* Título principal con Playfair Display - Elegante y Premium */
        .hero-title,
        .hero-brand-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: #CDA434;
            margin-bottom: 0.5rem;
            letter-spacing: 4px;
            font-family: 'Playfair Display', 'Times New Roman', serif;
            opacity: 1;
            position: relative;
            text-shadow: 
                0 2px 10px rgba(205, 164, 52, 0.2),
                0 4px 20px rgba(205, 164, 52, 0.15),
                0 0 60px rgba(205, 164, 52, 0.1);
            line-height: 1.35;
            min-height: 6.75rem;
        }

        @media (min-width: 769px) {
            .hero-title,
            .hero-brand-title {
                font-size: 6rem;
                letter-spacing: 12px;
                margin-bottom: 0.65rem;
                line-height: 1.2;
                min-height: 7.2rem;
                height: 7.2rem;
            }
        }

        /* Efecto brillo sutil y elegante */
        .hero-title::before,
        .hero-brand-title::before {
            content: none;
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.4) 50%, 
                transparent 100%);
            animation: shine 5s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes shine {
            0% {
                left: -50%;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                left: 150%;
                opacity: 0;
            }
        }

        /* Línea decorativa dorada */
        .hero-divider {
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #CDA434, transparent);
            margin: 0;
            opacity: 1;
            display: none;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            font-weight: 400;
            color: #333333;
            margin: 0.5rem 0 1.5rem;
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 1;
            line-height: 1.7;
            min-height: 6.46rem;
        }

        @media (min-width: 769px) {
            .hero-subtitle {
                font-size: 1.5rem;
                letter-spacing: 6px;
                margin: 0.35rem 0 2.2rem;
                line-height: 1.6;
                min-height: 4.8rem;
                height: 4.8rem;
            }
        }

        .hero-description {
            font-size: 1.1rem;
            color: #555555;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.9;
            font-weight: 400;
            opacity: 1;
            font-family: 'Montserrat', sans-serif;
            min-height: 6.3rem;
        }

        /* Botón CTA Premium con microinteracciones */
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2.5rem;
            min-height: 50px;
            background: linear-gradient(135deg, #CDA434 0%, #B8922D 100%);
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            line-height: 1.4;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(205, 164, 52, 0.3);
            position: relative;
            overflow: hidden;
            opacity: 1;
            border: 2px solid rgba(205, 164, 52, 0.3);
            font-family: 'Montserrat', sans-serif;
            -webkit-tap-highlight-color: transparent;
            outline: none;
            margin-top: 1rem;
        }

        @media (min-width: 769px) {
            .cta-button {
                padding: 1.1rem 3.2rem;
                min-height: 58px;
                font-size: 0.95rem;
                letter-spacing: 2px;
                box-shadow: 0 10px 35px rgba(205, 164, 52, 0.3);
                margin-top: 0;
            }
        }

        /* Efecto shimmer suave en el botón */
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .cta-button:hover::before {
            width: 350px;
            height: 350px;
        }

        /* Hover: dorado más intenso (#b8860b) con sombra suave */
        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 45px rgba(184, 134, 11, 0.4);
            background: linear-gradient(135deg, #b8860b 0%, #9a7621 100%);
            border-color: #b8860b;
        }

        .cta-button:active {
            transform: translateY(-2px) scale(1);
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
        }

        .cta-button span {
            position: relative;
            z-index: 1;
            display: block;
        }

        /* Indicador de scroll */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            opacity: 0.7;
        }

        .scroll-indicator span {
            display: block;
            width: 24px;
            height: 40px;
            border: 2px solid #CDA434;
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: #CDA434;
            border-radius: 2px;
        }

        @keyframes scrollDown {
            0%, 100% {
                top: 8px;
                opacity: 1;
            }
            50% {
                top: 20px;
                opacity: 0.3;
            }
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            padding: 8rem 2rem;
            background: var(--color-white);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content {
            padding-left: 2rem;
        }

        .section-label {
            font-size: 0.9rem;
            color: var(--color-gold);
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-dark-gray);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .about-text {
            font-size: 1.1rem;
            color: var(--color-medium-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--color-light-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 1.1rem;
            color: var(--color-dark-gray);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            font-size: 0.95rem;
            color: var(--color-medium-gray);
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            padding: 8rem 2rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
            position: relative;
        }

        .services-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .services-header .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }

        .services-header .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        }

        .services-header .section-title.animated::after {
            width: 80px;
        }

        .services-subtitle {
            font-size: 1.25rem;
            color: var(--color-medium-gray);
            margin-top: 1.5rem;
            font-weight: 300;
            font-family: var(--font-secondary);
            opacity: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        @media (min-width: 1025px) {
            .services-grid {
                grid-template-columns: repeat(6, minmax(0, 1fr));
            }

            .services-grid > .service-card {
                grid-column: span 2;
            }

            .services-grid > .service-card:nth-child(4):nth-last-child(2) {
                grid-column: 2 / span 2;
            }

            .services-grid > .service-card:nth-child(5):last-child {
                grid-column: 4 / span 2;
            }
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 3rem 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
            border-color: var(--color-gold);
            background: rgba(255, 255, 255, 0.95);
        }

        .service-icon-container {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon-container {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
            }
            50% {
                box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
            }
        }

        .service-icon-container svg {
            width: 42px;
            height: 42px;
            stroke: var(--color-gold);
            fill: none;
            stroke-width: 2;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon-container svg {
            stroke: #c29d2e;
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1.45rem;
            color: var(--color-dark-gray);
            margin-bottom: 1.2rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .service-card:hover h3 {
            color: var(--color-gold);
        }

        .service-card p {
            color: var(--color-medium-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .service-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1.8rem;
            background: linear-gradient(135deg, var(--color-gold) 0%, #c9a32a 100%);
            color: var(--color-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            position: relative;
            z-index: 1;
        }

        .service-button .arrow {
            transition: transform 0.3s ease;
            font-size: 1.1rem;
        }

        .service-button:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #c9a32a 0%, var(--color-gold) 100%);
        }

        .service-button:hover .arrow {
            transform: translateX(5px);
        }

        /* ============================================
           BOTÓN PREMIUM DE LUJO - NEUMÓRFICO REFINADO
           ============================================ */
        .luxury-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 36px;
            background: linear-gradient(145deg, #fbf9f7, #f8f5f1);
            color: #2A2A2A;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            border-radius: 50px;
            border: 1px solid rgba(212, 175, 111, 0.12);
            box-shadow: 
                6px 6px 12px rgba(209, 169, 84, 0.06),
                -6px -6px 12px rgba(255, 255, 255, 0.95),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .luxury-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 111, 0.08), transparent);
            transition: left 0.5s ease;
        }

        .luxury-btn:hover::before {
            left: 100%;
        }

        .luxury-btn:hover {
            transform: translateY(-2px);
            color: #1C1C1C;
            border-color: rgba(212, 175, 111, 0.25);
            box-shadow: 
                8px 8px 18px rgba(209, 169, 84, 0.09),
                -6px -6px 12px rgba(255, 255, 255, 1),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 6px 20px rgba(209, 169, 84, 0.12);
        }

        .luxury-btn:active {
            transform: translateY(0);
            box-shadow: 
                3px 3px 6px rgba(209, 169, 84, 0.08),
                -3px -3px 6px rgba(255, 255, 255, 0.9),
                inset 1px 1px 3px rgba(209, 169, 84, 0.04);
        }

        .luxury-btn-icon {
            width: 14px;
            height: 14px;
            transition: transform 0.35s ease;
            opacity: 0.85;
        }

        .luxury-btn:hover .luxury-btn-icon {
            transform: translateX(3px);
            opacity: 1;
        }

        /* Botón dentro de las tarjetas de producto */
        .luxury-btn-product {
            padding: 11px 28px;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            width: 100%;
            margin-top: 16px;
            font-weight: 300;
        }

        .luxury-btn-product .luxury-btn-icon {
            width: 12px;
            height: 12px;
        }

        /* Botón deshabilitado */
        .luxury-btn.disabled,
        .luxury-btn[disabled] {
            background: linear-gradient(145deg, #f5f5f5, #ececec);
            color: #9ca3af;
            border-color: rgba(0, 0, 0, 0.08);
            cursor: not-allowed;
            box-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.05),
                -3px -3px 6px rgba(255, 255, 255, 0.8);
            opacity: 0.6;
        }

        .luxury-btn.disabled:hover,
        .luxury-btn[disabled]:hover {
            transform: none;
            box-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.05),
                -3px -3px 6px rgba(255, 255, 255, 0.8);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .luxury-btn {
                padding: 10px 30px;
                font-size: 0.7rem;
                letter-spacing: 1.5px;
            }

            .luxury-btn-icon {
                width: 12px;
                height: 12px;
            }

            .luxury-btn-product {
                padding: 10px 24px;
                font-size: 0.65rem;
                letter-spacing: 1.3px;
            }

            .luxury-btn-product .luxury-btn-icon {
                width: 11px;
                height: 11px;
            }
        }

        /* ============================================
           PORTFOLIO SECTION - NUESTRA COLECCIÓN
           ============================================ */
        .portfolio {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .portfolio::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .portfolio-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 1rem;
            animation: fadeInDown 0.8s ease;
        }

        .portfolio-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.8rem;
            font-family: var(--font-primary);
        }

        .portfolio-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-dark-gray);
            margin-bottom: 3rem;
            letter-spacing: 2px;
            position: relative;
        }

        .portfolio-main-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 60px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .filter-btn {
            padding: 0.9rem 2.2rem;
            background: transparent;
            color: var(--color-dark-gray);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: var(--font-primary);
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .filter-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .filter-btn:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #D4AF37 0%, #B8922D 100%);
            color: var(--color-white);
            border-color: var(--color-gold);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .filter-btn.active:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .portfolio-item {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            min-height: 520px;
        }

        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .portfolio-item:hover {
            cursor: default;
        }

        .portfolio-item a.luxury-btn {
            display: inline-flex;
            width: auto;
            height: auto;
        }

        .portfolio-image-container {
            position: relative;
            height: 320px;
            width: 100%;
            aspect-ratio: 385 / 320;
            overflow: hidden;
            background: var(--color-light-gray);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: none;
            display: block;
            aspect-ratio: 385 / 320;
        }

        .portfolio-info {
            padding: 1.8rem;
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .portfolio-info h3,
        .portfolio-info h4,
        .portfolio-info .product-title,
        .portfolio-info .product-title-home {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-dark-gray);
            margin-bottom: 0.5rem;
        }

        .portfolio-info p {
            color: var(--color-medium-gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            flex-grow: 1;
        }

        .portfolio-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-gold);
            margin-bottom: 0;
            margin-top: auto;
            padding-top: 0.5rem;
            font-family: var(--font-primary);
        }

        .view-details-btn {
            width: 100%;
            padding: 1rem;
            background: transparent;
            color: var(--color-gold);
            border: 2px solid var(--color-gold);
            border-radius: 50px;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
        }

        .view-details-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #B8922D 100%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .view-details-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .view-details-btn:hover {
            color: var(--color-white);
            border-color: var(--color-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
        }

        .portfolio-item.hidden {
            display: none;
        }

        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */
        .testimonials {
            padding: 8rem 2rem;
            background: #FFFFFF;
        }

        .testimonials-container {
            max-width: 1320px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .testimonials-header .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }

        .testimonials-header .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        }

        .testimonial-carousel {
            position: relative;
            overflow: hidden;
            background: #FFFFFF;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.6rem;
        }

        .testimonial-card {
            min-width: 0;
            background: #FFFFFF;
            padding: 2.4rem 2.1rem 2.2rem;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.45);
            box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-content {
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-top: 1.7rem;
        }

        .testimonial-content::before {
            content: none;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            color: var(--color-gold);
            font-size: 1.7rem;
            line-height: 1;
            opacity: 0.95;
        }

        .stars {
            display: flex;
            gap: 0.28rem;
            margin-bottom: 1.3rem;
            justify-content: center;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            padding: 0.34rem 0.58rem;
            border: 1px solid rgba(209,169,84,0.24);
            border-radius: 999px;
            background: linear-gradient(180deg, rgba(209,169,84,0.09) 0%, rgba(209,169,84,0.03) 100%);
        }

        .star {
            font-size: 0;
            line-height: 1;
            width: 1.3rem;
            height: 1.3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .star::before {
            content: '★';
            font-size: 1.28rem;
            color: #D1A954;
            text-shadow: 0 1px 2px rgba(125, 92, 18, 0.18);
        }

        .star:hover {
            transform: translateY(-1px);
        }

        .testimonial-text {
            font-size: 0.98rem;
            color: var(--color-dark-gray);
            line-height: 1.82;
            font-style: normal;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.9rem;
            text-align: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1.5px solid rgba(212, 175, 55, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.6px;
        }

        .author-info h3 {
            color: var(--color-dark-gray);
            font-size: 1.04rem;
            margin-bottom: 0.35rem;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .author-info p {
            color: var(--color-medium-gray);
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            letter-spacing: 0.2px;
        }

        .author-info p::before {
            content: '✓';
            color: var(--color-gold);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #D9D9D9;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--color-gold);
            width: 12px;
            border-radius: 50%;
        }

        @media (max-width: 1100px) {
            .testimonial-slide {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .testimonial-slide {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                padding: 1.8rem;
            }

            .testimonial-text {
                font-size: 0.97rem;
            }
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            padding: 8rem 2rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-item {
            background: var(--color-white);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
            border-color: var(--color-gold);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--color-dark-gray);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: transparent;
        }

        .faq-question:hover {
            background: rgba(212, 175, 55, 0.08);
            color: var(--color-gold);
        }

        .faq-icon {
            font-size: 1.8rem;
            color: var(--color-gold);
            transition: transform 0.3s ease;
            font-weight: 400;
        }

        .faq-item.active .faq-question {
            background: rgba(212, 175, 55, 0.1);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--color-medium-gray);
            line-height: 1.8;
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: var(--color-dark-gray);
            color: var(--color-white);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--color-gold);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--color-gold);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--color-gold);
            color: var(--color-white);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cccccc;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden !important;
                width: 100vw !important;
                max-width: 100vw !important;
            }

            .menu-toggle {
                display: flex !important;
                position: fixed !important;
                right: 1.5rem !important;
                top: 0.85rem !important;
                z-index: 10001 !important;
                width: 45px !important;
                height: 45px !important;
                align-items: center !important;
                justify-content: center !important;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(12px);
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
                border: 1.5px solid rgba(212, 175, 55, 0.22);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                /* Centrado vertical respecto al header */
            }

            .menu-toggle:hover {
                background: rgba(212, 175, 55, 0.1);
                border-color: var(--color-gold);
            }

            .menu-toggle span {
                background: var(--color-gold);
            }

            .logo-img {
                height: 35px;
            }

            /* Overlay oscuro */
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(5px);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
            }

            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            /* Menú móvil mejorado */
            .nav-links {
                display: flex;
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 400px;
                height: 100dvh;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 240, 0.95) 100%);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 0;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
                z-index: 10000;
                transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                border-left: 2px solid rgba(212, 175, 55, 0.3);
            }

            .nav-links.active {
                right: 0;
            }

            /* Animaciones escalonadas para items del menú */
            .nav-links li {
                opacity: 0;
                transform: translateX(50px);
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

            /* Items del menú con iconos */
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(212, 175, 55, 0.15);
                margin-bottom: 0.5rem;
                padding-bottom: 0.5rem;
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: flex;
                align-items: center;
                gap: 1rem;
                padding: 1rem 1.2rem;
                font-size: 1.05rem;
                font-weight: 600;
                color: var(--color-dark-gray);
                text-decoration: none;
                border-radius: 12px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .nav-links a::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 3px;
                background: linear-gradient(90deg, var(--color-gold), transparent);
                transition: width 0.4s ease;
            }

            .nav-links a:hover::before {
                width: 100%;
            }

            .nav-links a:hover {
                background: rgba(212, 175, 55, 0.1);
                color: var(--color-gold);
                transform: translateX(8px);
            }

            /* Hide desktop mega menu on mobile */
            .mega-menu {
                display: none !important;
            }

            /* Show mobile mega menu */
            .mobile-mega-menu {
                display: block;
                margin-top: 0.5rem;
            }

            .nav-item {
                width: 100%;
            }

            .dropdown-arrow {
                display: inline-block;
                margin-left: auto;
                font-size: 0.8rem;
                transition: transform 0.3s ease;
            }

            .nav-item.active .dropdown-arrow {
                transform: rotate(180deg);
            }

            /* Submenu de catálogo mejorado */
            .mobile-mega-menu {
                background: rgba(255, 255, 255, 0.5);
                border-radius: 12px;
                padding: 0;
                overflow: hidden;
                max-height: 0;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border: 1px solid rgba(212, 175, 55, 0.1);
            }

            .mobile-mega-menu.active {
                max-height: 2000px;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
            }

            .mobile-category-header {
                padding: 1rem 1.5rem;
                font-weight: 600;
                font-size: 0.9rem;
                color: var(--color-dark-gray);
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: transparent;
                transition: all 0.3s ease;
                border-radius: 8px;
                margin: 0.2rem 0.5rem;
            }

            .mobile-category-header:hover {
                background: rgba(212, 175, 55, 0.15);
                color: var(--color-gold);
            }

            .mobile-subcategories {
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;
            }

            .mobile-category.active .mobile-subcategories {
                max-height: 500px;
                padding: 0.3rem 0;
            }

            .mobile-subcategories a {
                display: block;
                padding: 0.7rem 2.5rem;
                color: var(--color-medium-gray);
                text-decoration: none;
                font-size: 0.85rem;
                transition: all 0.3s ease;
                border-left: 3px solid transparent;
            }

            .mobile-subcategories a:hover {
                background: rgba(212, 175, 55, 0.1);
                color: var(--color-gold);
                border-left-color: var(--color-gold);
                padding-left: 2.8rem;
            }

            .hero-logo {
                width: 90px;
                margin-bottom: 1.2rem;
            }

            .hero-title,
            .hero-brand-title {
                font-size: 3rem;
                letter-spacing: 6px;
                margin-bottom: 0.45rem;
                min-height: 3.6rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                letter-spacing: 3px;
                margin: 0.25rem 0 1rem;
                min-height: 3.6rem;
            }

            .hero-content {
                transform: translateY(-32px);
            }

            .hero-description {
                font-size: 0.95rem;
                line-height: 1.7;
                margin-bottom: 2.5rem;
            }

            .cta-button {
                padding: 1rem 2.4rem;
                min-height: 52px;
                font-size: 0.85rem;
                line-height: 1.4;
                letter-spacing: 1.5px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-content {
                padding-left: 0;
            }

            .about-image {
                height: 400px;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-subtitle {
                font-size: 1.1rem;
            }

            .service-card {
                padding: 2.5rem 2rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .portfolio-main-title {
                font-size: 2rem;
            }

            .portfolio-filters {
                padding: 1rem;
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }

            .portfolio-image-container {
                height: 280px;
            }

            .portfolio-info {
                padding: 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Tablet responsive (768px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .portfolio-main-title {
                font-size: 2.5rem;
            }

            .portfolio-image-container {
                height: 300px;
            }
        }

        /* ============================================
           ACCESSIBILITY
           ============================================ */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        *:focus {
            outline: 2px solid var(--color-gold);
            outline-offset: 3px;
        }
        
        /* ============================================
           FILTROS DE CATEGORÍAS HOME - DISEÑO PREMIUM
           ============================================ */
        
        /* Variables para filtros premium (sincronizadas con catálogo) */
        :root {
            --filter-bg: #FAF7F2;
            --filter-border: #D5C8A8;
            --filter-text: #5A5450;
            --filter-active-bg: #D5C8A8;
            --filter-hover-bg: #F8F3E7;
            --filter-pill-radius: 25px;
            --filter-transition: all 250ms ease;
        }
        
        /* Wrapper para los filtros en home */
        .filters-wrapper-home {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2.5rem 0 3rem 0;
            padding: 0 20px;
        }
        
        /* Contenedor de botones */
        .filters-buttons-home {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .seo-categorias-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 16px;
            max-width: 900px;
            margin: 0.75rem auto 1.25rem;
            padding: 0 12px;
        }

        .seo-categoria-item {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.4;
            color: #666;
        }

        .filter-heading-home {
            margin: 0;
            font: inherit;
            line-height: 1;
        }

        .filter-item-home {
            margin: 0;
            line-height: 1;
        }
        
        /* Botón de filtro con diseño premium (igual que catálogo) */
        .filter-btn-home {
            font-family: 'Inter', 'Lato', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--filter-text);
            background: #fff;
            border: 1.5px solid var(--filter-border);
            border-radius: var(--filter-pill-radius);
            padding: 0.65rem 1.5rem;
            cursor: pointer;
            transition: var(--filter-transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            outline: none;
            text-decoration: none;
            white-space: nowrap;
        }
        
        /* Iconos dentro del botón */
        .filter-btn-home i {
            font-size: 1rem;
            transition: var(--filter-transition);
        }
        
        /* Estado hover */
        .filter-btn-home:hover {
            background: var(--filter-hover-bg);
            border-color: var(--filter-active-bg);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(213, 200, 168, 0.25);
        }
        
        /* Estado activo */
        .filter-btn-home.active {
            background: var(--filter-active-bg);
            color: #fff;
            border-color: var(--filter-active-bg);
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(213, 200, 168, 0.35);
        }
        
        .filter-btn-home.active:hover {
            background: var(--filter-active-bg);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(213, 200, 168, 0.4);
        }
        
        /* Focus para accesibilidad */
        .filter-btn-home:focus,
        .filter-btn-home:focus-visible {
            outline: 2px solid var(--filter-active-bg);
            outline-offset: 2px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .filters-wrapper-home {
                margin: 1.5rem 0 2rem 0;
            }

            .seo-categoria-item {
                font-size: 0.85rem;
            }
            
            .filter-btn-home {
                font-size: 0.85rem;
                padding: 0.55rem 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .filter-btn-home {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 600px) {
            .filters-wrapper-home + #portfolioGrid {
                grid-template-columns: 1fr !important;
            }
        }

        /* ============================================
           RESPONSIVE: SECCIÓN VISITA NUESTRO TALLER
           ============================================ */
        
        /* Tablets y pantallas medianas */
        @media (max-width: 1024px) {
            .contact-location {
                padding: 80px 30px !important;
            }
            
            .contact-grid {
                grid-template-columns: 420px 1fr !important;
                gap: 40px !important;
            }
            
            .info-card {
                padding: 28px !important;
            }
        }
        
        /* Tablets pequeñas */
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
            
            .map-container {
                position: relative !important;
                top: 0 !important;
            }
        }
        
        /* Móviles */
        @media (max-width: 768px) {
            .contact-location {
                padding: 60px 20px !important;
            }
            
            .contact-header {
                margin-bottom: 50px !important;
            }
            
            .contact-header .section-title {
                font-size: 1.75rem !important;
            }
            
            .contact-header p {
                font-size: 1rem !important;
                padding: 0 10px;
            }
            
            .contact-info-cards {
                gap: 20px !important;
            }
            
            .info-card {
                padding: 24px !important;
            }
            
            .info-card > div {
                flex-direction: column !important;
                gap: 16px !important;
            }
            
            .info-card h3 {
                font-size: 1.1rem !important;
            }
            
            .info-card p {
                font-size: 0.9rem !important;
            }
            
            .map-container {
                padding: 16px !important;
            }
            
            .map-wrapper {
                padding-bottom: 85% !important;
            }
        }
        
        /* Móviles pequeños */
        @media (max-width: 480px) {
            .contact-location {
                padding: 50px 15px !important;
            }
            
            .contact-header .section-title {
                font-size: 1.5rem !important;
            }
            
            .contact-header p {
                font-size: 0.95rem !important;
            }
            
            .info-card {
                padding: 20px !important;
                border-radius: 16px !important;
            }
            
            .info-card h3 {
                font-size: 1.05rem !important;
            }
            
            .info-card p {
                font-size: 0.85rem !important;
            }
            
            /* Ajustar botón de WhatsApp en móvil */
            .info-card a[href*="wa.me"] {
                padding: 12px 20px !important;
                font-size: 0.875rem !important;
            }
            
            .map-wrapper {
                padding-bottom: 100% !important;
                border-radius: 12px !important;
            }
        }

        /* Ajustes para dispositivos muy pequeños (460px o menos) */
        @media (max-width: 460px) {
            .hero-content {
                padding: 1.5rem 1rem;
                min-height: auto;
                gap: 0.5rem;
            }

            .hero-brand-title {
                font-size: 2rem;
                letter-spacing: 3px;
                min-height: auto;
                line-height: 1.3;
                margin-bottom: 0.75rem;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                letter-spacing: 1.5px;
                min-height: auto;
                line-height: 1.6;
                margin: 0.5rem 0 1.5rem;
                padding: 0 0.5rem;
            }

            .cta-button {
                padding: 0.85rem 2rem;
                min-height: 48px;
                font-size: 0.8rem;
                letter-spacing: 1.2px;
                margin-top: 1rem;
                width: auto;
                max-width: 90%;
            }

            .hero-logo {
                width: 80px;
                height: 80px;
                margin-bottom: 1rem;
            }

            .hero-divider {
                width: 50px;
                margin: 0.5rem auto;
            }
        }
