/* ============================================================
   VA TU ESTILO — Salón y Barbería | style.css
   Paleta: Negro profundo · Oro · Blanco cálido
   ============================================================ */

:root {
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --gold-dark:  #9A7530;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --dark3:      #222222;
  --white:      #F5F0E8;
  --gray:       #888888;
  --font-display: 'Cinzel Decorative', serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Raleway', sans-serif;
  --radius:       12px;
  --shadow-gold:  0 0 30px rgba(201, 168, 76, 0.25);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 6px; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== SECTION COMMONS ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-primary.sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-primary.mt { margin-top: 32px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { width: auto; height: 54px; object-fit: contain; }
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn:hover { background: rgba(201,168,76,0.15); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.20) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px 0 8vw;
  padding-top: 120px;
  animation: heroFadeIn 1s 0.3s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.hero-logo-wrap {
  margin-bottom: 8px;
}

.hero-lion {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.6));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 32px rgba(201,168,76,0.4);
  margin-bottom: 4px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 40px;
}

.hero-tagline span {
  color: var(--gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-badges {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(10,10,10,0.85);
  border-top: 1px solid rgba(201,168,76,0.3);
  margin-top: auto;
}

.badge {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.badge:last-child {
  border-right: none;
}

.badge:hover {
  background: rgba(201,168,76,0.06);
}

.badge i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .hero {
    min-height: 92svh;
  }

  .hero-content {
    max-width: 620px;
    padding: 0 24px 0 6vw;
    padding-top: 110px;
  }

  .hero-img {
    object-position: 58% top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,0.78) 0%,
      rgba(10,10,10,0.58) 45%,
      rgba(10,10,10,0.35) 100%
    );
  }

  .badge {
    min-width: 220px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    min-height: 100svh;
    justify-content: flex-end;
  }

  .hero-bg {
    inset: 0;
  }

  .hero-img {
    object-fit: cover;
    object-position: 62% top;
    transform: scale(1.02);
    animation: none;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,0.66) 0%,
      rgba(10,10,10,0.45) 28%,
      rgba(10,10,10,0.78) 72%,
      rgba(10,10,10,0.92) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 96px 20px 28px;
    text-align: left;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    margin-bottom: 12px;
    padding-left: 10px;
  }

  .hero-lion {
    width: 62px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    line-height: 1.35;
    margin-bottom: 24px;
    max-width: 18ch;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(10,10,10,0.9);
  }

  .badge {
    min-width: 0;
    padding: 14px 14px;
    border-right: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    align-items: flex-start;
  }

  .badge:nth-child(2n) {
    border-right: none;
  }

  .badge:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .badge span {
    font-size: 0.68rem;
    line-height: 1.35;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-img {
    object-position: 64% top;
  }

  .hero-content {
    padding: 88px 16px 24px;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .badge {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 14px 16px;
  }

  .badge:last-child {
    border-bottom: none;
  }
}
/* ===== SERVICES ===== */
.services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.services .section-container { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1A1A1A 0%, #1E1800 100%);
}
.card-crown {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 6px 14px 10px;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  color: var(--black);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0.1) 100%);
  box-shadow: 0 0 20px rgba(201,168,76,0.25);
}
.service-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.service-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--black);
}
.gallery .section-container { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item img { transition: transform 0.5s ease; width: 100%; height: 100%; object-fit: cover; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

/* ===== HOURS ===== */
.hours {
  background: var(--dark);
  position: relative;
}
.hours-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.hours-text {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hours-list { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hour-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.day  { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.time { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.time.closed-label { color: var(--gray); font-weight: 400; }
.hours-img-wrap {
  position: relative;
  overflow: hidden;
}
.hours-img { width: 100%; height: 100%; object-fit: cover; }
.hours-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
}
.contact .section-container { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
  margin-top: 0;
}
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-whatsapp i { font-size: 1.2rem; }

/* CONTACT INFO */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.info-card i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-card strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.info-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.info-card a { color: var(--gold-light); }
.info-card a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,168,76,0.2); }
.location-photo-mobile {
  display: none;
}

/* Solo aparezca en móviles para mostrar la foto de ubicación abajo del mapa */
@media (max-width: 768px) {
  .location-photo-mobile {
    display: block;
    margin-top: 14px;
  }

  .location-photo-mobile img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo { width: auto; height: 56px; margin: 0 auto; object-fit: contain; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.footer-dev {
  font-size: 0.7rem;
  color: rgba(136,136,136,0.5);
  letter-spacing: 0.04em;
}
.footer-dev a { color: rgba(201,168,76,0.4); transition: var(--transition); }
.footer-dev a:hover { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 998;
  }
  .nav-menu.open { display: flex; }
  .nav-link, .nav-cta { font-size: 1rem; }

  .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-badges { flex-wrap: wrap; }
  .badge { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall  { grid-row: span 1; }
  .gallery-item.wide  { grid-column: span 2; }

  .hours-inner { grid-template-columns: 1fr; }
  .hours-img-wrap { display: none; }
  .hours-text { padding: 60px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .section-container { padding: 72px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide  { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .badge { min-width: 100%; }
  .hero-title { font-size: 2.4rem; }
}

/* ===== DATE/TIME INPUT COLORS ===== */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}

/* ===== BARBERS GALLERY ===== */
.barbers {
  background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.barbers::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.barbers .section-container {
  text-align: center;
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.barber-card {
  position: relative;
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.barber-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.2);
}

.barber-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--dark3);
}

.barber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.barber-card:hover .barber-img {
  transform: scale(1.08);
}

.barber-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.barber-card:hover .barber-overlay {
  opacity: 1;
}

.barber-social {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.barber-card:hover .barber-social {
  transform: translateY(0);
}

.barber-social a {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  transition: var(--transition);
}

.barber-social a:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.barber-info {
  padding: 24px 20px 28px;
  text-align: center;
  background: var(--dark2);
}

.barber-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.barber-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.barber-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Badge de especialidad */
.barber-specialty {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Sección de ambiente adicional */
.ambiance-section {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.ambiance-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.ambiance-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 48px;
  font-size: 1rem;
}

.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.ambiance-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.ambiance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ambiance-item:hover img {
  transform: scale(1.05);
}

.ambiance-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 16px 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.ambiance-item:hover .ambiance-caption {
  transform: translateY(0);
}

.ambiance-caption p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Lightbox para galería */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-light);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .barbers-grid {
    gap: 24px;
    margin-top: 40px;
  }
  
  .barber-name {
    font-size: 1.1rem;
  }
  
  .ambiance-title {
    font-size: 1.5rem;
  }
  
  .ambiance-grid {
    gap: 16px;
  }
  
  .lightbox img {
    max-width: 95%;
    max-height: 80%;
  }
}


/* ============================================================
   MUNDIAL WOW — SOLO ESTA PARTE AL FINAL DE style.css
   ============================================================ */
.mundial-section,
.mundial-section *,
.mundial-section *::before,
.mundial-section *::after {
  box-sizing: border-box;
}

.mundial-section * {
  margin: 0;
  padding: 0;
}

.mundial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 170, 0.22), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(0, 183, 255, 0.22), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(255, 70, 170, 0.18), transparent 24%),
    linear-gradient(135deg, #070b1b 0%, #101b44 36%, #09272f 68%, #180c2d 100%);
  isolation: isolate;
}

.mundial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 20%, transparent 40%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 70px
    );
  pointer-events: none;
  opacity: 0.8;
}

.mundial-section .section-container {
  position: relative;
  z-index: 2;
}

.mundial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 70px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.mundial-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.9;
  pointer-events: none;
}

.blur-a {
  width: 220px;
  height: 220px;
  top: -50px;
  left: -40px;
  background: rgba(0, 255, 166, 0.24);
}

.blur-b {
  width: 260px;
  height: 260px;
  right: -60px;
  top: 20px;
  background: rgba(0, 183, 255, 0.22);
}

.blur-c {
  width: 240px;
  height: 240px;
  bottom: -70px;
  left: 35%;
  background: rgba(255, 77, 181, 0.18);
}

.mundial-copy,
.mundial-visual {
  position: relative;
  z-index: 2;
}

.mundial-flash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff06a 0%, #ffb100 100%);
  color: #221300;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(255, 177, 0, 0.30);
}

