/* ==========================================================================
   LA VIEJA ESCUELA - DARK PREMIUM DESIGN SYSTEM
   Neo-Bodegón • Bar Café • Tucumán
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Barlow";
  src: url("Manual%20de%20marca/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("Manual%20de%20marca/Barlow-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Madea";
  src: url("Manual%20de%20marca/MADEAwelierPERSONALUSE-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Madea";
  src: url("Manual%20de%20marca/MADEAwelierPERSONALUSE-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   CSS VARIABLES - BRAND COLOR PALETTE (Sin Negro)
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds - Basados en Turquesa y Papel */
  --bg-primary: #0f4f61;
  /* Teal oscuro de marca */
  --bg-secondary: #166f85;
  /* Turquesa principal */
  --bg-card: #1a7a94;
  /* Turquesa más claro para cards */
  --bg-elevated: #1d8fa8;
  /* Turquesa aún más luminoso */
  --bg-light: #f1eee9;
  /* Papel - para secciones claras */
  --bg-cream: #e3e3e3;
  /* Blanco roto */

  /* Turquesa de marca */
  --teal: #166f85;
  --teal-light: #1d8fa8;
  --teal-dark: #0f4f61;
  --teal-glow: rgba(22, 111, 133, 0.4);

  /* Naranja de marca como acento principal */
  --accent: #ed5c35;
  --accent-light: #ff7a56;
  --accent-dark: #c44920;
  --accent-glow: rgba(237, 92, 53, 0.3);

  /* Gold para detalles premium */
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1c;
  --gold-glow: rgba(201, 162, 39, 0.2);

  --coral: #ed5c35;
  --coral-light: #ff7a56;
  --coral-dark: #c44920;

  /* Text colors - ajustados para fondos teal */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #0f4f61;
  /* Para textos sobre fondo claro */
  --text-dark-muted: #166f85;

  --cream: #f1eee9;
  --paper: #e3e3e3;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;

  /* Typography */
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Madea", "Times New Roman", serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-teal: 0 0 30px var(--teal-glow);
  --shadow-glow-gold: 0 0 30px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--gold-light);
}

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

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.section-head:hover h2::after {
  width: 100%;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  /* Refined border */
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--accent-glow);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 6vw;
  background: rgba(15, 79, 97, 0.85);
  /* var(--teal-dark) with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: var(--space-sm) 6vw;
  background: rgba(15, 79, 97, 0.95);
  /* Darker on scroll */
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-sm);
}

.logo-wrap img {
  height: 48px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-base);
}

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

.site-nav {
  display: flex;
  gap: var(--space-lg);
}

.site-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  transition: width var(--transition-base);
}

.site-nav a:hover,
.site-nav a.active {
  /* Added active state */
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  /* Added active state underline */
  width: 100%;
}

/* Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(15, 79, 97, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 6vw var(--space-2xl);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.4) 40%,
      rgba(10, 10, 10, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(201, 162, 39, 0.2);
  }
}

.hero h1 {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 50%, var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.sticker {
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.sticker--accent {
  background: rgba(237, 92, 53, 0.15);
  border-color: var(--coral);
  color: var(--coral);
}

.sticker--teal {
  background: rgba(22, 111, 133, 0.15);
  border-color: var(--teal);
  color: var(--teal-light);
}

/* --------------------------------------------------------------------------
   SECTION LAYOUT
   -------------------------------------------------------------------------- */
.section {
  padding: 120px 6vw;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.section-head h2 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

/* --------------------------------------------------------------------------
   MENU SECTION
   -------------------------------------------------------------------------- */
.menu {
  background: var(--bg-secondary);
  position: relative;
  overflow: visible;
  /* Allow hands to extend beyond section */
}

.menu-controls {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.pill-group {
  display: flex;
  gap: var(--space-sm);
  background: var(--bg-card);
  padding: var(--space-xs);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pill {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.pill:hover {
  color: var(--text-primary);
}

.pill.is-active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--text-primary);
  box-shadow: var(--shadow-glow-teal);
}

.menu-highlight {
  flex: 1;
  min-width: 280px;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-md);
}

.menu-highlight__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.menu-highlight__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.menu-highlight__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.menu-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.tab {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tab.is-active {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.menu-item {
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.menu-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.menu-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   PROXIMAMENTE SECTION
   -------------------------------------------------------------------------- */
.proximamente {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: visible;
  /* Allow hands to extend beyond section */
}

.proximamente::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.proxi-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.proxi-poster {
  position: relative;
}

.proxi-poster img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-dark);
}

.proxi-poster::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold-dark);
  border-radius: calc(var(--radius-lg) + 10px);
  opacity: 0.3;
  pointer-events: none;
}

