
        /* ========================================
           FOOTER  NACHO SÁEZ
           ======================================== */
        
        .ns-footer {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        
        .ns-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(156, 130, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(156, 130, 99, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        /* Footer principal */
        .ns-footer-main {
            padding: 4rem 0 3rem;
            position: relative;
            z-index: 2;
        }
        
        .ns-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .ns-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        /* Columna marca */
        .ns-footer-brand {
            max-width: 100%;
        }
        
        .ns-footer-logo {
            width: 120px;
            height: auto;
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1);
        }
        
        .ns-footer-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: #b8956f;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .ns-footer-description {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #cccccc;
            margin-bottom: 2rem;
        }
        
        /* Redes sociales */
        .ns-footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .ns-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(156, 130, 99, 0.2);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .ns-social-link:hover {
            background: #9c8263;
            border-color: #b8956f;
            transform: translateY(-2px);
            color: #ffffff;
        }
        
        /* Columnas de navegación */
        .ns-footer-column h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #b8956f;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .ns-footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #9c8263, #b8956f);
            border-radius: 2px;
        }
        
        .ns-footer-links {
            list-style: none;
        }
        
        .ns-footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .ns-footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }
        
        .ns-footer-links a:hover {
            color: #b8956f;
            padding-left: 0.5rem;
        }
        
        /* Información de contacto especial */
        .ns-footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: rgba(156, 130, 99, 0.1);
            border-radius: 8px;
            border-left: 3px solid #9c8263;
        }
        
        .ns-footer-contact-icon {
            font-size: 1.1rem;
            color: #b8956f;
            margin-top: 0.1rem;
            min-width: 20px;
        }
        
        .ns-footer-contact-content {
            flex: 1;
        }
        
        .ns-footer-contact-content strong {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }
        
        .ns-footer-contact-content span {
            font-size: 0.8rem;
            color: #cccccc;
        }
        
        .ns-footer-phone {
            color: #b8956f;
            text-decoration: none;
            font-weight: 600;
        }
        
        .ns-footer-phone:hover {
            color: #ffffff;
        }
        
        /* Separador elegante */
        .ns-footer-separator {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(156, 130, 99, 0.3), transparent);
            margin: 2rem 0;
        }
        
        /* Footer bottom */
        .ns-footer-bottom {
            padding: 2rem 0;
            background: rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .ns-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .ns-footer-copyright {
            font-size: 0.85rem;
            color: #999999;
        }
        
        .ns-footer-legal {
            display: flex;
            gap: 2rem;
        }
        
        .ns-footer-legal a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }
        
        .ns-footer-legal a:hover {
            color: #b8956f;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .ns-footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ns-footer-main {
                padding: 3rem 0 2rem;
            }
            
            .ns-footer-container {
                padding: 0 1rem;
            }
            
            .ns-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .ns-footer-brand {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .ns-footer-social {
                justify-content: center;
            }
            
            .ns-footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .ns-footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .ns-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .ns-footer-brand {
                grid-column: 1;
                margin-bottom: 1.5rem;
            }
        }
        
        /* Animaciones suaves */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ns-footer-column {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        .ns-footer-column:nth-child(1) { animation-delay: 0.1s; }
        .ns-footer-column:nth-child(2) { animation-delay: 0.2s; }
        .ns-footer-column:nth-child(3) { animation-delay: 0.3s; }
        .ns-footer-column:nth-child(4) { animation-delay: 0.4s; }
        .ns-footer-column:nth-child(5) { animation-delay: 0.5s; }
        
        /* Estados de enfoque para accesibilidad */
        .ns-footer-links a:focus,
        .ns-social-link:focus,
        .ns-footer-phone:focus {
            outline: 2px solid #b8956f;
            outline-offset: 2px;
            border-radius: 2px;
        }
        
        /* Reducir movimiento para usuarios sensibles */
        @media (prefers-reduced-motion: reduce) {
            .ns-footer-column,
            .ns-social-link,
            .ns-footer-links a {
                animation: none;
                transition: none;
            }
            
            .ns-social-link:hover {
                transform: none;
            }
        }
	