.mundial-tagline {
  color: #b9f7ff !important;
  text-shadow: 0 0 18px rgba(126, 249, 255, 0.30);
}

.mundial-title {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
  line-height: 0.98;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(255,255,255,0.08),
    0 0 40px rgba(0,255,170,0.14);
}

.mundial-sub {
  max-width: 620px;
  color: rgba(245, 248, 255, 0.88);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.mundial-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.mundial-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.mundial-chip i {
  font-size: 0.86rem;
}

.chip-green {
  background: linear-gradient(135deg, rgba(0,255,166,0.24), rgba(0,255,166,0.10));
}

.chip-cyan {
  background: linear-gradient(135deg, rgba(0,183,255,0.24), rgba(0,183,255,0.10));
}

.chip-pink {
  background: linear-gradient(135deg, rgba(255,77,181,0.24), rgba(255,77,181,0.10));
}

.chip-yellow {
  background: linear-gradient(135deg, rgba(255,196,0,0.24), rgba(255,196,0,0.10));
}

.mundial-timer-label {
  color: #d8fcff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mundial-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 14px;
  max-width: 680px;
}

.mundial-box {
  position: relative;
  padding: 18px 12px;
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 28px rgba(0,0,0,0.18);
}

.mundial-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.days-box::before {
  background: linear-gradient(180deg, rgba(0,255,166,0.28), rgba(0,255,166,0.08));
}
.hours-box::before {
  background: linear-gradient(180deg, rgba(0,183,255,0.28), rgba(0,183,255,0.08));
}
.minutes-box::before {
  background: linear-gradient(180deg, rgba(255,77,181,0.28), rgba(255,77,181,0.08));
}
.seconds-box::before {
  background: linear-gradient(180deg, rgba(255,196,0,0.28), rgba(255,196,0,0.08));
}

.mundial-time-value,
.mundial-time-label {
  position: relative;
  z-index: 2;
}

.mundial-time-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255,255,255,0.15);
}

