/* ═══════════════════════════════════════════════════════
   EL YUNQUE HERRERÍA — STYLESHEET
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #242424;
  --graphite:    #2e2e2e;
  --mid:         #444444;
  --muted:       #888888;
  --light:       #c8c8c8;
  --white:       #f8f8f8;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    rgba(201,168,76,0.18);
  --gold-border: rgba(201,168,76,0.35);
  --steel:       rgba(180,190,200,0.08);

  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 8px 40px rgba(0,0,0,0.55);
  --shadow-sm:0 4px 20px rgba(0,0,0,0.4);
  --trans:    .35s cubic-bezier(.4,0,.2,1);

  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

::selection { background: var(--gold); color: #000; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY SCALE ── */
.section-tag {
  font-family: var(--ff-head);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-tag.centered { justify-content: center; }
.section-tag.centered::before { display: none; }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-body {
  color: var(--light);
  margin-bottom: 1rem;
  font-weight: 300;
  max-width: 600px;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 1rem;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: #000;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .9rem;
  padding: .72rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ══════════════════════════════════════ NAVBAR ══ */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
#mainNav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  padding: .6rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .06em;
}
.brand-sub { display: block; color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .18em; }

.navbar-toggler {
  border: none;
  background: none;
  padding: .5rem;
  display: flex; flex-direction: column; gap: 5px;
}
.toggler-icon {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-link {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light) !important;
  padding: .5rem .85rem !important;
  position: relative;
  transition: color var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem; right: .85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { transform: scaleX(1); }

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1rem;
    margin-top: .5rem;
    border-top: 1px solid var(--gold-border);
  }
  .nav-link::after { display: none; }
  .nav-link { padding: .7rem 1rem !important; }
  .ms-lg-3 { margin-top: .5rem; }
}

/* ══════════════════════════════════════ HERO ══ */
.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.65) 55%,
    rgba(0,0,0,.3) 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ff-head);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow-line {
  display: block;
  width: 36px; height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(248,248,248,.8);
  max-width: 560px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.btn-hero {
  font-size: 1rem;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
}

.btn-outline-hero {
  border: 1.5px solid rgba(248,248,248,.4);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .9rem;
  padding: .72rem 1.8rem;
  border-radius: var(--radius);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent;
}
.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem;
  color: rgba(248,248,248,.65);
  font-family: var(--ff-head);
  letter-spacing: .05em;
}
.trust-item i { color: var(--gold); font-size: .9rem; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
}
.scroll-dot {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(248,248,248,.35);
  border-radius: 11px;
  position: relative;
  display: block;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ══════════════════════════════════════ STATS BAR ══ */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.stat-item {
  display: flex; align-items: baseline; gap: .25rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--ff-head);
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--gold-border);
  align-self: center;
  display: none;
}
@media (min-width: 576px) {
  .stat-divider { display: block; }
}

/* ══════════════════════════════════════ SECTIONS GENERAL ══ */
.section-nosotros,
.section-servicios,
.section-proceso,
.section-diferenciales,
.section-galeria,
.section-testimonios,
.section-pagos,
.section-contacto {
  padding: 6rem 0;
}

/* ══════════════════════════════════════ NOSOTROS ══ */
.section-nosotros { background: var(--dark); }

.nosotros-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.nosotros-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.nosotros-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60%; height: 60%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
}
.nosotros-badge {
  position: absolute;
  top: 1.5rem; left: -1rem;
  z-index: 2;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.badge-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.nosotros-values {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.value-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .82rem;
  font-family: var(--ff-head);
  letter-spacing: .05em;
  color: var(--light);
}
.value-chip i { color: var(--gold); font-size: .75rem; }

/* ══════════════════════════════════════ SERVICIOS ══ */
.section-servicios { background: var(--black); }

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: var(--graphite);
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.service-card--featured::before { opacity: 1; }

.service-featured-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: #000;
  font-size: .68rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}