.proxi-info h3 {
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.proxi-info ul {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.proxi-info li {
  position: relative;
  padding-left: var(--space-lg);
  padding-bottom: var(--space-md);
  border-left: 2px solid var(--teal-dark);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.proxi-info li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-glow);
}

.proxi-info li:last-child {
  border-left-color: transparent;
}

.notify-container {
  max-width: 400px;
}

.notify-form {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  /* Ensure button aligns with input top */
}

.notify-form .input-group {
  flex: 1;
}

.notify-form input {
  width: 100%;
  /* Take full width of group */
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.notify-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.fine {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   AULA SECTION
   -------------------------------------------------------------------------- */
.aula {
  background: var(--bg-primary);
  position: relative;
  overflow: visible;
  /* Allow hands to extend beyond section */
}

.aula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.event {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--coral));
}

.event:hover {
  border-color: var(--teal-dark);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow-teal);
}

.event h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-sm);
}

.event p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.event-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-light);
}

.notify-container.inline {
  max-width: 500px;
}

/* --------------------------------------------------------------------------
   FILOSOFIA SECTION
   -------------------------------------------------------------------------- */
.filosofia {
  background: var(--bg-secondary);
}

.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.pill-card {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.pill-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-glow-gold);
}

.pill-card h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.pill-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   UBICACION SECTION
   -------------------------------------------------------------------------- */
.ubicacion {
  background: var(--bg-primary);
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
}

.map-card {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.map-placeholder {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-elevated));
  border: 1px dashed var(--text-muted);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.map-info {
  color: var(--text-secondary);
  line-height: 1.8;
}

.map-info strong {
  display: block;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.map-static {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-elevated));
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
  border: 1px dashed var(--text-muted);
}

.map-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.map-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

/* Form Feedback */
.input-group {
  position: relative;
  flex: 1;
}

.input-error {
  border-color: var(--coral) !important;
  box-shadow: 0 0 0 1px var(--coral);
}

.input-success {
  border-color: var(--teal) !important;
}

.form-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--transition-fast);
}

.form-message.error {
  color: var(--coral);
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: var(--teal-light);
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(22, 111, 133, 0.1), rgba(22, 111, 133, 0.05));
  border: 1px solid var(--teal-dark);
  border-radius: var(--radius-md);
}

.contact-card h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: var(--space-sm);
}

.contact-card>p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.contact-info div {
  padding-left: var(--space-md);
  border-left: 2px solid var(--teal-dark);
}

/* --------------------------------------------------------------------------
   TICKER
   -------------------------------------------------------------------------- */
.ticker {
  padding: var(--space-md) 0;
  background: var(--accent);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: var(--space-xl);
  white-space: nowrap;
  animation: tickerMove 25s linear infinite;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

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

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl) 6vw var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.footer-logo img {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}

.footer-links a {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   INTRO PROXI (COMING SOON OVERLAY) - NOW REMOVED FOR FULL SITE
   -------------------------------------------------------------------------- */
.intro-proxi {
  display: none;
  /* Hidden for full site view */
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
  }

  .proxi-layout,
  .ubicacion-grid {
    grid-template-columns: 1fr;
  }

  .proxi-poster {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 140px 4vw var(--space-2xl);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: var(--space-2xl) 4vw;
  }

  .menu-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-highlight {
    width: 100%;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-container {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .site-nav {
    font-size: 0.75rem;
    gap: var(--space-sm);
  }

  .pill-group {
    flex-wrap: wrap;
  }

  .menu-tabs {
    justify-content: center;
  }

  .hero-tags {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   FLOATING COFFEE CUP ANIMATION
   -------------------------------------------------------------------------- */
.floating-cup {
  position: fixed;
  width: 55px;
  height: 55px;
  z-index: 50;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.4));
  animation: floatPath 28s ease-in-out infinite, cupWobble 4s ease-in-out infinite;
}

.floating-cup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes floatPath {
  0% {
    top: 15%;
    left: -70px;
  }

  15% {
    top: 35%;
    left: 18%;
  }

  30% {
    top: 55%;
    left: 42%;
  }

  45% {
    top: 28%;
    left: 68%;
  }

  60% {
    top: 50%;
    left: 85%;
  }

  75% {
    top: 38%;
    left: 55%;
  }

  90% {
    top: 62%;
    left: 28%;
  }

  100% {
    top: 15%;
    left: calc(100% + 70px);
  }
}

@keyframes cupWobble {

  0%,
  100% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(6deg);
  }
}

@media (max-width: 768px) {
  .floating-cup {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .floating-cup {
    width: 35px;
    height: 35px;
  }
}

/* ==========================================================================
   UI INNOVATIONS - PREMIUM ENHANCEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   VHS TEXTURE OVERLAY - Retro Nostalgic Effect
   -------------------------------------------------------------------------- */
.vhs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background: url('Manual%20de%20marca/Recursos%20graficos/vhs%20texture.jpg') repeat;
  animation: vhsFlicker 0.15s infinite, vhsScan 8s linear infinite;
}

@keyframes vhsFlicker {

  0%,
  100% {
    opacity: 0.04;
  }

  50% {
    opacity: 0.035;
  }
}

@keyframes vhsScan {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 100%;
  }
}

