/* ==========================================================================
   WALK IN TATTOO CHILE - STYLESHEET
   Diseño premium, oscuro y moderno para estudio de tatuajes
   ========================================================================== */

/* Variables CSS */
:root {
    --color-primary: #81B4C3; /* Celeste principal */
    --color-secondary: #4E9DC1; /* Segundo azul */
    --color-accent: #FBE59E; /* Amarillo suave */
    --color-accent-warm: #DFAD70; /* Amarillo anaranjado */
    --color-bg-dark: #F5F9FA;
    --color-bg-darker: #FFFFFF;
    --color-bg-light: #E8F4F8;
    --color-text-primary: #2C3E50;
    --color-text-secondary: #5A6C7D;
    --color-text-muted: #8B9AA8;
    --color-border: #D1E4EC;
    
    --font-primary: 'Helvetica Neue', 'Arial', sans-serif;
    --font-heading: 'Futura', 'Century Gothic', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    --shadow-small: 0 2px 8px rgba(129, 180, 195, 0.15);
    --shadow-medium: 0 4px 16px rgba(129, 180, 195, 0.2);
    --shadow-large: 0 8px 32px rgba(129, 180, 195, 0.25);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sección */
.section {
    padding: 8rem 0;
}

/* Tipografía */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-primary);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 180, 195, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--color-primary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
}

.btn-text::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text:hover::after {
    margin-left: 1rem;
}

.btn-full {
    width: 100%;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInHalf {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.5;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeInDelay 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInDelay 1s ease 0.6s forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: rgba(129, 180, 195, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    padding: 0.6rem 0;
}

.header.scrolled .logo a,
.header.scrolled .nav-list a {
    color: var(--color-text-primary);
}

.header.scrolled .logo-img {
    filter: drop-shadow(0 2px 8px rgba(129, 180, 195, 0.18));
}

.header.scrolled .admin-icon {
    background: rgba(129, 180, 195, 0.12);
    border-color: rgba(129, 180, 195, 0.35);
    color: var(--color-text-primary);
}

.header.scrolled .language-btn {
    background: rgba(129, 180, 195, 0.12);
    border-color: rgba(129, 180, 195, 0.35);
    color: var(--color-text-primary);
}

.header.scrolled .language-btn:hover {
    background: rgba(129, 180, 195, 0.22);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--color-text-primary);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    display: block;
}

.logo-img {
    height: 58px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-warm);
    transition: var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Icono de Admin */
.admin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.admin-icon:hover {
    background: var(--color-accent-warm);
    border-color: var(--color-accent-warm);
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(223, 173, 112, 0.4);
}

.admin-icon svg {
    width: 20px;
    height: 20px;
}

/* Selector de idioma */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.language-btn:hover {
    border-color: var(--color-accent-warm);
    background: rgba(255, 255, 255, 0.3);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown button {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.language-dropdown button:hover {
    background: var(--color-bg-dark);
    color: var(--color-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition-fast);
}

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

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vh;
    height: 100vw;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 180, 195, 0.1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: min(1200px, 100%);
    padding: 0 2rem;
    background: transparent;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(129, 180, 195, 0.3);
}

.hero-banner {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 70vh;
    margin: 0 auto 3rem;
    object-fit: contain;
    opacity: 0.5;
    animation: fadeInHalf 1s ease forwards;
    filter: drop-shadow(0 4px 16px rgba(129, 180, 195, 0.3));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 1.4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    border: 2px solid #81B4C3;
    border-radius: 0;
    box-shadow: 
        0 0 0 1px rgba(129, 180, 195, 0.3),
        0 8px 30px rgba(129, 180, 195, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(129, 180, 195, 0.15);
    transition: all 0.4s ease;
    animation: subtleGlow 4s ease infinite, gentleFloat 4s ease-in-out infinite;
    z-index: 100;
    cursor: pointer;
    opacity: 1 !important;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 3;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #81B4C3, #4E9DC1, #81B4C3, #4E9DC1);
    background-size: 300% 300%;
    border-radius: 0;
    z-index: -1;
    opacity: 0.4;
    animation: borderFlow 6s linear infinite;
    filter: blur(6px);
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 1px rgba(129, 180, 195, 0.3),
            0 8px 30px rgba(129, 180, 195, 0.3),
            0 4px 15px rgba(0, 0, 0, 0.5),
            inset 0 1px 3px rgba(129, 180, 195, 0.15);
    }
    50% {
        box-shadow: 
            0 0 0 1px rgba(129, 180, 195, 0.5),
            0 10px 40px rgba(129, 180, 195, 0.5),
            0 6px 20px rgba(0, 0, 0, 0.6),
            inset 0 1px 5px rgba(129, 180, 195, 0.25);
    }
}

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

.cta-banner:hover {
    transform: translateY(-5px);
    border-color: #DFAD70;
    box-shadow: 
        0 0 0 1px rgba(223, 173, 112, 0.5),
        0 12px 40px rgba(129, 180, 195, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 5px rgba(223, 173, 112, 0.3);
}

.cta-banner:hover .cta-banner-track {
    animation-duration: 12s;
}

.cta-banner-track {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    min-width: 200%;
    will-change: transform;
    animation: ctaMarquee 18s linear infinite;
    animation-direction: reverse;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 0 0 50%;
    gap: 2rem;
    padding-right: 2rem;
    white-space: nowrap;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(90deg, #ffffff 0%, #fbe59e 45%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(251, 229, 158, 0.2);
    display: inline-block;
    position: relative;
    padding: 0.1rem 0;
}

.cta-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 229, 158, 0.9) 50%, transparent 100%);
    opacity: 0.75;
}

.cta-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #FBE59E;
    display: inline-block;
    animation: arrowPulse 1.5s ease-in-out infinite;
    font-weight: 700;
    filter: drop-shadow(0 0 10px rgba(251, 229, 158, 0.45));
}

