@font-face {
            font-family: 'Los Angeles Classic';
            src: url(../assets/fonts/los-angeles.ttf) format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Permanent+Marker&display=swap');

        :root {
            --pink: #d1a3e8;
            --dark: #0a0a0a;
            --dark2: #111;
            --dark3: #1a1a1a;
            --cream: #d1a3e8;
            --muted: #888;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Libre Baskerville", serif;
            letter-spacing: 1px;
            color: var(--cream);
        }

        /* NAV */
        .navbar {
            position: fixed;
            justify-content: center;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            display: flex;
            align-items: center;
            padding: 1rem 2.5rem;
            background: rgba(10, 10, 10, 0);
            transition: background .4s, border-color .4s;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.97);
            border-bottom-color: rgba(212, 175, 55, 0.12);
            backdrop-filter: blur(12px);
        }

        .navbar-logo {
            font-family: 'Los Angeles Classic', sans-serif;
            font-size: 1.3rem;
            letter-spacing: 4px;
            color: var(--pink);
            text-decoration: none;
        }

        .img-logo-hero {
            width: 100%;
            max-width: 600px;
            height: auto;
            filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.8));
        }

        /* LOGO HERO (LOS SANTOS BARBERÍA) */
        .logo-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: -20rem;
            margin-top: -12rem;
            animation: fadeUp 0.4s ease both;
        }

        /* HERO */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 100dvh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/fotos_web/pruebaback1.webp) no-repeat;
            background-size: cover;
            background-position: center bottom;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(transparent, var(--dark2));
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            border: 1px solid rgba(212, 175, 55, 0.35);
            padding: .4rem 1.2rem;
            border-radius: 30px;
            font-size: .72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--pink);
            margin-bottom: 2rem;
            animation: fadeUp 0.4s ease both;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.2rem, 11vw, 7rem);
            font-weight: 900;
            letter-spacing: 3px;
            line-height: 1;
            margin-bottom: .8rem;
            animation: fadeUp 0.4s ease both;
        }

        .hero-tagline {
            font-size: clamp(.95rem, 2.5vw, 1.3rem);
            color: rgba(244, 244, 244, .7);
            margin-bottom: 2.5rem;
            font-style: italic;
            animation: fadeUp 0.4s ease both;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp .8s .45s ease both;
        }

        .btn-gold {
            display: inline-flex;
            font-family: 'Bebas Neue', sans-serif;
            align-items: center;
            gap: 5rem;
            background-color: white;
            color: #000;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 2px;
            padding: .9rem 2.2rem;
            border: none;
            border-radius: 40px;
            text-decoration: none;
            transition: background .3s, transform .3s, box-shadow .3s;
        }

        .btn-gold:hover {
            background: #807f7f;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 249, 249, 0.3);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* LOCALES */
        .locales-section {
            padding: 5rem 1.5rem;
            background: var(--dark2);
        }

        .locales-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .sec-label {
            font-size: .88rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--pink);
            margin-bottom: .6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .8rem;
        }

        .sec-label-link {
            font-size: .88rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--pink);
            display: flex;
            align-items: center;
        }

        .sec-label-link:hover {
            color: #767776;
        }

        .sec-title {
            font-family: 'Los Angeles Classic', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 2.5rem;
            letter-spacing: 3px;
        }

        .locales-grid {
            display: flex;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            justify-content: center;
        }

        /* --- TARJETAS DE LOCALES CON IMAGEN DE FONDO --- */
        .local-card {
            background: var(--dark3);
            border: 1px solid rgba(212, 211, 207, 0.2);
            border-radius: 16px;
            transition: all .3s;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: var(--cream);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            /* Empuja el texto hacia abajo */
            min-height: 350px;
            /* Altura de la foto */
        }

        .local-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--pink);
            transform: scaleX(0);
            transition: transform .3s;
            z-index: 10;
        }

        .local-card:hover {
            border-color: var(--pink);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
        }

        .local-card:hover::before {
            transform: scaleX(1);
        }

        /* La imagen de la fachada */
        .local-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .local-card:hover .local-card-img {
            transform: scale(1.05);
            /* Efecto zoom a la foto al pasar el mouse */
        }

        /* Sombra oscura sobre la foto para que la letra se lea perfecto */
        .local-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 2;
        }

        /* Contenedor del texto por encima de la foto */
        .local-card-content {
            position: relative;
            z-index: 3;
            padding: 1.2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Centra el texto */
        }

        .local-card-content h3 {
            font-family: 'Segoe UI', sans-serif !important;
            font-size: 1rem;
            color: var(--pink);
            margin: 0 0 5px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .local-card-content p {
            font-size: 1rem;
            color: #ccc;
            margin: 0 0 20px 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        /* Botón de reservar que resalta sobre la foto */
        .local-cta {
            display: inline-flex;
            align-items: center;
            background: var(--pink);
            color: #000;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: .752rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Segoe UI', sans-serif !important;
            transition: background 0.3s, transform 0.3s;
        }

        .local-card:hover .local-cta {
            background: #fff;
            transform: scale(1.03);
        }

        .music-btn {
            position: fixed;
            bottom: 100px;
            /* Un poco más arriba que el de WhatsApp */
            right: 28px;
            z-index: 1000;
            background: var(--dark3);
            color: var(--pink);
            border: 1px solid var(--pink);
            padding: 10px 15px;
            border-radius: 30px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .music-btn:hover {
            background: var(--pink);
            color: var(--dark);
        }

        /* GALLERY */
        #cortes,
        #pilchas {
            background: var(--dark);
        }

        .gallery-outer {
            padding: 5rem 0 0;
        }

        .section-wrap {
            padding: 0 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery {
            display: flex;
            overflow-x: auto;
            gap: 16px;
            padding: 1.5rem;
            scrollbar-width: none;
        }

        .gallery::-webkit-scrollbar {
            display: none;
        }

        .gallery img {
            min-width: 85vw;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            flex-shrink: 0;
            transition: transform 0.3s;
            pointer-events: none;
        }

        @media(min-width:768px) {
            .gallery img {
                min-width: 350px;
            }
        }

        /* TIENDA ONLINE  */
        #shop {
            background: var(--dark2);
            padding: 60px 20px;
            text-align: center;
        }

        .section-title {
            color: var(--pink);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .products {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #f5f5f5 #333;
            padding-bottom: 10px;
        }

        .products::-webkit-scrollbar {
            height: 10px;
        }

        .products::-webkit-scrollbar-track {
            background: #222;
            border-radius: 10px;
            margin: 0 20px;
        }

        .products::-webkit-scrollbar-thumb {
            background: #f5f5f5;
            border-radius: 10px;
            border: 2px solid #222;
        }

        .card {
            min-width: 80vw;
            max-width: 320px;
            background: #1a1a1a;
            padding: 15px;
            border-radius: 15px;
            border: 2px solid #333;
            scroll-snap-align: center;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-family: 'Segoe UI', sans-serif;
            letter-spacing: normal;
            transition: transform .3s;
        }

        @media (min-width: 768px) {
            .card {
                min-width: 300px;
            }
        }

        .card:hover {
            transform: translateY(-4px);
        }

        .card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .card h3 {
            font-size: 1.1rem;
            margin: 5px 0;
        }

        .card p {
            color: #ffffff;
            font-weight: bold;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .card a {
            display: block;
            text-align: center;
            padding: 12px 15px;
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            border: 1px solid #ffffff;
            border-radius: 5px;
            font-family: 'Los Angeles Classic', sans-serif;
            font-family: 'Segoe UI', sans-serif;
            background: transparent;
            transition: 0.3s;
        }

        .card a:hover {
            background: #71706e;
            color: #000;
        }

        /* FOOTER */
        footer {
            background: #050505;
            color: #fff;
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid var(--pink);
            font-family: 'Segoe UI', sans-serif;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h4 {
            color: var(--pink);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .footer-section p,
        .footer-section a {
            font-size: 0.9rem;
            line-height: 1;
            color: #ccc;
            margin: 5px 0;
        }

        .footer-section a {
            color: #f3f3f3;
        }

        .footer-section a:hover {
            color: var(--pink);
        }

        .social-icons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-icons a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 20px;
            border: 1px solid #333;
            border-radius: 5px;
            transition: 0.3s;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }

        .social-icons a:hover {
            background: var(--pink);
            color: #443939;
            border-color: var(--pink);
        }

        .copyright a,
        .copyright p {
            margin-top: 70px;
            padding-top: 20px;
            border-top: 1px solid #1a1a1a;
            color: #aaa;
            font-size: 0.80rem;
        }

        /* WHATSAPP FLOTANTE */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 1000;
            background: #25D366;
            color: white;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* MODAL */
        .overlay {
            position: fixed;
            inset: 0;
            z-index: 800;
            background: rgba(0, 0, 0, .85);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            animation: fadeIn .3s ease;
        }

        .overlay.hidden {
            display: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .modal {
            background: var(--dark3);
            border: 1px solid rgba(70, 70, 70, 0.971);
            border-radius: 20px;
            max-width: 580px;
            width: 100%;
            padding: 2rem;
            animation: slideUp .35s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: .4rem;
            text-align: center;
            padding: 12px;
        }

        .modal-sub {
            font-size: .75rem;
            color: var(--muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .modal-locales {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        #modalTattoo .modal-locales {
            display: flex;
            justify-content: center;
        }

        #modalTattoo .modal-local-card {
            width: 100%;
            max-width: 280px;
        }

        @media(max-width:600px) {

            .locales-grid,
            .modal-locales {
                display: grid;
                grid-template-columns: 1fr;
            }
        }

        .modal-local-card {
            border: 1px solid rgba(248, 248, 248, 0.868);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all .3s;
            text-align: center;
            cursor: pointer;
        }

        .modal-local-card:hover {
            border-color: var(--pink);
            background: rgba(212, 175, 55, .06);
            transform: translateY(-2px);
        }

        .modal-local-card .icon {
            font-size: 2rem;
            margin-bottom: .7rem;
        }

        .modal-local-card h3 {

            font-family: 'Segoe UI', sans-serif !important;
            font-size: 1rem;
            color: var(--pink);
            margin-bottom: .4rem;
        }

        .modal-local-card p {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* SECCIÓN EQUIPO Y TATUADORES */
        .team-section {
            padding: 5rem 1.5rem;
            background: var(--dark);
        }

        .tattoo-section {
            padding: 5rem 1.5rem 2rem;
            background: var(--dark2);
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            padding-top: 1rem;
        }

        .team-card {
            background: var(--dark3);
            border: 1px solid rgba(212, 211, 207, 0.15);
            border-radius: 16px;
            padding: 2rem 1rem;
            text-align: center;
            width: calc(33.333% - 1rem);
            transition: all 0.3s;
        }

        .team-card:hover {
            border-color: var(--pink);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
        }

        .team-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 2px solid var(--pink);
            padding: 3px;
        }

        .team-card h3 {
            font-family: 'Segoe UI', sans-serif !important;
            color: var(--pink);
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }

        .team-card p {
            font-size: 0.8rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Estilos para los nombres de tatuadores */
        .tattoo-names {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .tattoo-names a {
            font-family: 'Segoe UI', sans-serif;
            color: var(--pink);
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .tattoo-names a:hover {
            color: #7f648d
        }

        .tattoo-separator {
            color: var(--pink);
            font-size: 1rem;
        }

        /* Ajuste para celular de team-card*/
        @media (max-width: 600px) {
            .team-card {
                width: calc(50% - 0.75rem);
                padding: 1.5rem 0.5rem;
            }

            .team-img {
                width: 85px;
                height: 85px;
            }

            .team-card h3 {
                font-size: 1.2rem;
            }

            .team-card p {
                font-size: 0.7rem;
            }
        }

        /* carta de busqueda */
        .sec-title-busqueda {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            letter-spacing: 3px;
        }

        .busqueda-section {
            background: rgb(23, 22, 22);
            padding: 4rem 1.5rem;

        }

        .busqueda-inner {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .btn-gold-busqueda {
            display: inline-flex;
            font-family: 'Bebas Neue', sans-serif;
            align-items: center;
            gap: 5rem;
            background-color: rgb(142, 63, 176);
            box-shadow: #ce80f5 0px 4px 20px;
            color: #000;
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: 2px;
            padding: .9rem 2.25rem;
            border: none;
            border-radius: 10px;
            text-decoration: none;
            transition: background .3s, transform .3s, box-shadow .3s;
        }

        .btn-gold-busqueda:hover {
            background: rgba(191, 189, 189, 0.864);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 249, 249, 0.3);
        }



        /* Marca Desarrollador */
        .footer-dev {
            display: flex;
            justify-content: center;
            margin-top: 12px;
        }

        .footer-dev a {
            display: block;
            width: fit-content;
            padding: 10px 30px;
            background-color: #2e2d2d;
            border-radius: 25px;
            border-bottom: 4px solid var(--pink);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-dev p {
            margin: 0;
            text-align: center;
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 1px;
            font-family: 'DM Sans', sans-serif;
        }

        .footer-dev .dev-name {
            color: var(--pink);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-dev a:hover {
            transform: translateY(-1px);
        }

        .footer-dev a:hover .dev-name {
            color: #fff;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
        }

        /* Ajustes para celular */
        @media (max-width: 480px) {
            .logo-hero {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-bottom: -9rem;
                margin-top: -16rem;
                animation: fadeUp .8s .15s ease both;
            }

            .navbar {
                justify-content: center;
            }

            .navbar-logo {
                font-size: 1rem;
                letter-spacing: 4px;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 12vw, 4.5rem) !important;
                line-height: 1.1;
            }

            .hero-badge {
                margin-bottom: 1rem;
            }

            .btn-gold {
                padding: 12px 20px;
                width: 100%;
                justify-content: center;
            }

            .locales-inner {
                max-width: 300px;
                margin: 0 auto;
                text-align: center;
            }

            .gallery img {
                height: 350px !important;
                min-width: 50vw !important;
            }

            .card {
                min-width: 70vw !important;
                padding: 15px !important;
            }

            .modal {
                padding: 1.5rem 1rem;
            }

            .modal-local-card {
                padding: 1rem;
            }
        }