/* --------------------------------------------------------------------------
   CUSTOM CURSOR - Teal Following Circle
   -------------------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 48px;
  /* Increased from 32px */
  height: 48px;
  background: url('/Users/marcorossi/.gemini/antigravity/brain/c7d6c5b8-487c-4e70-ab76-3a4bcbef68b0/medialuna_cursor_transparent_1769912331229.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease-out;
  /* Slightly smoother */
  transform: translate(-50%, -50%) rotate(0deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cursor-ring {
  position: fixed;
  width: 60px;
  /* Increased from 45px */
  height: 60px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.cursor-ring.hover {
  width: 85px;
  /* Increased from 65px */
  height: 85px;
  border-color: var(--teal-light);
  border-width: 2px;
  opacity: 1;
}

@media (max-width: 768px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 100ms;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 200ms;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 300ms;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 400ms;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 500ms;
}

/* --------------------------------------------------------------------------
   GLASSMORPHISM CARDS - Premium Frosted Glass Effect
   -------------------------------------------------------------------------- */
.glass-card {
  background: rgba(22, 111, 133, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(237, 92, 53, 0.3);
}

/* Apply glassmorphism to existing cards */
.pill-card,
.event,
.contact-card {
  background: rgba(22, 111, 133, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.pill-card:hover,
.event:hover,
.contact-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(237, 92, 53, 0.4);
}

/* --------------------------------------------------------------------------
   GALLERY SECTION - 3D Rotating Artwork
   -------------------------------------------------------------------------- */
.galeria {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
  /* Restored to prevent layout shifts */
  position: relative;
  z-index: 10;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  perspective: 1000px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  /* Space for popping bubbles */
}

.cuadro-card {
  position: relative;
  aspect-ratio: 3/4;
  /* Removed overflow hidden to allow bubble */
  overflow: visible;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Shadow moved to inner to respect radius */
}

.cuadro-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.cuadro-card:hover {
  transform: rotateY(-8deg) rotateX(5deg) scale(1.05);
}

.cuadro-card.has-bubble {
  z-index: 100;
  transform: rotateY(-8deg) rotateX(5deg) scale(1.05);
  /* Keep hover state if bubble is open */
}

.cuadro-card:hover img {
  transform: scale(1.1);
}

.cuadro-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(237, 92, 53, 0) 0%,
      rgba(237, 92, 53, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cuadro-card:hover .cuadro-inner::after {
  opacity: 1;
}

/* Comic Speech Bubble */
.comic-bubble {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transform-origin: bottom center;
  background: #fff;
  color: #000;
  padding: 10px 15px;
  border: 3px solid #000;
  border-radius: 20px;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 20;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
  margin-bottom: 15px;
  /* Spacing from card */
}

/* Triangle for bubble */
.comic-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
}

.comic-bubble::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  z-index: 1;
}

.comic-bubble.show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .comic-bubble {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-bottom: 10px;
    white-space: normal;
    text-align: center;
    width: max-content;
    max-width: 200px;
  }
}

.comic-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  display: block;
  width: 0;
}

.comic-bubble::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  display: block;
  width: 0;
  z-index: 1;
}

.cuadro-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(15, 79, 97, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cuadro-card:hover .cuadro-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* --------------------------------------------------------------------------
   HERO SLIDESHOW - Multiple Background Images
   -------------------------------------------------------------------------- */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   PREMIUM HOVER EFFECTS
   -------------------------------------------------------------------------- */

/* Gradient shift buttons */
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  background-size: 200% 200%;
  animation: gradientIdle 3s ease infinite;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

@keyframes gradientIdle {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Animated underline links */
.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal-light));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

/* Interactive glow on focus */
input:focus,
button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(237, 92, 53, 0.3),
    0 0 20px rgba(237, 92, 53, 0.2);
}

