/* ═══════════════════════════════════════════════════════
   BARBERÍA PRO — styles.css
   Extiende el template base de Barbería con secciones
   El Equipo e Instagram.
   Changarro Shop · https://changarro.shop
═══════════════════════════════════════════════════════ */

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

:root {
  --black:      #080808;
  --dark:       #101010;
  --card:       #161616;
  --card-hover: #1e1e1e;
  --gold:       #C9A84C;
  --gold-lt:    #E0C06A;
  --gold-dim:   rgba(201,168,76,.12);
  --white:      #F4EFE6;
  --muted:      rgba(244,239,230,.55);
  --gray:       #7a7a7a;
  --border:     rgba(255,255,255,.08);
  --border-gold:rgba(201,168,76,.35);
  --wa:         #25D366;
  --font-h:     'Bebas Neue', sans-serif;
  --font-b:     'Inter', sans-serif;
  --radius:     14px;
  --ease:       cubic-bezier(.25,.8,.25,1);
  --transition: .4s var(--ease);
}

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

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── UTILITIES ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}

.gold-line { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: 18px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 5px;
  font-family: var(--font-b); font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-gold  { background: var(--gold); color: var(--black); }
.btn-gold:hover  { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,.4); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fb855; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.4); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ─── SECTION BASE ─── */
section { padding: 104px 0; }
.section-header { margin-bottom: 60px; }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: .95; letter-spacing: .04em; color: var(--white);
}
.section-desc {
  margin-top: 16px; font-size: 1rem; line-height: 1.8;
  color: var(--muted); max-width: 480px;
}


/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 22px 0;
  transition: background .45s, padding .45s, box-shadow .45s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-box {
  width: 120px; height: auto; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0px 20px; flex-shrink: 0;
}
.nav-logo-img {
  width: 100%; height: auto; display: block;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(244,239,230,.65);
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 850;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu .mobile-link {
  font-family: var(--font-h); font-size: 2.2rem; letter-spacing: .12em;
  color: var(--white); transition: color .3s;
}
.mobile-menu .mobile-link:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--white);
  font-size: 1.8rem; cursor: pointer; transition: color .3s; line-height: 1;
}
.mobile-close:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}

.hero-img-bg {
  position: absolute; inset: -15%; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform; transform: translateY(0);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,8,.92) 50%, rgba(8,8,8,.55) 100%),
    linear-gradient(to top, rgba(8,8,8,.8) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-orb {
  position: absolute; border-radius: 50%; z-index: 1;
  will-change: transform; pointer-events: none;
}
.hero-orb-1 {
  width: 480px; height: 480px; right: -60px; top: -60px;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 220px; height: 220px; right: 18%; top: 22%;
  border: 1px solid rgba(201,168,76,.2); background: transparent;
}
.hero-orb-3 {
  width: 100px; height: 100px; right: 22.5%; top: 27%;
  border: 1px solid rgba(201,168,76,.35); background: transparent;
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 110px; padding-bottom: 90px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px; padding: 7px 18px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.6); }
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.8rem, 9.5vw, 7.5rem);
  line-height: .92; letter-spacing: .03em;
  margin-bottom: 26px; color: var(--white);
}
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(244,239,230,.6); margin-bottom: 42px; max-width: 500px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.hero-stats {
  display: flex; gap: 44px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-h); font-size: 2.4rem;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(244,239,230,.45); margin-top: 5px;
}

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(244,239,230,.3); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; animation: bounce 2.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}
.hero-scroll svg { color: var(--gold); opacity: .6; }


/* ═══════════════════════════════════════════════════════
   EL EQUIPO ← NUEVO EN PRO
═══════════════════════════════════════════════════════ */
#equipo { background: var(--dark); position: relative; }
#equipo::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.barber-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
}
.barber-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,.5);
}

/* Foto */
.barber-photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.barber-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .7s ease;
  filter: brightness(.85) saturate(.85);
}
.barber-card:hover .barber-photo img {
  transform: scale(1.06);
  filter: brightness(.95) saturate(1);
}
.barber-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(8,8,8,.2) 50%, transparent 100%);
}

/* Badge "Senior" / featured */
.barber-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: .6rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}

/* Info */
.barber-info { padding: 26px 28px 28px; }

.barber-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.barber-name {
  font-family: var(--font-h); font-size: 1.6rem;
  letter-spacing: .06em; line-height: 1; color: var(--white);
}
.barber-role {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-top: 5px;
}

.barber-bio {
  font-size: .88rem; line-height: 1.75; color: rgba(244,239,230,.55);
  margin-bottom: 22px;
}

.barber-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 11px 22px; border-radius: 5px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; transition: var(--transition); width: 100%;
  justify-content: center;
}
.barber-wa-btn:hover {
  background: #1fb855; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
}
.barber-wa-btn svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   PRECIOS
═══════════════════════════════════════════════════════ */
#precios { background: var(--black); position: relative; }
#precios::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s ease;
}
.price-card:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.price-card:hover::before { transform: scaleY(1); }
.price-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.05));
  border-color: var(--border-gold);
}
.featured-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--black);
  font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.price-name { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.price-desc { font-size: .82rem; color: var(--gray); line-height: 1.55; }
.price-duration {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-top: 10px;
}
.price-amount {
  font-family: var(--font-h); font-size: 2.1rem; color: var(--gold);
  white-space: nowrap; line-height: 1; flex-shrink: 0;
}
.price-amount span { font-family: var(--font-b); font-size: .9rem; font-weight: 300; }

.pricing-cta { text-align: center; margin-top: 52px; }
.pricing-note {
  margin-top: 16px; font-size: .8rem; color: rgba(244,239,230,.3);
  letter-spacing: .04em;
}


/* ═══════════════════════════════════════════════════════
   GALERÍA
═══════════════════════════════════════════════════════ */
#galeria { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { aspect-ratio: 3/4; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .7s ease;
  filter: brightness(.85) saturate(.9);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(.95) saturate(1.1);
}

