
    
    @font-face {
  font-family: 'Gothice';
  src: 
    url('fonts/gothice/gothice_-webfont.woff2') format('woff2'),
    url('fonts/gothice/gothice_-webfont.woff') format('woff');
  font-weight: normal; 
  font-style: normal; 
}
    
    :root {
            --color-primary: #111111;
            --color-secondary: #c0a062;
            --color-accent: #f8f9fa;
            --color-text: #333333;
            --color-light: #f5f5f5;
            --color-dark: #222222;
            --color-gold: #c0a062;
            --color-border: #e0e0e0;
            --transition-speed: 0.4s;
            --menu-bg: rgba(201, 201, 201, 0.95);
            --transition: all 0.4s ease;
            --referencia: #6CB4C1;
        }
        
        /* Dark Mode Variables */
        .dark-mode {
            --color-primary: #f0f0f0;
            --color-secondary: #c0a062;
            --color-accent: #1a1a1a;
            --color-text: #e0e0e0;
            --color-light: #121212;
            --color-dark: #f5f5f5;
            --color-gold: #c0a062;
            --color-border: #728185;
            --menu-bg: rgba(26, 30, 31, 0.95);
            --transition: all 0.4s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', sans-serif;
            transition: background-color var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
        }
        
        html, body {
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--color-light);
            color: var(--color-text);
            line-height: 1.6;
        }



                .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }
        
        .progress-bar {
            height: 100%;
            background: var(--color-secondary);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 999;
        }
        
        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }



        /* Animaciones para elementos */
        .hidden-left {
            opacity: 0;
            transform: translateX(-100px) scale(0.95);
            transition: all 2s ease-in-out;
        }
        
        .hidden-right {
            opacity: 0;
            transform: translateX(100px) scale(0.95);
            transition: all 2s ease-in-out;
        }
        
        .hidden-top {
            opacity: 0;
            transform: translateY(-50px) scale(0.95);
            transition: all 2s ease-in-out;
        }
        
        .hidden-bottom {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 2s ease-in-out;
        }
        
        .show {
            opacity: 1;
            transform: translateX(0) translateY(0) scale(1);
        }
    
        

        
        /* Header con Menú Hamburguesa */
        header {
            background-color: rgba(194, 192, 192, 0);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease-in-out;
        }
        
        .dark-mode header {
            background-color: rgba(18, 18, 18, 0);
        }
        
        header.scrolled {
            padding: 0.5rem 8%;
            background-color: rgba(194, 192, 192, 0.733) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px); /* Para Safari */
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease-in-out;
        }
        
        .dark-mode header.scrolled {
            background-color: rgba(18, 18, 18, 0.863) !important;
            
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: 1px;
            font-family: 'Gothice', sans-serif;
        }
        
        .logo-text span {
            font-family: 'Gothice';
            color: var(--color-secondary);
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .theme-toggle {
            background: transparent;
            border: none;
            color: var(--color-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .theme-toggle:hover {
            color: var(--color-secondary);
            background: rgba(108, 180, 193, 0.1);
        }
        
        .menu-btn {
            background: transparent;
            border: none;
            color: var(--color-primary);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .menu-btn:hover {
            color: var(--color-secondary);
            background: rgba(108, 180, 193, 0.1);
        }
        
        .nav-links {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 100%;
            max-width: 300px;
            background: var(--menu-bg);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform 0.5s ease-in-out;
            z-index: 1000;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            border-left: 1px solid var(--color-border);
        }
        
        .nav-links.active {
            transform: translateX(0);
        }
        
        .nav-links ul {
            list-style: none;
            text-align: left;
            width: 100%;
            padding: 0 2rem;
        }
        
        .nav-links ul li {
            margin: 1.8rem 0;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
        .nav-links.active ul li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .nav-links ul li:nth-child(1) { transition-delay: 0.1s; }
        .nav-links ul li:nth-child(2) { transition-delay: 0.2s; }
        .nav-links ul li:nth-child(3) { transition-delay: 0.3s; }
        .nav-links ul li:nth-child(4) { transition-delay: 0.4s; }
        .nav-links ul li:nth-child(5) { transition-delay: 0.5s; }
        .nav-links ul li:nth-child(6) { transition-delay: 0.6s; }
        .nav-links ul li:nth-child(7) { transition-delay: 0.7s; }
        
        .nav-links ul li a {
            text-decoration: none;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 1.4rem;
            transition: color 0.3s;
            position: relative;
            padding: 0.7rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .nav-links ul li a i {
            width: 30px;
            text-align: center;
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }
        
        .nav-links ul li a:hover {
            color: var(--color-secondary);
            background: rgba(108, 180, 193, 0.1);
        }
        
        .nav-links ul li a:hover i {
            transform: translateX(5px);
        }
        
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--color-primary);
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .close-btn:hover {
            color: var(--color-secondary);
            background: rgba(108, 180, 193, 0.1);
            transform: rotate(90deg);
        }


        

       

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: left;
            position: relative;
            background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,0.648)),
                        url('/imgs/img-new/1.jpg') no-repeat center center/cover;
            padding: 0 5%;
            overflow: hidden;
            
        }
        
        .dark-mode .hero {
            background: 
                        url('/imgs/img-new/1.jpg') no-repeat center center/cover;
                        
        
            }


        
        .hero-content {
            max-width: 650px;
            z-index: 10;
            padding-top: 80px;
            text-align: center;
        }

        #escribiendo {font-size: 3.5rem;
            margin-bottom: 3rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--color-primary);
            }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: -0.8rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--color-primary);
            font-family: "Righteous", sans-serif;
            font-weight: 400;
            font-style: normal;
            text-align: center;
        }



        
        .typewriter-text {
            color: var(--color-secondary);
            position: relative;
            display: inline-block;
            font-family: "Gloria Hallelujah", cursive;
            font-weight: 400;
            font-style: normal;
        }
        

        
        .cursor {
            display: inline-block;
            width: 3px;
            height: 3rem;
            background-color: var(--color-secondary);
            margin-left: 5px;
            animation: blink 0.7s infinite;
            vertical-align: text-bottom;
        }



        .scroll-indicator {
            font-size: 2rem;
            margin-top: 50px;
            animation: bounce 2s infinite;
            transform: translateY(0);
            opacity: 0;
            transition: all 0.8s ease 0.2s;
            color: var(--color-secondary);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        


        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }


        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            color: #1a1818;
            text-align: center;
        }
        
        .dark-mode .hero p {
            color: #bbb;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--color-primary);
            color: var(--color-light);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--color-primary);
            
            
        }
        
        .cta-button:hover {
            background: var(--color-secondary);
            color: var(--color-primary);
            transform: translateY(-3px);
        }

         @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Sobre Mí Section */
        .about {
            padding: 6rem 5%;
            background-color: var(--color-light);
            position: relative;
                    background-image: url('/imgs/el-fondo-de-papel-arrugado.webp');
                    
        }
        
        .dark-mode .about {
            /* background-color: #1a1a1a;  */
            background: linear-gradient(to top, rgba(19, 19, 19, 0.267), rgba(12, 12, 12, 0.699)),
                        url('/imgs/photo-1585511582331-14e7c5f89735.webp') no-repeat center center/cover;

            
        }
        
        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(to top, rgba(18, 18, 18, 0.288), rgba(18, 18, 18, 0.9)),
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 0;
            box-shadow: 20px 20px 0 var(--color-secondary);
            transition: all 0.4s ease;
        }
        
        .about-image img:hover {
            transform: translate(-10px, -10px);
            box-shadow: 30px 30px 0 var(--color-secondary);
        }
        
        .about-content {
            flex: 1;
            min-width: 300px;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            font-weight: 700;
            color: var(--color-primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .experience {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .experience-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-secondary);
        }
        
        .experience-text {
            font-size: 1.1rem;
            color: var(--color-dark);
        }
        
        /* Hygiene Section */
        .hygiene {
            padding: 6rem 5%;
            background-color: var(--color-light);
            position: relative;
        }

        .hygiene .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .dark-mode .hygiene {
            background-color: #121212;
        }
        
        .hygiene-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hygiene-card {
            background: white;
            border-radius: 0;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid var(--color-border);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .dark-mode .hygiene-card {
            background: #222;
            border-color: #333;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hygiene-card:nth-child(1) { animation-delay: 0.2s; }
        .hygiene-card:nth-child(2) { animation-delay: 0.4s; }
        .hygiene-card:nth-child(3) { animation-delay: 0.6s; }
        .hygiene-card:nth-child(4) { animation-delay: 0.8s; }
        
        .hygiene-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-secondary);
        }
        
        .hygiene-icon {
            font-size: 3rem;
            color: var(--color-secondary);
            margin-bottom: 1.5rem;
        }
        
        .hygiene-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }
        
        .hygiene-card p {
            color: #666;
            line-height: 1.8;
        }
        
        .dark-mode .hygiene-card p {
            color: #aaa;
        }
                  /* Galería Section - Extendida */
        .gallery {
            padding: 6rem 5%;
            background-color: white;
        }
        
        .dark-mode .gallery {
            background-color: #1a1a1a;
        }
        
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            font-weight: 700;
            color: var(--color-primary);
        }
        
        .gallery-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .gallery-description {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }
        
        .dark-mode .gallery-description {
            color: #bbb;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            aspect-ratio: 4/5;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.8;
        }
        
        .gallery-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .gallery-category {
            background-color: white;
            border: 1px solid var(--color-border);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .dark-mode .gallery-category {
            background-color: #222;
            border-color: #333;
            color: #e0e0e0;
        }
        
        .gallery-category:hover, .gallery-category.active {
            background-color: var(--color-secondary);
            color: white;
            border-color: var(--color-secondary);
        }
        
        /* Estilos para el carrusel dentro de la galería */
        .gallery-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .carousel-inner {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
            height: 100%;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .carousel-controls {
            opacity: 1;
        }
        
        .carousel-control {
            background: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .carousel-control:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
            z-index: 5;
        }
        
        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .carousel-indicator.active {
            background: white;
        }
        
        /* Nuevos estilos para la galería extendida */
        .gallery-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            color: var(--color-text);
        }

        .gallery-stats span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .gallery-stats i {
            color: var(--color-secondary);
        }

        .gallery-grid {
            position: relative;
        }

        .load-more {
            display: block;
            margin: 3rem auto 0;
            background: var(--color-secondary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .load-more:hover {
            background: var(--color-primary);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            padding: 2rem;
            overflow: auto;
        }

        .lightbox-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .lightbox-img {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
            margin-bottom: 1rem;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10;
        }

        .lightbox-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 5px;
            color: white;
        }

        .lightbox-info h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .lightbox-info p {
            margin-bottom: 0.5rem;
        }

        .lightbox-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .lightbox-tag {
            background: rgba(108, 180, 193, 0.2);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        

        
        /* Booking Section */
        .booking {
            padding: 6rem 5%;
            background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.9)), 
                        url('https://raw.githubusercontent.com/ink-art-tattoo/Imagenes/refs/heads/main/Cu%C3%A1nto-gana-un-tatuador.jpg') no-repeat center center/cover;
            text-align: center;
            position: relative;
            color: #fff;
        }
        
        .booking .section-title {
            color: #fff !important;
        }

        .booking .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .booking p {
            color: #eee;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 0;
            padding: 2.5rem 2rem;
            width: 100%;
            max-width: 280px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 2s ease forwards;
        }
        
        .contact-card:nth-child(1) { animation-delay: 0.3s; }
        .contact-card:nth-child(2) { animation-delay: 0.6s; }
        
        .contact-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-secondary);
        }
        
        .contact-icon {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        
        .contact-card h3 {
            margin-bottom: 1rem;
            color: #fff;
            font-size: 1.6rem;
        }
        
        .contact-card p {
            color: #ddd;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .contact-link {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 0.9rem 2rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            letter-spacing: 1px;
            border: 1px solid #fff;
        }
        
        .contact-link:hover {
            background: var(--color-secondary);
            border-color: var(--color-secondary);
        }
        
        /* Nuevo Footer Moderno */
        footer {
            background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.9)), 
                        url('/imgs/img-new/3.jpg') no-repeat center center/cover;
            color: #f8fafc;
            padding: 4rem 5% 0;
            position: relative;
            overflow: hidden;
        }
        
        .dark-mode footer {
            background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.9)), 
                        url('/imgs/img-new/3.jpg') no-repeat center center/cover;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .footer-column {
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            font-family: 'Oswald', sans-serif;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--color-secondary);
        }
        
        .footer-description {
            color: #cbd5e1;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: white;
            padding-bottom: 0.5rem;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--color-secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            list-style: none;
        }
        
        .footer-links li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .footer-links li a i {
            margin-right: 10px;
            color: var(--color-secondary);
            font-size: 0.9rem;
            transition: transform 0.3s;
        }
        
        .footer-links li a:hover {
            color: var(--color-secondary);
        }
        
        .footer-links li a:hover i {
            transform: translateX(5px);
        }
        
        .footer-contact li {
            margin-bottom: 1rem;
            list-style: none;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact li i {
            margin-right: 10px;
            color: var(--color-secondary);
            font-size: 1.1rem;
            margin-top: 4px;
        }
        
        .footer-contact li span {
            color: #cbd5e1;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .footer-hours li {
            margin-bottom: 0.8rem;
            list-style: none;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-hours li i {
            margin-right: 10px;
            color: white;
            font-size: 1.1rem;
            margin-top: 4px;
        }
        
        .footer-hours li span {
            color: #cbd5e1;
            font-size: 1rem;
        }
        
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social-icons .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer-social-icons .social-icon:hover {
            background: var(--color-secondary);
            transform: translateY(-5px);
            border-color: var(--color-secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            text-align: center;
        }
        
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        
        
        .footer-pattern {
            position: absolute;
            bottom: 0;
            right: 0;
            opacity: 0.03;
            width: 50%;
            height: auto;
            z-index: 1;
        }

        /* Política de Cookies Section */
        .policy-container {
            max-width: 1000px;
            margin: 120px auto 3rem;
            padding: 0 5%;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .policy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--color-primary);
            position: relative;
            display: inline-block;
        }
        
        .policy-header h1:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .policy-header p {
            color: var(--color-text);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .dark-mode .policy-header p {
            color: #bbb;
        }
        
        .policy-content {
            background-color: white;
            padding: 3rem;
            border-radius: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-border);
        }
        
        .dark-mode .policy-content {
            background-color: #1a1a1a;
            border-color: var(--color-border);
        }
        
        .policy-section {
            margin-bottom: 2.5rem;
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            color: var(--color-secondary);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .policy-section h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background-color: var(--color-secondary);
            bottom: 0;
            left: 0;
        }
        
        .policy-section p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: var(--color-text);
        }
        
        .dark-mode .policy-section p {
            color: #e0e0e0;
        }
        
        .policy-list {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        
        .policy-list li {
            margin-bottom: 0.8rem;
            line-height: 1.7;
            color: var(--color-text);
        }
        
        .dark-mode .policy-list li {
            color: #e0e0e0;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid var(--color-border);
            padding: 12px 15px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: var(--color-secondary);
            color: white;
            font-weight: 600;
        }
        
        .dark-mode .cookie-table th {
            background-color: var(--color-secondary);
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(108, 180, 193, 0.05);
        }
        
        .dark-mode .cookie-table tr:nth-child(even) {
            background-color: rgba(93, 167, 182, 0.1);
        }
        
        .cookie-controls {
            background-color: rgba(108, 180, 193, 0.1);
            padding: 1.5rem;
            border-radius: 5px;
            margin: 2rem 0;
            border-left: 3px solid var(--color-secondary);
        }
        
        .cookie-controls h3 {
            margin-bottom: 1rem;
            color: var(--color-secondary);
        }
        
        .cookie-controls p {
            margin-bottom: 1.2rem;
        }
        
        .cookie-btn {
            display: inline-block;
            background: var(--color-secondary);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 10px;
        }
        
        .cookie-btn:hover {
            background: var(--color-primary);
        }
        
        .policy-update {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--color-border);
            font-style: italic;
            color: #666;
        }
        
        .dark-mode .policy-update {
            color: #aaa;
        }
        
        /* Estilos específicos para la página de Aviso Legal */
        .legal-section {
            padding: 8rem 5% 4rem;
            background-color: white;
            min-height: 100vh;
        }
        
        .dark-mode .legal-section {
            background-color: #1a1a1a;
        }
        
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .legal-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            font-weight: 700;
            color: var(--color-primary);
            text-align: center;
        }
        
        .legal-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .legal-content {
            background: var(--color-accent);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-border);
        }
        
        .dark-mode .legal-content {
            background: #222;
            border-color: #333;
        }
        
        .legal-section h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--color-secondary);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .legal-section h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--color-secondary);
            bottom: 0;
            left: 0;
        }
        
        .legal-section p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .legal-section ul {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        
        .legal-section li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .legal-section li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-secondary);
            font-weight: bold;
        }
        
        .update-date {
            text-align: right;
            font-style: italic;
            margin-top: 2rem;
            color: #666;
            border-top: 1px solid var(--color-border);
            padding-top: 1rem;
        }
        
        .dark-mode .update-date {
            color: #aaa;
            border-top-color: #333;
        }
        
        /* Hero Section para política */
        .privacy-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(245, 245, 245, 0.95)),
                        url('https://raw.githubusercontent.com/ink-art-tattoo/Imagenes/refs/heads/main/Tattoo_ARtist-768x1152.jpg.webp') no-repeat center center/cover;
            padding: 0 5%;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .dark-mode .privacy-hero {
            background: linear-gradient(to top, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9)),
                        url('https://raw.githubusercontent.com/ink-art-tattoo/Imagenes/refs/heads/main/Tattoo_ARtist-768x1152.jpg.webp') no-repeat center center/cover;
        }
        
        .privacy-hero-content {
            text-align: center;
            max-width: 800px;
            z-index: 10;
            padding-top: 20px;
        }
        
        .privacy-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--color-primary);
        }
        
        .dark-mode .privacy-hero h1 {
            color: var(--color-dark);
        }
        
        .privacy-hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: #555;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .dark-mode .privacy-hero p {
            color: #bbb;
        }
        
        /* Contenido de Política */
        .privacy-content {
            padding: 6rem 5%;
            background-color: white;
            position: relative;
        }
        
        .dark-mode .privacy-content {
            background-color: #1a1a1a;
        }
        
        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            font-weight: 700;
            color: var(--color-primary);
        }
        
        .dark-mode .section-title {
            color: var(--color-dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .privacy-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-border);
        }
        
        .privacy-section:last-child {
            border-bottom: none;
        }
        
        .privacy-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--color-secondary);
        }
        
        .privacy-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .privacy-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .privacy-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .highlight-box {
            background-color: rgba(108, 180, 193, 0.1);
            border-left: 4px solid var(--color-secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        
        .highlight-box p {
            margin-bottom: 0;
        }
        
        .date-updated {
            font-size: 0.9rem;
            color: #777;
            font-style: italic;
            margin-top: 3rem;
            text-align: right;
        }
        
        .dark-mode .date-updated {
            color: #999;
        }

        /* Términos de Uso Section */
        .terms-section {
            padding: 8rem 5% 4rem;
            background-color: white;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .dark-mode .terms-section {
            background-color: #1a1a1a;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .terms-header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .terms-header h1 span {
            color: var(--color-secondary);
        }
        
        .last-updated {
            color: #777;
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        
        .dark-mode .last-updated {
            color: #aaa;
        }
        
        .terms-content {
            background: var(--color-accent);
            padding: 3rem;
            border-radius: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-border);
        }
        
        .dark-mode .terms-content {
            background: #222;
            border-color: #333;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            color: var(--color-primary);
            margin: 2.5rem 0 1.2rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .terms-section h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            color: var(--color-primary);
            margin: 2rem 0 1rem;
            font-weight: 500;
        }
        
        .terms-section p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-text);
        }
        
        .terms-section ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }
        
        .terms-section ul li {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .highlight-box {
            background: rgba(108, 180, 193, 0.1);
            border-left: 4px solid var(--color-secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        
        .dark-mode .highlight-box {
            background: rgba(108, 180, 193, 0.15);
        }
        
        .contact-info-box {
            background: rgba(108, 180, 193, 0.05);
            border: 1px solid var(--color-secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 5px;
            text-align: center;
        }
        
        .dark-mode .contact-info-box {
            background: rgba(108, 180, 193, 0.1);
        }
        
        .contact-info-box p {
            margin-bottom: 0.5rem;
        }
        
        .contact-info-box a {
            color: var(--color-secondary);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-box a:hover {
            text-decoration: underline;
        }
        
        
        /* Responsive Design */


         @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .nav-wn { 
                display: none !important;
                }

        }

        

        @media (max-width: 768px) {

                   @media (max-width: 768px) {
            header {
                padding: 0.8rem 5%;
            }

            .hidden-left, .hidden-right, .hidden-top, .hidden-bottom {
                transform: translateY(-50px) scale(0.95);
            }
            }


            .hero h1 {
                font-size: 2.5rem;
                
            }
            
            .section-title {
                font-size: 2rem;
            }

            
            .nav-links {
                
                width: 100%;
                max-width: 100%;
            }
            
            .hero-content {
                padding-top: 60px;
            }
            
            .contact-options {
                gap: 2rem;
            }
            
            .contact-card, .hygiene-card {
                max-width: 100%;
            }
            
            .typewriter-text {
                font-size: 2.5rem;
            }
            
            .about-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .about-image {
                order: -1;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-column {
                margin-bottom: 0;
            }
            
            .footer-title {
                margin-top: 1.5rem;
            }
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-content {
                padding: 2rem;
            }
            
            .policy-section h2 {
                font-size: 1.6rem;
            }
            
            .policy-container {
                margin-top: 100px;
            }

            .legal-section {
                padding: 6rem 5% 2rem;
            }
            
            .legal-title {
                font-size: 2rem;
            }
            
            .legal-content {
                padding: 1.5rem;
            }
            .privacy-hero {
                height: 50vh;
            }
            
            .privacy-hero h1 {
                font-size: 2.5rem;
            }
            
            .privacy-section h3 {
                font-size: 1.5rem;
            }

             .terms-section {
                padding: 7rem 5% 3rem;
            }
            
            .terms-header h1 {
                font-size: 2.5rem;
            }
            
            .terms-content {
                padding: 2rem;
            }
            
            .terms-section h2 {
                font-size: 1.6rem;
            }
            
            .terms-section h3 {
                font-size: 1.3rem;
            }
            
        }
        
        @media (max-width: 480px) {

            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }



            .nav-links {
                
                font-size: 1.3rem;
            }
            
            .nav-links ul li a {
                font-size: 1.3rem;
            }

            


            
            .contact-card, .hygiene-card {
                padding: 1.5rem;
            }
            
            .footer-logo {
                font-size: 2rem;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .typewriter-text {
                font-size: 2rem;
            }
            
            .cursor {
                height: 2.5rem;
            }
            
            .experience {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .carousel-control {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 1.5rem;
            }
            
            .policy-section h2 {
                font-size: 1.4rem;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            .legal-title {
                font-size: 1.8rem;
            }

            .privacy-hero {
                height: 40vh;
            }
            
            .privacy-hero h1 {
                font-size: 2rem;
            }
            
            .privacy-hero p {
                font-size: 1rem;
            }
            
            
            .privacy-section h3 {
                font-size: 1.3rem;
            }

            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 1.5rem;
            }
            
            .terms-section h2 {
                font-size: 1.4rem;
            }
            
            .terms-section h3 {
                font-size: 1.2rem;
            }
            
            .terms-section p, .terms-section li {
                font-size: 1rem;
            }


            
            
        }

        /* Oculta en pantallas de escritorio (ancho mínimo típico: 992px)*/
@media (min-width: 992px) {
  .menu-btn {
    display: none !important;
  }


}





        
        .nav-wn ul {
            display: flex;
            list-style: none;
            height: 100%;
        }
        
        .nav-wn li {
            position: relative;
        }
        
        .nav-wn a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            padding: 0rem 1.2rem;
            display: block;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-wn a:hover {
            color: var(--color-secondary);
        }
        
        /* Efecto subrayado animado */
        .nav-wn a::after {
            content: '';
            position: absolute;
            bottom: 0%;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--color-secondary);
            transform: translateX(-50%);
            transition: var(--transition);
        }
        
        .nav-wn a:hover::after,
        .nav-wn a.active::after {
            width: 80%;
        }
        
        .nav-wn a.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        
        /* Responsive */
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            
            .nav-wn {
                width: 100%;
                border-top: 1px solid var(--light-gray);
            }
            
            .nav-wn ul {
                justify-content: space-around;
            }
            
            .nav-wn a {
                padding: 1.2rem 0.8rem;
                font-size: 0.9rem;
            }
            
        }
        
                /* Reviews Section */
        .reviews-section {
            padding: 40px 0; /* Reducir padding superior ya que no hay header */
            background-color: var(--color-light);
            color: var(--color-primary);
            font-family: 'Poppins', sans-serif;
            text-align: center;
        }
        
               .reviews-section .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--color-secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #2d2d2d;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--color-secondary);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .review-card {
            background: #ececec;
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        .dark-mode .review-card { 
          background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.9)), 
                        url('/imgs/img-new/3.jpg') no-repeat center center/cover;
          
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--color-secondary);
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--color-secondary));
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--color-secondary);
        }

        .client-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .client-details p {
            color: var(--color-primary);
            font-size: 14px;
        }

        .rating {
            color: gold;
            font-size: 18px;
            display: flex;
            gap: 2px;
        }

        .review-content {
            margin-bottom: 20px;
        }

        .review-content p {
            font-size: 16px;
            line-height: 1.8;
        }

        .tattoo-info {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tattoo-info img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }

        .tattoo-info img:hover {
            transform: scale(1.1);
        }

        .tattoo-details h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .tattoo-details p {
            color: var(--color-primary);
            font-size: 14px;
        }

        /* Formulario para nuevas reseñas */
        .add-review-form {
            margin-top: 60px;
            padding: 30px;
            background: var(--color-accent);
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .add-review-form h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--color-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #444;
            background: var(--color-accent);
            color: var(--color-primary);
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }

        .star-rating i {
            font-size: 24px;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }

        .star-rating i.active,
        .star-rating i.hovered {
            color: var(--color-secondary);
        }

        .submit-btn {
            background: var(--color-secondary);
            color: var(--color-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--color-secondary);
        }

        /* Mensaje de éxito/error */
        .message {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
            text-align: center;
        }

        .message.success {
            background: rgba(46, 204, 113, 0.2);
            border: 1px solid #2ecc71;
            color: #2ecc71;
        }

        .message.error {
            background: rgba(231, 76, 60, 0.2);
            border: 1px solid #e74c3c;
            color: #e74c3c;
        }
        
        /* Previsualización de imágenes */
        .image-preview-container {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .image-preview {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px dashed #444;
        }
        
        .image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-preview .remove-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 61, 113, 0.8);
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .upload-btn {
            display: inline-block;
            background: #444;
            color: #fff;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s;
        }
        
        .upload-btn:hover {
            background: #555;
        }
        
        .file-input {
            display: none;
        }

        .no-reviews {
            text-align: center;
            padding: 30px;
            color: var(--color-secondary);
            font-size: 18px;
            grid-column: 1 / -1;
        }

        .artist-display {
            background: var(--color-secondary);
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Modal de carga */
        .loading-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .loading-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            
            padding: 40px;
            margin-top: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 100%;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top: 5px solid var(--color-secondary);
            margin: 0 auto 25px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .modal-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--color-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .modal-content p {
            color: white;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .loading-modal .logo-text {

            margin-top: 50% ;
            text-align: center;
            max-width: 500px;
            width: 100%;
            font-size: 3rem;
            color: white;
        }
        
        /* Paginación */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }
        
        .pagination-btn {
            background: #2d2d2d;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pagination-btn:hover {
            background: var(--color-secondary);
        }
        
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .pagination-btn:disabled:hover {
            background: #2d2d2d;
        }
        
        .pagination-info {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 16px;
            margin: 0 15px;
        }

        
        /* Mensaje de login requerido */
        .login-required {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            margin-top: 60px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .login-required h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--color-primary);
        }
        
        .login-required p {
            color: var(--color-primary);
            margin-bottom: 25px;
            font-size: 18px;
        }
        
        .login-action-btn {
            background: var(--color-secondary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .login-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--color-secondary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .filters {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
            
            .pagination-container {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
          
          .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(to top, rgba(228,226,223,0.453), rgba(153,153,153,0.408)),
                        url('/imgs/back.png') no-repeat center center/cover;
            padding: 0 5%;
            overflow: hidden;
            
        }
          
          
          .dark-mode .hero {
            background: linear-gradient(to top, rgba(18,18,18,0.466), rgba(18,18,18,0.68)),
                        url('/imgs/back.png') no-repeat center center/cover;
                        
        
            }
            
            .scroll-indicator {
            opacity: 1;
        }
          
            .review-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .rating {
                justify-content: flex-start;
            }
            
            .image-preview {
                width: 80px;
                height: 80px;
            }
            
            .pagination-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
        }

        .access-container {
    position: relative;
    display: flex;
    align-items: center;
}

.access-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    color: var(--primary);
}
.access-btn i {
  display: flex;
  align-items: center;
  
    justify-content: center;
    margin-top: 10px;
    
    
}


.access-btn:hover {
    background: rgba(93, 167, 182, 0.3);
    transform: scale(1.1);
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 10px rgba(93, 167, 182, 0.123);
    transition: all 0.3s;
    
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(93, 167, 182, 0.274);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

       