/* =============================================
   BARBERÍA LA 11 – style.css
   Paleta: Negro #0d0d0d, Blanco #f5f0eb,
           Ámbar #c18f1e, Gris #2a2a2a
   Tipografía: Playfair Display + DM Sans
============================================= */

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

:root {
  --black:      #0d0d0d;
  --dark:       #1a1a1a;
  --dark-2:     #2a2a2a;
  --dark-3:     #3a3a3a;
  --gold:       #c18f1e;
  --gold-light: #e0b24f;
  --gold-dark:  #9c730f;
  --cream:      #f5f0eb;
  --cream-2:    #ede8e2;
  --white:      #ffffff;
  --grey:       #888888;
  --grey-light: #c0bab3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);

  --transition: 0.3s ease;
  --max-w: 1200px;
  --header-h: 72px;
}

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

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── UTILIDADES ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }

/* Dorado */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(193,143,30,.35);
}

/* Outline (hero) */
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,235,.4);
}
.btn-outline:hover {
  background: rgba(245,240,235,.1);
  border-color: var(--cream);
}

/* Oscuro */
.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--dark-2);
  box-shadow: var(--shadow-sm);
}

/* Header */
.btn-header {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  padding: .6rem 1.4rem;
  font-size: .8rem;
}
.btn-header:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* WhatsApp */
.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
}

/* Instagram */
.btn-ig {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
  color: #fff;
  border: none;
}
.btn-ig:hover { opacity: .9; }

/* Small */
.btn-sm { padding: .6rem 1.4rem; font-size: .8rem; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.tag-light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}
.title-light { color: var(--cream); }
.section-sub {
  max-width: 560px;
  margin-inline: auto;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
}
.sub-light { color: var(--grey-light); }


/* =============================================
   HEADER
============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#header.scrolled {
  background: rgba(13,13,13,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}
.logo-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  letter-spacing: .05em;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-desktop a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,235,.75);
  transition: color var(--transition);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--cream); }
.nav-desktop a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav móvil */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,.98);
  padding: 1.5rem clamp(1.25rem,5vw,3rem) 2rem;
  gap: .25rem;
  border-top: 1px solid rgba(193,143,30,.2);
}
.nav-mobile.open { display: flex; }
.nav-link-mobile {
  display: block;
  padding: .85rem 0;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.nav-link-mobile:hover { color: var(--gold); }
.nav-link-mobile.btn { margin-top: 1.25rem; text-align: center; border-bottom: none; }


/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--header-h);
}

/* Fondo con patrón de líneas diagonales */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(193,143,30,.04) 0,
      rgba(193,143,30,.04) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: 40px 40px;
}

/* Gradiente izquierda */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%,
    rgba(193,143,30,.07) 0%,
    transparent 60%),
    linear-gradient(to right, rgba(13,13,13,.6) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 4rem 5rem;
}

/* Tag decorativo */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tag-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.tag-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Título */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 1.1em;
}

/* Slogan */
.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(245,240,235,.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-slogan span {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(245,240,235,.5);
  font-size: .95em;
}

/* Botones hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,235,.5);
  margin-top: .3rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(193,143,30,.3);
}

/* Deco tijeras */
.hero-deco {
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deco-scissors {
  font-size: clamp(6rem, 18vw, 16rem);
  opacity: .04;
  filter: blur(1px);
  transform: rotate(-30deg);
  user-select: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-inline: auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* =============================================
   SERVICIOS
============================================= */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height .4s ease;
  border-radius: 0 0 3px 3px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193,143,30,.25);
}
.service-card:hover::before { height: 100%; }

/* Featured dark */
.service-card.featured {
  background: var(--dark);
  border-color: transparent;
}
.service-card.featured .service-name,
.service-card.featured .service-desc { color: var(--cream); }
.service-card.featured .service-icon { color: var(--gold); }
.service-card.featured:hover { box-shadow: 0 12px 40px rgba(0,0,0,.5); }

/* Featured gold */
.service-card.featured-gold {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1609 100%);
  border-color: rgba(193,143,30,.3);
}
.service-card.featured-gold .service-name,
.service-card.featured-gold .service-desc { color: var(--cream); }
.service-card.featured-gold .service-icon { color: var(--gold); }

/* Badge */
.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 50px;
}
.badge-gold { background: var(--gold); color: var(--black); }

/* Icono */
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .6rem;
}