.service-title {
  font-family: var(--ff-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .8rem;
}
.service-desc {
  font-size: .93rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  flex: 1;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.6rem;
}
.service-features li {
  font-size: .87rem;
  color: var(--light);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: .5rem;
}
.service-features li i { color: var(--gold); font-size: .7rem; }

.service-cta {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .45rem;
  transition: gap var(--trans), color var(--trans);
}
.service-cta:hover { color: var(--gold-light); gap: .75rem; }

/* ══════════════════════════════════════ PROCESO ══ */
.section-proceso { background: var(--dark); }

.proceso-timeline {
  max-width: 820px;
  margin: 0 auto;
}
.proceso-step {
  display: grid;
  grid-template-columns: 56px 56px 1fr;
  gap: 0 1.4rem;
  align-items: start;
  padding: 1.8rem 0;
}
.step-number {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  opacity: .6;
  padding-top: .2rem;
  text-align: right;
}
.step-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.proceso-step:hover .step-icon-wrap {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 28px rgba(201,168,76,0.4);
}
.step-body h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.step-body p {
  font-size: .91rem;
  color: var(--muted);
  line-height: 1.7;
}
.proceso-connector {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  margin: 0 auto 0 calc(56px + 1.4rem + 26px);
  display: block;
}

@media (max-width: 575px) {
  .proceso-step {
    grid-template-columns: 36px 44px 1fr;
    gap: 0 1rem;
  }
  .step-number { font-size: .7rem; }
}

/* ══════════════════════════════════════ DIFERENCIALES ══ */
.section-diferenciales { background: var(--black); }

.diff-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  transition: border-color var(--trans), transform var(--trans);
}
.diff-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.diff-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.diff-card h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.diff-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════ GALERÍA ══ */
.section-galeria { background: var(--dark); }

/* ── Gallery carousel ── */
.gallery-carousel-wrap { position: relative; }

.gallery-carousel { overflow: hidden; border-radius: var(--radius-lg); }

.gallery-slide-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 575px) {
  .gallery-slide-row { grid-template-columns: 1fr; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .gallery-slide-row { grid-template-columns: repeat(2, 1fr); }
}

.gallery-slide-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-slide-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
  display: block;
}
.gallery-slide-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-slide-item:hover .gallery-overlay { opacity: 1; }

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: var(--dark2);
  color: var(--gold);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  flex-shrink: 0;
}
.gallery-ctrl-btn:hover { background: var(--gold); color: #000; }

.gallery-indicators {
  position: static !important;
  margin: 0 !important;
  display: flex;
  gap: .4rem;
  align-items: center;
}
.gallery-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--graphite) !important;
  opacity: 1 !important;
  border: none !important;
  transition: background var(--trans) !important;
  flex-shrink: 0;
  padding: 0 !important;
}
.gallery-indicators button.active { background: var(--gold) !important; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 92vw;
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none; border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--trans);
  z-index: 2;
}
.lb-close:hover { color: var(--gold); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  z-index: 2;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-nav:hover { background: var(--gold); color: #000; }
.lb-counter {
  position: absolute;
  bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--ff-head);
  letter-spacing: .1em;
}

/* ══════════════════════════════════════ TESTIMONIOS ══ */
.section-testimonios { background: var(--dark2); }

.testi-card {
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.4rem; letter-spacing: .1em; }
.testi-card blockquote {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  margin: 0 0 1.8rem;
  font-style: italic;
  quotes: none;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.testi-author span {
  font-size: .8rem;
  color: var(--muted);
}

.testi-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testi-ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: var(--dark);
  color: var(--white);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  flex-shrink: 0;
}
.testi-ctrl-btn:hover { background: var(--gold); color: #000; }

.testi-indicators {
  position: static !important;
  margin: 0 !important;
  display: flex;
  gap: .4rem;
  align-items: center;
}
.testi-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--graphite) !important;
  opacity: 1 !important;
  border: none !important;
  padding: 0 !important;
  transition: background var(--trans) !important;
  flex-shrink: 0;
}
.testi-indicators button.active { background: var(--gold) !important; }