.mundial-time-label {
  display: block;
  margin-top: 8px;
  color: rgba(240,245,255,0.88);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mundial-status {
  min-height: 42px;
  margin-top: 16px;
  color: #e8feff;
  line-height: 1.6;
  font-size: 0.92rem;
}

.mundial-status strong {
  color: #ffffff;
}

.mundial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.mundial-btn-primary,
.mundial-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.mundial-btn-primary {
  color: #07101b;
  background: linear-gradient(135deg, #6bffce 0%, #00cfff 45%, #8ef7ff 100%);
  box-shadow: 0 16px 32px rgba(0, 207, 255, 0.28);
}

.mundial-btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 38px rgba(0, 207, 255, 0.35);
}

.mundial-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
}

.mundial-btn-secondary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
}

.mundial-note {
  margin-top: 18px;
  color: rgba(230, 242, 255, 0.80);
  font-size: 0.9rem;
  line-height: 1.75;
}

.mundial-visual {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stadium-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}

.ring-1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 62%);
  box-shadow: 0 0 70px rgba(0,255,166,0.14);
}

.ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(0,255,166,0.24);
}

.ring-3 {
  width: 200px;
  height: 200px;
  border-color: rgba(0,183,255,0.24);
}

.ball-core {
  position: absolute;
  top: 42px;
  right: 52px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #d9f2ff 100%);
  color: #10224a;
  font-size: 2rem;
  box-shadow:
    0 18px 34px rgba(0,0,0,0.20),
    0 0 26px rgba(255,255,255,0.30);
  animation: mundialFloat 4s ease-in-out infinite;
}

.score-card {
  position: relative;
  width: min(100%, 420px);
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(160deg, rgba(15,22,52,0.92) 0%, rgba(11,27,37,0.88) 55%, rgba(39,8,46,0.84) 100%);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
}

.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.score-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,255,166,0.24), rgba(0,183,255,0.16));
  color: #dbffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.score-live {
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4db5 0%, #ff875e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255,77,181,0.24);
}

.score-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-ball {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff56f;
}

.team-name {
  color: #eff8ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  color: #ffffff;
  line-height: 1;
}

.score-numbers span {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  text-shadow: 0 0 18px rgba(255,255,255,0.10);
}

.score-numbers small {
  font-size: 2rem;
  color: #7dfdff;
  transform: translateY(-2px);
}

.score-bottom h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 8px;
}

.score-bottom p {
  color: rgba(230, 245, 255, 0.84);
  line-height: 1.7;
  font-size: 0.94rem;
}

.color-ribbon {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.95;
}

.ribbon-a {
  width: 150px;
  height: 14px;
  left: 12px;
  bottom: 56px;
  transform: rotate(-24deg);
  background: linear-gradient(90deg, #00ffaa 0%, #00d7ff 100%);
  box-shadow: 0 0 28px rgba(0,215,255,0.30);
}

.ribbon-b {
  width: 120px;
  height: 14px;
  right: 10px;
  bottom: 110px;
  transform: rotate(28deg);
  background: linear-gradient(90deg, #ff4db5 0%, #ff9f1a 100%);
  box-shadow: 0 0 28px rgba(255,77,181,0.30);
}

.ribbon-c {
  width: 90px;
  height: 12px;
  left: 60px;
  top: 46px;
  transform: rotate(38deg);
  background: linear-gradient(90deg, #fff06a 0%, #7dff7c 100%);
  box-shadow: 0 0 24px rgba(255,240,106,0.28);
}

.mundial-timer.ended .mundial-box {
  opacity: 0.82;
}

.mundial-timer.ended .mundial-time-value {
  color: #ffffff;
}

@keyframes mundialFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .mundial-shell {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .mundial-title {
    max-width: 100%;
  }

  .mundial-visual {
    min-height: 400px;
  }

  .score-card {
    transform: none;
  }

  .ball-core {
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 768px) {
  .mundial-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .mundial-sub,
  .mundial-note,
  .score-bottom p {
    font-size: 0.92rem;
  }

  .mundial-chips {
    gap: 10px;
  }

  .mundial-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mundial-timer {
    grid-template-columns: repeat(2, 1fr);
  }

  .mundial-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mundial-btn-primary,
  .mundial-btn-secondary {
    width: 100%;
  }

  .mundial-visual {
    min-height: 340px;
  }

  .ring-1 {
    width: 280px;
    height: 280px;
  }

  .ring-2 {
    width: 220px;
    height: 220px;
  }

  .ring-3 {
    width: 160px;
    height: 160px;
  }

  .ball-core {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
  }

  .score-card {
    padding: 20px;
    border-radius: 22px;
  }

  .score-main {
    gap: 10px;
  }

  .team-name {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .mundial-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .mundial-box {
    padding: 16px 10px;
    border-radius: 18px;
  }

  .mundial-time-label {
    font-size: 0.7rem;
  }

  .score-bottom h3 {
    font-size: 1.1rem;
  }

  .score-numbers span {
    font-size: 2.4rem;
  }

  .score-numbers small {
    font-size: 1.5rem;
  }
}