/* Sticker hover enhancement */
.sticker {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.sticker:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Menu item hover glow */
.menu-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(22, 111, 133, 0.15);
}

/* Tab active glow */
.tab.is-active,
.pill.is-active {
  box-shadow: 0 0 20px rgba(237, 92, 53, 0.3);
}

/* --------------------------------------------------------------------------
   TIENDA SECTION
   -------------------------------------------------------------------------- */
.tienda {
  background: var(--bg-primary);
}

.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   CARDS & PREMIUM UI
   -------------------------------------------------------------------------- */
.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.product-img {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.product-img .placeholder-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

/* --------------------------------------------------------------------------
   ART DECO (Distributed Art)
   -------------------------------------------------------------------------- */
.art-deco {
  position: absolute;
  z-index: 10;
  width: 180px;
  /* Smaller decorative size */
  pointer-events: auto;
  /* Allow hover for speech bubble */
}

/* Specific Positions */
.art-deco-1 {
  /* La China in Menu */
  top: 100px;
  right: 5%;
  transform: rotate(3deg);
}

.art-deco-2 {
  /* Mona in Filosofia */
  bottom: -40px;
  left: 5%;
  transform: rotate(-3deg);
  z-index: 20;
}

.art-deco-3 {
  /* Alto Guiso in Tienda */
  top: -50px;
  right: 10%;
  transform: rotate(5deg);
}

/* Responsive Art Positioning */
@media (max-width: 1024px) {
  .art-deco {
    display: none;
    /* Hide art on smaller screens to avoid clutter, or adjust positions */
  }
}

/* Increase Menu Presence */
.menu {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  min-height: 80vh;
  /* Takes up substantial screen capability */
  position: relative;
}

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

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.product-info h3 {
  font-family: var(--font-body);
  /* Body font for "Fine" look */
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0;
  color: var(--text-primary);
}

.product-info .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.btn-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
  padding-bottom: 2px;
}

.btn-text:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   HERO LOOPING HANDS
   -------------------------------------------------------------------------- */
.hero-hand {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
  mix-blend-mode: multiply;
  /* Makes white background transparent on dark bg */
}

/* Left hand (coffee cup) - enters from left, BIGGER */
.hero-hand-left {
  left: -30px;
  bottom: 5%;
  width: 320px;
  /* Bigger */
  animation: handLoopLeft 10s ease-in-out infinite;
}

/* Right hand (jug pouring) - enters from TOP */
.hero-hand-right {
  right: 5%;
  top: -50px;
  width: 280px;
  animation: handLoopTop 10s ease-in-out infinite;
  animation-delay: 5s;
  /* Staggered entrance */
}

@keyframes handLoopLeft {
  0% {
    transform: translateX(-120%) rotate(-15deg);
    opacity: 0;
  }

  12% {
    transform: translateX(0) rotate(-3deg);
    opacity: 1;
  }

  38% {
    transform: translateX(0) rotate(-3deg);
    opacity: 1;
  }

  50% {
    transform: translateX(-120%) rotate(-15deg);
    opacity: 0;
  }

  100% {
    transform: translateX(-120%) rotate(-15deg);
    opacity: 0;
  }
}

/* Jug comes from TOP (pouring motion) */
@keyframes handLoopTop {
  0% {
    transform: translateY(-120%) rotate(5deg);
    opacity: 0;
  }

  12% {
    transform: translateY(0) rotate(-5deg);
    opacity: 1;
  }

  38% {
    transform: translateY(0) rotate(-5deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-120%) rotate(5deg);
    opacity: 0;
  }

  100% {
    transform: translateY(-120%) rotate(5deg);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-hand-left {
    width: 200px;
    left: -20px;
    bottom: 3%;
  }

  .hero-hand-right {
    width: 180px;
    right: 3%;
    top: -30px;
  }
}