/* ══════════════════════════════════════ PAGOS ══ */
.section-pagos { background: var(--black); }

.pago-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  transition: border-color var(--trans), transform var(--trans);
  position: relative;
}
.pago-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}
.pago-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.pago-card h5 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.pago-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.pago-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .68rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-top: .8rem;
}

.pago-aviso {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  font-size: .93rem;
  color: var(--light);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-align: left;
}
.pago-aviso i { color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════ CONTACTO ══ */
.section-contacto { background: var(--dark); }

.contacto-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.form-label {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--ff-head);
  margin-bottom: .4rem;
}
.form-input {
  background: var(--dark3) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-family: var(--ff-body) !important;
  padding: .75rem 1rem !important;
  transition: border-color var(--trans) !important;
  width: 100%;
}
.form-input::placeholder { color: var(--mid) !important; }
.form-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-dim) !important;
  outline: none !important;
}
.form-select option { background: var(--dark3); }

/* Redes */
.redes-grid {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.red-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: border-color var(--trans), transform var(--trans), background var(--trans);
  text-decoration: none;
  color: var(--white);
}
.red-card:hover {
  transform: translateX(4px);
  border-color: var(--gold-border);
  color: var(--white);
}
.red-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.red-wa .red-icon  { background: rgba(37,211,102,.15); color: #25d366; }
.red-ig .red-icon  { background: rgba(225,48,108,.15); color: #e1306c; }
.red-fb .red-icon  { background: rgba(24,119,242,.15); color: #1877f2; }
.red-em .red-icon  { background: rgba(201,168,76,.15); color: var(--gold); }

.red-info {
  flex: 1;
  display: flex; flex-direction: column;
}
.red-info strong { font-family: var(--ff-head); font-size: .95rem; }
.red-info span   { font-size: .78rem; color: var(--muted); }

.red-arrow { font-size: .75rem; color: var(--muted); }

.ubicacion-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--light);
}
.ubicacion-card i { color: var(--gold); font-size: 1.1rem; margin-top: .15rem; }
.ubicacion-card strong { display: block; font-family: var(--ff-head); margin-bottom: .2rem; }
.ubicacion-card span { font-size: .85rem; color: var(--muted); }

/* ══════════════════════════════════════ FOOTER ══ */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.07); }

.footer-top { padding: 4rem 0; }

.footer-brand {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.footer-redes { display: flex; gap: .7rem; }
.footer-redes a {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .95rem;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.footer-redes a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.footer-heading {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .88rem;
  color: var(--muted);
  transition: color var(--trans), padding-left var(--trans);
  display: block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
  font-size: .8rem;
  color: var(--mid);
}
.footer-dev {
  color: var(--muted);
  transition: color var(--trans);
  text-decoration: none;
}
.footer-dev:hover { color: var(--gold); }
.footer-dev strong { color: var(--gold); }

/* ══════════════════════════════════════ FLOATS ══ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 1.6rem;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  z-index: 999;
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.7);
  color: #fff;
}

.back-top {
  position: fixed;
  bottom: 6.5rem;
  right: 1.7rem;
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--trans), transform var(--trans), background var(--trans);
}
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { background: var(--gold); color: #000; }

/* ══════════════════════════════════════ AOS-LIKE ══ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos="fade-right"]   { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos="fade-left"]    { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate  { transform: none; }

/* ══════════════════════════════════════ RESPONSIVE ══ */
@media (max-width: 767px) {
  .nosotros-badge { left: .5rem; }
  .nosotros-img   { height: 300px; }
  .testi-card     { padding: 2rem 1.4rem; }
  .contacto-form-wrap { padding: 1.6rem; }
  .pago-aviso { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero, .btn-outline-hero { width: 100%; justify-content: center; }
  .stats-inner { gap: 1.2rem 1.5rem; }
  .stat-num    { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}