/* ============================================================
   home.css - Skullman Studio | Dark tattoo aesthetic
   Responsive-first design system
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #060606;
  --white: #ffffff;
  --gray: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --trans: 0.3s ease;
  --font: "Montserrat", sans-serif;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── VIDEO BACKGROUND ─────────────────────────────────── */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* siempre debajo de todo */
}

/* ── NAVBAR ──────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: var(--nav-h);
  z-index: 99998;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--trans);
}

.main-nav.scrolled {
  background: rgba(6, 6, 6, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  height: 64px;
}

.nav-left {
  flex: 1;
}

.nav-left .logo {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-left .logo:hover {
  transform: scale(1.05);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 2;
  justify-content: center;
}

.nav-center a, .dropdown-trigger {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-center a:hover, .dropdown-trigger:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-center a:hover::after,
.nav-center a.active::after {
  width: 100%;
}

/* Dropdown Premium */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-icon-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-icon-chevron {
  transform: rotate(-135deg);
  margin-top: 1px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: -20px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 15px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
}

.nav-item-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block !important;
  padding: 12px 25px !important;
  font-size: 9px !important;
  letter-spacing: 2px !important;
  color: rgba(255,255,255,0.5) !important;
  text-align: right;
  transition: all 0.3s ease !important;
}

.dropdown-content a:hover {
  color: white !important;
  background: rgba(255,255,255,0.03);
  padding-right: 30px !important;
}

.dropdown-content a::after {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-right > a:not(.btn-reservar) {
  color: white;
  opacity: 0.5;
  transition: opacity var(--trans);
  display: flex;
  align-items: center;
}

.nav-right > a:not(.btn-reservar):hover {
  opacity: 1;
}

.btn-reservar {
  background: white;
  color: black;
  border: 1px solid white;
  padding: 12px 28px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
}

.btn-reservar:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Botón hamburguesa móvil */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 999999;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay del menú móvil */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999998;
  backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menú móvil lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #080808;
  z-index: 999999;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
}

.mobile-menu-logo {
  height: 32px;
  width: auto;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-menu-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.03);
  padding-left: 40px;
}