.service-desc {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.price-old {
  font-size: .9rem;
  color: var(--grey);
  text-decoration: line-through;
}

/* CTA servicios */
.services-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.services-cta p {
  font-size: .95rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
}


/* =============================================
   SOBRE NOSOTROS
============================================= */
.about {
  background: var(--cream-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Visual */
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  height: 480px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main {
  width: 75%;
  height: 85%;
  top: 0; left: 0;
}
.about-img-secondary {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.img-barber {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2010 100%);
}
.img-shop {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}

/* Badge flotante */
.about-badge-float {
  position: absolute;
  top: 55%;
  left: 65%;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transform: translate(-50%, -50%);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.about-deco-line {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Texto */
.about-text { }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about-body {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-values {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.about-values li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .9rem;
  color: #444;
  line-height: 1.5;
}
.value-icon {
  color: var(--gold);
  font-size: .8rem;
  margin-top: .25rem;
  flex-shrink: 0;
}
.about-values strong { color: var(--black); }


/* =============================================
   HORARIOS
============================================= */
.schedule {
  background: var(--dark);
}
.schedule .section-tag,
.schedule .section-title,
.schedule .section-sub {
  color: var(--cream);
}
.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.schedule-text .section-title { text-align: left; }
.schedule-text .section-sub   { text-align: left; margin-left: 0; margin-bottom: 2rem; }
.schedule-text .section-tag   { }

/* Tabla */
.schedule-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table thead th {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
}
.schedule-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background var(--transition);
}
.schedule-table tbody tr:hover { background: rgba(193,143,30,.06); }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table td {
  padding: .9rem 1.25rem;
  font-size: .92rem;
  color: var(--dark);
}
.schedule-table td:first-child { font-weight: 600; }
.row-closed td { color: var(--grey); }

.badge-open {
  display: inline-block;
  background: rgba(37,211,102,.12);
  color: #18a349;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
  border: 1px solid rgba(37,211,102,.25);
}
.badge-closed {
  display: inline-block;
  background: rgba(150,0,0,.08);
  color: #c0392b;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
  border: 1px solid rgba(192,57,43,.2);
}

.schedule-note {
  padding: .9rem 1.25rem;
  font-size: .78rem;
  color: var(--grey);
  background: rgba(0,0,0,.02);
  border-top: 1px solid rgba(0,0,0,.06);
}


/* =============================================
   CONTACTO
============================================= */
.contact {
  background: var(--cream-2);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--gold);
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .5rem;
}
.contact-card p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.contact-card p a { color: var(--dark); font-weight: 500; }
.contact-card p a:hover { color: var(--gold); }
.contact-card-wa { border-color: rgba(37,211,102,.2); }
.contact-card-ig { border-color: rgba(131,52,175,.15); }

/* Mapa placeholder */
.map-placeholder {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid rgba(193,143,30,.15);
}
.map-inner { }
.map-pin { font-size: 3rem; margin-bottom: 1rem; }
.map-placeholder p {
  color: var(--grey-light);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.map-placeholder strong { color: var(--cream); }


/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--black);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo-footer { margin-bottom: 1rem; }
.footer-tagline {
  font-size: .82rem;
  color: rgba(245,240,235,.4);
  line-height: 1.65;
  font-style: italic;
  max-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links li a {
  font-size: .85rem;
  color: rgba(245,240,235,.5);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--cream); }

.footer-contact p {
  font-size: .85rem;
  color: rgba(245,240,235,.5);
  line-height: 1.7;
  margin-bottom: .6rem;
}
.footer-contact a {
  color: rgba(245,240,235,.5);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(245,240,235,.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(245,240,235,.25);
  letter-spacing: .05em;
}


/* =============================================
   BOTÓN FLOTANTE WHATSAPP
============================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--dark);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: .4rem .85rem;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* =============================================
   BOTÓN VOLVER ARRIBA
============================================= */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 998;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(193,143,30,.15);
  border: 1px solid rgba(193,143,30,.3);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}


/* =============================================
   ANIMACIONES DE ENTRADA (scroll reveal)
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }


/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about-inner,
  .schedule-inner {
    grid-template-columns: 1fr;
  }
  .about-visual { order: -1; }
  .about-img-wrap { height: 340px; }
  .schedule-text .section-title,
  .schedule-text .section-sub { text-align: center; margin-inline: auto; }
  .schedule-text { text-align: center; }
}

@media (max-width: 768px) {
  .nav-desktop,
  .btn-header { display: none; }
  .hamburger  { display: flex; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-deco  { display: none; }
  .hero-stats { gap: 1rem 0; }
  .stat { padding-inline: 1.25rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 50px; height: 1px; }
  .stat { padding-inline: 0; }

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

  .about-img-wrap { height: 280px; }
  .about-badge-float { display: none; }

  .wa-float  { bottom: 1.25rem; right: 1.25rem; }
  .back-to-top { bottom: 5.5rem; right: 1.25rem; }

  .schedule-inner { grid-template-columns: 1fr; }
}