.gallery-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.2) 50%, transparent 100%);
  opacity: 0; transition: opacity .4s ease;
  display: flex; align-items: flex-end; padding: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.gallery-tag::before { content: '✦'; font-size: .6rem; }

.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--card) 0%, #1f1a10 100%);
  z-index: 0;
}
.gallery-item img { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════════════════ */
#testimonios { background: var(--black); position: relative; overflow: hidden; }
#testimonios::before {
  content: '"'; position: absolute; top: -40px; left: 3%;
  font-family: var(--font-h); font-size: 22rem;
  color: rgba(201,168,76,.025); line-height: 1; pointer-events: none;
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-gold); transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.stars { display: flex; gap: 4px; margin-bottom: 22px; }
.stars span { color: var(--gold); font-size: .95rem; }

.testimonial-text {
  font-size: .95rem; line-height: 1.82; color: rgba(244,239,230,.72);
  margin-bottom: 26px; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), #6b4a00);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.2rem; color: var(--black);
}
.author-name { font-size: .9rem; font-weight: 700; }
.author-meta { font-size: .75rem; color: var(--gray); margin-top: 3px; }

.google-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 44px; padding: 10px 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: 100px;
  font-size: .8rem; color: var(--gray); transition: var(--transition);
}
.google-link:hover { border-color: var(--border-gold); color: var(--white); }


/* ═══════════════════════════════════════════════════════
   INSTAGRAM ← NUEVO EN PRO
═══════════════════════════════════════════════════════ */
#instagram { background: var(--dark); position: relative; }
#instagram::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.instagram-feed {
  border-radius: var(--radius); overflow: hidden;
  min-height: 320px;
}

/* Placeholder cuando no hay Behold ID configurado */
.instagram-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 64px 32px; text-align: center;
  background: var(--card); border: 1px dashed var(--border-gold);
  border-radius: var(--radius);
}
.instagram-placeholder svg {
  width: 48px; height: 48px; color: var(--gold); opacity: .5;
}
.instagram-placeholder p {
  font-size: .88rem; color: var(--muted); max-width: 340px; line-height: 1.7;
}
.instagram-placeholder strong { color: var(--gold); }


/* ═══════════════════════════════════════════════════════
   MAPA
═══════════════════════════════════════════════════════ */
#mapa { background: var(--black); padding-bottom: 0; }

.mapa-layout {
  display: grid; grid-template-columns: 1fr 1.8fr;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.mapa-info { background: var(--dark); padding: 56px 44px; }
.mapa-title {
  font-family: var(--font-h); font-size: 1.9rem;
  letter-spacing: .06em; line-height: 1.1; margin-bottom: 38px;
}
.mapa-title span { color: var(--gold); }

.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--gold-dim); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.info-label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px; font-weight: 600;
}
.info-value { font-size: .95rem; line-height: 1.6; color: rgba(244,239,230,.8); }
.info-value a { color: var(--gold); transition: color .3s; }
.info-value a:hover { color: var(--gold-lt); }

.map-frame { min-height: 440px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
#faq { background: var(--dark); }

.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 26px; background: none; border: none; cursor: pointer;
  color: var(--white); font-family: var(--font-b); font-size: .95rem; font-weight: 600;
  text-align: left; transition: color .3s;
}
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1; color: var(--gold);
  transition: transform .35s, background .3s, color .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); background: var(--gold); color: var(--black);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
  font-size: .9rem; line-height: 1.8; color: rgba(244,239,230,.6);
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer-inner { padding: 0 26px 24px; }


/* ═══════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════ */
#cta-final {
  background: var(--black); position: relative;
  overflow: hidden; text-align: center;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,168,76,.11) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: .95; letter-spacing: .04em; margin-bottom: 22px;
}
.cta-subtitle {
  font-size: 1.05rem; line-height: 1.75; color: var(--muted); margin-bottom: 42px;
}
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: #040404; border-top: 1px solid var(--border); padding: 56px 0 32px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 48px;
}
.footer-brand p {
  margin-top: 14px; font-size: .86rem; line-height: 1.75;
  color: rgba(244,239,230,.35); max-width: 260px;
}
.footer-col h4 {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .86rem; color: rgba(244,239,230,.45); transition: color .3s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: .76rem; color: rgba(244,239,230,.22);
}
.footer-powered a { color: var(--gold); transition: color .3s; }
.footer-powered a:hover { color: var(--gold-lt); }


/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-tooltip {
  background: var(--white); color: var(--black);
  padding: 9px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  opacity: 0; transform: translateX(14px) scale(.95);
  transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0) scale(1); }

.wa-btn-float {
  width: 62px; height: 62px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  animation: wa-pulse 2.8s infinite; cursor: pointer; transition: transform .3s;
}
.wa-btn-float:hover { transform: scale(1.1); animation-play-state: paused; }
.wa-btn-float svg { width: 32px; height: 32px; fill: white; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 52px rgba(37,211,102,.75), 0 0 0 14px rgba(37,211,102,.08); }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .nav-links { gap: 20px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }

  .mapa-layout { grid-template-columns: 1fr; }
  .mapa-info { padding: 44px 32px; }
  .map-frame { min-height: 320px; }

  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero-stats { gap: 26px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-top { gap: 32px; }
}