@keyframes ctaMarquee {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateX(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(5px);
        opacity: 1;
    }
}

.cta-banner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(129, 180, 195, 0.15),
        rgba(129, 180, 195, 0.3),
        rgba(129, 180, 195, 0.15),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 4s ease-in-out infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes shine {
    0% { 
        left: -50%;
    }
    50% { 
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* ==========================================================================
   EXPERIENCIA
   ========================================================================== */

.experience {
    background: var(--color-bg-darker);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

.experience-image {
    position: relative;
    height: 600px;
}

/* Placeholder de imagen */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.image-placeholder:hover {
    border-color: var(--color-primary);
}

/* ==========================================================================
   ESTILOS
   ========================================================================== */

.styles {
    background: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.style-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-light);
    transition: var(--transition-normal);
    cursor: pointer;
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.style-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.style-image .image-placeholder {
    transition: var(--transition-slow);
}

.style-card:hover .image-placeholder {
    transform: scale(1.1);
}

.style-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(129, 180, 195, 0.95) 100%);
    z-index: 1;
}

.style-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.style-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.style-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

/* ==========================================================================
   ARTISTAS
   ========================================================================== */

.artists {
    background: var(--color-bg-darker);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-light);
    transition: var(--transition-normal);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.artist-image {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--color-bg-darker);
}

.artist-image .image-placeholder,
.artist-photo {
    transition: var(--transition-slow);
}

.artist-card:hover .image-placeholder,
.artist-card:hover .artist-photo {
    transform: scale(1.05);
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.artist-photo-diego {
    object-position: center 12%;
}

.artist-photo-kathy {
    object-position: center 8%;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(129, 180, 195, 0.95) 100%);
    z-index: 1;
}

.artist-info {
    padding: 2rem;
    text-align: center;
}

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.artist-specialty {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   GALERÍA
   ========================================================================== */

.gallery {
    background: var(--color-bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-large);
}

.gallery-item .image-placeholder {
    transition: var(--transition-slow);
}

.gallery-item:hover .image-placeholder,
.gallery-item:hover .gallery-photo {
    transform: scale(1.1);
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--color-text-primary);
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-text-primary);
    z-index: 10001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-primary);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image-placeholder {
    width: 80vw;
    height: 80vh;
    max-width: 1200px;
    max-height: 800px;
}

.lightbox-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-page {
    padding-top: 10rem;
    min-height: 100vh;
}