.mobile-menu-group {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.mobile-group-label {
    display: block;
    padding: 0 32px 10px;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 4px;
}

.mobile-menu-group a {
    padding: 12px 32px;
    font-size: 12px;
    opacity: 0.8;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.mobile-cta-reservar {
    margin: 40px 32px;
    padding: 18px;
    background: white;
    color: #000 !important; /* Forzar negro para contraste sobre blanco */
    text-align: center;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid white;
}

.mobile-cta-reservar:hover {
    background: transparent;
    color: white !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer {
  padding: 32px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-menu-footer a {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mobile-menu-footer a:hover {
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 160px;
}

/* Video Hero Component Styles */
.video-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.logo-container {
  width: 100%;
  max-width: 82vw;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-height: 70vh;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.25));
  object-fit: contain;
}

.hero-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 20px;
  display: flex;
  justify-content: center;
  z-index: 100;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  transition: opacity var(--trans);
}

.hero-footer.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 14px 32px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid white;
  transition: all var(--trans);
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 3px;
  cursor: pointer;
  animation: bounce 2.2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

/* ── SECCIONES ────────────────────────────────────────── */
.section {
  position: relative;
  min-height: 100vh;
  padding: 100px 64px;
}

.section-dark {
  background: #0a0a0a;
}

.section-darker {
  background: #060606;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gray);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 300;
}

.no-items {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 60px 20px;
}

/* ── PORTAFOLIO ──────────────────────────────────────── */
.portfolio-marquee-wrapper {
  overflow: hidden;
  margin: 3rem 0;
  position: relative;
}

.portfolio-marquee-wrapper::before,
.portfolio-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.portfolio-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.portfolio-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.portfolio-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
}

.portfolio-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-marquee-content {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.portfolio-marquee-item {
  position: relative;
  width: 350px;
  height: 350px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.portfolio-marquee-item:hover {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-marquee-item:hover img {
  transform: scale(1.1);
}

.marquee-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-marquee-item:hover .marquee-item-overlay {
  opacity: 1;
}

.marquee-item-info {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-marquee-item:hover .marquee-item-info {
  transform: translateY(0);
}

.marquee-item-info strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: #fff;
}

.marquee-item-info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-portfolio-full {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-portfolio-full:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.btn-portfolio-full svg {
  transition: transform 0.3s;
}

.btn-portfolio-full:hover svg {
  transform: translateX(5px);
}

/* Responsive Marquee */
@media (max-width: 768px) {
  .portfolio-marquee-wrapper::before,
  .portfolio-marquee-wrapper::after {
    width: 50px;
  }
  
  .portfolio-marquee-item {
    width: 280px;
    height: 280px;
  }
  
  .portfolio-marquee {
    gap: 1rem;
  }
  
  .portfolio-marquee-content {
    gap: 1rem;
  }
}

/* ── ARTISTAS ────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.artist-card:hover::before {
  left: 100%;
}

.artist-card::after {
  content: '';
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.artist-card:hover::after {
  opacity: 1;
}

.artist-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.artist-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.artist-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.artist-card:hover .artist-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.artist-no-photo {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-info {
  padding: 24px;
}

.artist-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.artist-specialty {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.style-tag {
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.artist-bio {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.artist-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--trans);
}

.social-link:hover {
  color: white;
}

.btn-artist-reserve {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all var(--trans);
}

.btn-artist-reserve:hover {
  background: white;
  color: black;
  border-color: white;
}

/* ── SERVICIOS ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 48px 36px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent);
  transition: height 0.4s ease;
}

.service-card:hover::after {
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.service-icon {
  margin-bottom: 24px;
  opacity: 0.7;
  transition: all 0.4s ease;
  transform-origin: center;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-link {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color var(--trans);
}

.service-link:hover {
  border-color: white;
}

/* ── TIENDA ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-no-img {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: black;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 4px 10px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-buy {
  padding: 8px 16px;
  background: white;
  color: black;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--trans);
}

.btn-buy:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ── RESERVAS ────────────────────────────────────────── */
.reservation-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.form-flash {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  border-left: 3px solid;
}

.form-flash-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: #22c55e;
  color: #4ade80;
}

.form-flash-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
  color: #f87171;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.req {
  color: #ef4444;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 13px;
  transition: border-color var(--trans);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.form-field select option {
  background: #111;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  color: black;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all var(--trans);
  align-self: flex-start;
  -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
}

.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-block svg {
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 2px;
}

.info-block strong {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-block p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

.info-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--trans);
}

.info-link:hover {
  color: white;
}

/* ── ANIMACIONES DE ENTRADA ──────────────────────────── */

/* Fade in desde abajo */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in desde la izquierda */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in desde la derecha */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Glow pulse para el logo hero */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
  }
}

/* Reveal effect - cortina desde arriba */
@keyframes revealFromTop {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Reveal effect - cortina desde abajo */
@keyframes revealFromBottom {
  from {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Reveal effect - cortina desde la izquierda */
@keyframes revealFromLeft {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Reveal effect - cortina desde la derecha */
@keyframes revealFromRight {
  from {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Reveal effect - zoom desde el centro */
@keyframes revealZoom {
  from {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  to {
    clip-path: circle(150% at 50% 50%);
    opacity: 1;
  }
}

/* Efecto de texto revelándose letra por letra */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Clase para elementos visibles */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Clases para efectos de reveal */
.reveal-section {
  opacity: 0;
}

.reveal-section.revealed {
  animation: revealFromBottom 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-left {
  opacity: 0;
}

.reveal-left.revealed {
  animation: revealFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-right {
  opacity: 0;
}

.reveal-right.revealed {
  animation: revealFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-zoom {
  opacity: 0;
}

.reveal-zoom.revealed {
  animation: revealZoom 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animación del logo hero */
.hero-logo {
  animation: glowPulse 4s ease-in-out infinite, fadeInUp 1.2s ease-out;
}

/* Animación de los botones del hero */
.hero-buttons .btn {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-buttons .btn:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-buttons .btn:nth-child(2) {
  animation-delay: 0.5s;
}

/* Animación del scroll indicator */
.scroll-indicator {
  animation: bounce 2.2s ease-in-out infinite, fadeInUp 1s ease-out 0.7s backwards;
}

/* Animación de section headers */
.section-header {
  animation: fadeInUp 0.8s ease-out;
}

.section-label {
  animation: fadeInUp 0.6s ease-out;
}

.section-title {
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.section-sub {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Animación del about text */
.about-text {
  animation: fadeInUp 0.8s ease-out backwards;
}

.about-text:nth-of-type(1) {
  animation-delay: 0.2s;
}

.about-text:nth-of-type(2) {
  animation-delay: 0.4s;
}

.about-signature {
  animation: fadeInLeft 0.8s ease-out 0.6s backwards;
}

.cta-quick-btn {
  animation: scaleIn 0.8s ease-out 0.8s backwards;
  transition: all 0.3s ease;
}

/* Hover effects mejorados */
.portfolio-marquee-item {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.artist-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animación suave para las imágenes */
.artist-photo-wrap img,
.product-img-wrap img {
  transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animación del navbar */
.main-nav {
  animation: fadeInUp 0.6s ease-out;
}

/* Efecto parallax suave en scroll */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    transition: transform 0.1s ease-out;
  }
}

/* Desactivar animaciones para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-logo {
    animation: none;
  }
  
  .scroll-indicator {
    animation: none;
  }
}

/* ── ═══════ RESPONSIVE BREAKPOINTS ════════ ─────────── */

/* ── TABLET GRANDE (≤1200px) ─────────────────────────── */
@media (max-width: 1200px) {
  .main-nav {
    padding: 0 32px;
  }

  .nav-center {
    gap: 22px;
  }

  .section {
    padding: 90px 48px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

/* ── TABLET (≤1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav {
    padding: 0 28px;
  }

  .nav-center {
    gap: 16px;
  }

  .nav-center a {
    font-size: 10.5px;
    letter-spacing: 1.5px;
  }

  .section {
    padding: 80px 36px;
  }

  .reservation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reservation-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .info-block {
    flex: 1;
    min-width: 160px;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── MOBILE GRANDE (≤768px) ──────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  /* ===== NAVBAR RESPONSIVE ===== */
  .main-nav {
    padding: 0 1.5rem;
  }

  .nav-center {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-right > a:not(.btn-reservar) {
    display: none;
  }

  .btn-reservar {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  /* ===== SECCIONES GENERALES ===== */
  .section {
    padding: 4rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .section-sub {
    font-size: 0.95rem;
  }

  /* ===== HERO ===== */
  .hero-content {
    padding: calc(var(--nav-h) + 2rem) 1.5rem 8rem;
  }

  .logo-container {
    max-width: 90vw;
  }

  .hero-logo {
    max-height: 55vh;
  }

  /* Video Hero */
  .video-hero-section {
    min-height: 50vh;
  }

  .hero-content-center {
    padding: 100px 1.5rem 60px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* ===== PORTAFOLIO MARQUEE ===== */
  .portfolio-marquee-item {
    width: 280px;
    height: 280px;
  }

  .portfolio-marquee {
    gap: 1rem;
  }

  .portfolio-marquee-content {
    gap: 1rem;
  }

  .btn-portfolio-full {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* ===== ARTISTAS ===== */
  .artists-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .artist-card {
    padding: 2rem 1.5rem;
  }

  /* ===== SERVICIOS ===== */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  /* ===== TIENDA (HOME) ===== */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-info {
    padding: 1rem;
  }

  .product-info h3 {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  /* ===== RESERVAS ===== */
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .btn-submit {
    width: 100%;
  }

  .reservation-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* ===== FOOTER ===== */
  .site-footer {
    padding: 3rem 1.5rem;
  }

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

  /* ===== ABOUT (ARTE QUE MARCA) ===== */
  .about-container {
    padding: 0 1.5rem;
  }

  .cta-quick-btn {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
  }

  .cta-text strong {
    font-size: 1.1rem;
  }

  .cta-text small {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE PEQUEÑO (≤480px) ===== */
@media (max-width: 480px) {
  .main-nav {
    padding: 0 1rem;
  }

  .hero-logo {
    max-height: 48vh;
  }

  .logo-container {
    max-width: 95vw;
  }

  /* Video Hero */
  .video-hero-section {
    min-height: 45vh;
  }

  .hero-content-center {
    padding: 80px 1rem 50px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }

  .section-label {
    font-size: 0.7rem;
  }

  /* Una columna para todo */
  .portfolio-marquee-item {
    width: 260px;
    height: 260px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    max-width: 100%;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem;
  }

  .nav-center.active a {
    font-size: 1.1rem;
    padding: 0.9rem 0;
  }

  .cta-quick-btn {
    padding: 1.2rem;
  }

  .cta-text strong {
    font-size: 1rem;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 9px;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-center.open a {
    font-size: 1.4rem;
  }

  .hero-footer {
    padding: 24px 16px;
  }
}

/* ── LANDSCAPE MOBILE ────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-logo {
    max-height: 70vw;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 16px) 20px 120px;
  }

  .nav-center.open {
    padding: 20px 32px;
  }

  .nav-center.open a {
    font-size: 1.2rem;
    padding: 12px 0;
  }
}


/* ===== SOBRE NOSOTROS ===== */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #ff4444;
    text-align: right;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.about-cta {
    margin-top: 3rem;
}

/* ===== CTA BUTTON ===== */
.cta-quick-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s, transform 0.3s;
    border: 1px solid #fff;
}

.cta-quick-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.cta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.cta-text small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

.cta-arrow {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIOS ===== */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.google-rating {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.rating-stars {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #999;
}

.testimonials-note {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.testimonials-note p {
    color: #ccc;
    margin: 0;
}