.gallery-page-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-page-card {
    background: var(--color-bg-darker);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.gallery-page-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.gallery-page-caption {
    padding: 1rem 1.25rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    text-align: center;
}

/* ==========================================================================
   ESTUDIO
   ========================================================================== */

.studio {
    background: var(--color-bg-darker);
}

.studio-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.studio-block:last-child {
    margin-bottom: 0;
}

.studio-block-reverse {
    direction: rtl;
}

.studio-block-reverse > * {
    direction: ltr;
}

.studio-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.studio-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.studio-image {
    height: 450px;
}

.studio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */

.testimonials {
    background: var(--color-bg-dark);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.testimonials-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    transition: var(--transition-fast);
}

.testimonials-dots button.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================================================
   RESERVAS
   ========================================================================== */

.booking {
    background: var(--color-bg-darker);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.booking-features {
    margin-top: 3rem;
}

.booking-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-feature h4 {
    margin-bottom: 0.3rem;
    color: var(--color-text-primary);
}

.booking-feature p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.booking-form-container {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
    background: var(--color-bg-dark);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: -0.5rem;
    left: 0.7rem;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    border: 2px solid var(--color-border);
}

.form-group input:placeholder-shown,
.form-group textarea:placeholder-shown {
    border-color: var(--color-border);
}

.form-group select {
    cursor: pointer;
}

.form-error {
    color: var(--color-secondary);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--color-secondary);
}

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--color-text-secondary);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    background: var(--color-bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */

.contact {
    background: var(--color-bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-hours {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 8px;
}

.contact-hours h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.contact-map {
    height: 500px;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border-radius: 8px;
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

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

.footer {
    background: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-text-primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg-light);
        padding: 6rem 2rem 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-large);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid,
    .studio-block,
    .booking-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .studio-block-reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero-content picture {
        display: block;
        width: 100%;
    }

    .hero-banner {
        width: min(100%, 360px);
        max-height: 46vh;
        margin: 0.25rem auto 3rem;
        opacity: 0.85;
        animation: none;
        object-position: center;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-banner {
        width: 100vw;
        margin: 1.5rem 0 0 calc(50% - 50vw);
        padding: 1.2rem 0;
        border-radius: 0;
        border-width: 4px;
    }
    
    .cta-text {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
    
    .cta-icon {
        font-size: 1.8rem;
    }
    
    .cta-banner-content {
        gap: 1rem;
        padding-right: 1rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   BOTÓN FLOTANTE DE RESERVA (BOOK YOUR TATTOO)
   ========================================================================== */

.booking-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-primary);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(129, 180, 195, 0.4);
    z-index: 9998;
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: bookingPulse 3s infinite;
}

.booking-float:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(78, 157, 193, 0.6);
}

.booking-float-text {
    font-weight: 700;
}

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

@keyframes bookingPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(129, 180, 195, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(129, 180, 195, 0.7), 0 0 0 15px rgba(129, 180, 195, 0.1);
    }
}

/* Responsive Booking Button */
@media (max-width: 1024px) {
    .booking-float {
        right: 1.5rem;
        bottom: 8rem;
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .booking-float {
        right: 1rem;
        bottom: 7rem;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .booking-float-text {
        font-size: 0.85rem;
    }
    
    .booking-float svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .booking-float {
        right: 1rem;
        bottom: 6rem;
        padding: 0.9rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 40px;
    }
    
    .booking-float-text {
        font-size: 0.75rem;
    }
    
    .booking-float svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   BOTÓN FLOTANTE INSTAGRAM
   ========================================================================== */

.instagram-float {
    position: fixed;
    left: 2rem;
    bottom: 6.75rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.6);
}

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

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* ==========================================================================
   BOTÓN FLOTANTE TELÉFONO
   ========================================================================== */

.phone-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    background: #111111;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
}

.phone-float:hover {
    background: #000000;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

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

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .instagram-float {
        left: 1.5rem;
        bottom: 6.25rem;
        width: 55px;
        height: 55px;
    }

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

    .whatsapp-float {
        left: 1.5rem;
        bottom: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .phone-float {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 55px;
        height: 55px;
    }

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

@media (max-width: 480px) {
    .instagram-float {
        left: 1rem;
        bottom: 5.75rem;
        width: 50px;
        height: 50px;
    }

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

    .whatsapp-float {
        left: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .phone-float {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

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