*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:     #080808;
  --bg2:    #0f0f0f;
  --bg3:    #141414;
  --bg4:    #1c1c1c;
  --gold:   #C9A84C;
  --gold2:  #D4B85A;
  --gold-a: rgba(201, 168, 76, .12);
  --gold-b: rgba(201, 168, 76, .22);
  --text:   #F0F0F0;
  --text2:  #A0A0A0;
  --text3:  #555;
  --red:    #e63946;
  --radius: 12px;
  --t:      .3s ease;
  --font:   'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s, color .4s;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── LIGHT MODE ── */
body.light {
  --bg:     #ffffff;
  --bg2:    #f4f4f4;
  --bg3:    #ececec;
  --bg4:    #e2e2e2;
  --text:   #0a0a0a;
  --text2:  #444;
  --text3:  #999;
  --gold-a: rgba(201, 168, 76, .1);
  --gold-b: rgba(201, 168, 76, .3);
}
body.light nav.scrolled          { background: rgba(255, 255, 255, .97) !important; }
body.light .nav-logo img         { mix-blend-mode: normal; }
body.light .mobile-menu          { background: rgba(255, 255, 255, .98); }
body.light .mobile-menu a        { color: #0a0a0a; }
body.light .hero-overlay         { background: linear-gradient(135deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,.75) 100%); }
body.light .hero-title           { color: #0a0a0a; }
body.light .hero-desc            { color: #333; }
body.light .btn-outline          { border-color: rgba(0, 0, 0, .2); color: #0a0a0a; }
body.light .btn-outline:hover    { border-color: var(--gold); color: var(--gold); }
body.light ::-webkit-scrollbar-track { background: #f4f4f4; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--bg3);
  border-top-color: var(--gold);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, .96);
  backdrop-filter: blur(20px);
  padding: 13px 5%;
  border-bottom: 1px solid var(--gold-b);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 96px; width: auto;
  object-fit: contain;
  transition: height .3s ease;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: .82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--t);
}
.nav-links a:hover              { color: var(--gold); }
.nav-links a:hover::after       { transform: scaleX(1); }
.nav-cta                        { background: var(--gold) !important; color: #000 !important; padding: 9px 22px; border-radius: 6px; font-weight: 800 !important; }
.nav-cta::after                 { display: none !important; }
.nav-cta:hover                  { background: var(--gold2) !important; }
.nav-controls                   { display: flex; align-items: center; gap: 8px; }
.nav-ctrl-btn {
  background: var(--gold-a);
  border: 1px solid var(--gold-b);
  border-radius: 7px;
  padding: 7px 13px;
  color: var(--text2);
  font-family: var(--font); font-size: .74rem; font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-ctrl-btn:hover { color: var(--gold); border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); transition: all .3s; border-radius: 2px; }
.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); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8, 8, 8, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold); }
.mob-controls { display: flex; gap: 12px; margin-top: 16px; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0; opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.45) 50%, rgba(8,8,8,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px; max-width: 920px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-a); border: 1px solid var(--gold-b);
  color: var(--gold);
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 22px; border-radius: 100px; margin-bottom: 30px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: var(--text2); font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase; margin-bottom: 18px;
}
.hero-desc {
  font-size: clamp(.88rem, 1.8vw, 1.05rem);
  color: var(--text2); line-height: 1.9; margin-bottom: 50px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: #000;
  padding: 15px 38px; border-radius: 8px; border: none;
  font-family: var(--font); font-size: .88rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all var(--t);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.3); }
.btn-outline {
  background: transparent; color: var(--text);
  padding: 15px 38px; border-radius: 8px;
  border: 1px solid rgba(240, 240, 240, .2);
  font-family: var(--font); font-size: .88rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all var(--t);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: .68rem; letter-spacing: 3px; color: var(--text3); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.section-hd { text-align: center; margin-bottom: 70px; }
.s-tag { display: inline-block; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.s-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.s-desc { color: var(--text2); font-size: .95rem; line-height: 1.85; max-width: 580px; margin: 0 auto; }
.gold-line { width: 56px; height: 2px; background: var(--gold); margin: 22px auto 0; }

/* ── STATS ── */
#stats {
  padding: 60px 5%;
  background: var(--bg2);
  border-top: 1px solid var(--gold-b);
  border-bottom: 1px solid var(--gold-b);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1000px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: .75rem; color: var(--text2); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ── SERVICES ── */
#servicios { background: var(--bg); }
.srv-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
  max-width: 1200px; margin: 0 auto;
}
.srv-card {
  background: var(--bg3); border: 1px solid var(--gold-b);
  border-radius: var(--radius); padding: 38px 30px;
  transition: all .4s ease; position: relative; overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.srv-card:hover { transform: translateY(-6px); background: var(--bg4); border-color: rgba(201,168,76,.5); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-icon  { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.srv-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.srv-desc  { color: var(--text2); font-size: .88rem; line-height: 1.75; }

/* ── CAROUSEL (shared: images & videos) ── */
.carousel-wrap {
  position: relative; width: 100%; max-width: 1100px; margin: 0 auto;
  overflow: hidden; border-radius: 16px; border: 1px solid var(--gold-b);
}
.carousel-track {
  display: flex; flex-wrap: nowrap;
  width: 100%;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}
.carousel-slide { flex: 0 0 100%; width: 100%; position: relative; cursor: pointer; }
.carousel-slide img,
.carousel-slide video   { width: 100%; height: 560px; object-fit: cover; display: block; }
.carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.7) 0%, transparent 50%);
  pointer-events: none;
}
.carousel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(201, 168, 76, .9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #000; pointer-events: none;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(8, 8, 8, .7); border: 1px solid var(--gold-b);
  border-radius: 50%; color: var(--gold); font-size: 1.6rem;
  cursor: pointer; z-index: 10; transition: all var(--t);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover    { background: var(--gold); color: #000; border-color: var(--gold); }
.carousel-prev         { left: 16px; }
.carousel-next         { right: 16px; }
.carousel-dots         { display: flex; justify-content: center; gap: 8px; padding: 20px 0 4px; flex-wrap: wrap; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text3); border: none; cursor: pointer;
  transition: all var(--t); padding: 0;
}
.carousel-dot.active   { background: var(--gold); width: 22px; border-radius: 3px; }
.carousel-counter      { text-align: center; color: var(--text3); font-size: .72rem; letter-spacing: 2px; margin-bottom: 12px; }

/* ── VIDEOS SECTION ── */
#videos { background: var(--bg); }

/* ── ABOUT ── */
#nosotros { background: var(--bg2); }
.about-content { max-width: 780px; margin: 0 auto; }
.about-tag   { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.about-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 22px; }
.about-text  { color: var(--text2); font-size: .92rem; line-height: 1.95; margin-bottom: 18px; }
.about-list  { list-style: none; margin-bottom: 38px; }
.about-list li {
  padding: 10px 0; color: var(--text2); font-size: .88rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  display: flex; align-items: center; gap: 12px;
}
.about-list li::before { content: '✦'; color: var(--gold); font-size: .55rem; }

/* ── CONTACT ── */
#contacto { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.c-info h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.c-info p  { color: var(--text2); line-height: 1.85; margin-bottom: 36px; }
.c-item    { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.c-icon    {
  width: 46px; height: 46px;
  background: var(--gold-a); border: 1px solid var(--gold-b);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.c-label { font-size: .68rem; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.c-value { font-size: .92rem; font-weight: 600; }
.c-value a { color: var(--text); text-decoration: none; transition: color var(--t); }
.c-value a:hover { color: var(--gold); }
.c-form {
  background: var(--bg3); border: 1px solid var(--gold-b);
  border-radius: var(--radius); padding: 42px;
}
.fg               { margin-bottom: 18px; }
.fg label         { display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text2); margin-bottom: 9px; }
.fg input,
.fg select,
.fg textarea      { width: 100%; background: var(--bg); border: 1px solid var(--gold-b); border-radius: 8px; padding: 13px 16px; color: var(--text); font-family: var(--font); font-size: .88rem; transition: border-color var(--t); outline: none; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); }
.fg textarea      { resize: vertical; min-height: 110px; }
.fg select option { background: var(--bg); }

.form-notice { display: none; color: var(--red); font-size: .82rem; margin-bottom: 14px; }

.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.btn-email {
  background: var(--gold); color: #000; border: none;
  border-radius: 8px; padding: 14px 10px;
  font-family: var(--font); font-size: .82rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-email:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-wa {
  background: #1a9e4a; color: #fff; border: none;
  border-radius: 8px; padding: 14px 10px;
  font-family: var(--font); font-size: .82rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--gold-b);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  max-width: 1200px; margin: 0 auto 50px;
}
.ft-brand p  { color: var(--text3); font-size: .84rem; line-height: 1.85; max-width: 300px; }
.ft-col h4   { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ft-col ul   { list-style: none; }
.ft-col ul li { margin-bottom: 10px; }
.ft-col ul li a { color: var(--text3); text-decoration: none; font-size: .84rem; transition: color var(--t); }
.ft-col ul li a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .05); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: var(--text3); font-size: .76rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--bg3); border: 1px solid var(--gold-b);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--text2); text-decoration: none; transition: all var(--t);
}
.social-links a:hover { background: var(--gold-a); border-color: var(--gold); color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 62px; height: 62px; background: #1a9e4a;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 5px 18px rgba(0, 0, 0, .45); }

.sms-float {
  position: fixed; bottom: 106px; right: 30px; z-index: 900;
  width: 62px; height: 62px; background: #2a6db5;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
  transition: transform var(--t), box-shadow var(--t);
}
.sms-float:hover { transform: scale(1.08); box-shadow: 0 5px 18px rgba(0, 0, 0, .45); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, .97);
  align-items: center; justify-content: center; padding: 20px;
}
#lightbox.open { display: flex; }
#lb-img   { max-width: 88vw; max-height: 84vh; border-radius: var(--radius); object-fit: contain; }
#lb-video {
  max-width: 88vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  display: none;
  background: #000;
}
#lb-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(0, 0, 0, .5); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%; width: 42px; height: 42px;
  color: var(--text); cursor: pointer; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
#lb-close:hover { background: rgba(255, 255, 255, .15); }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(0, 0, 0, .6); border: 1px solid var(--gold-b);
  border-radius: 50%; color: var(--gold); font-size: 1.8rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--t); z-index: 2001; backdrop-filter: blur(8px);
}
.lb-arrow:hover { background: var(--gold); color: #000; border-color: var(--gold); }
#lb-prev    { left: 16px; }
#lb-next    { right: 16px; }
#lb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .4); font-size: .75rem;
  letter-spacing: 2px; font-family: var(--font);
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-controls { display: none; }
  .hamburger    { display: flex; }
  section       { padding: 80px 5%; }
  #stats        { padding: 50px 5%; }
}
@media (max-width: 480px) {
  .c-form       { padding: 26px 18px; }
  .hero-btns    { flex-direction: column; align-items: center; }
  .form-actions { grid-template-columns: 1fr; }
  .carousel-slide img,
  .carousel-slide video { height: 280px; }
}

/* ── NFC CONTACT PAGE ── */
.nfc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 64px;
  background: var(--bg);
}

.nfc-logo-wrap { margin-bottom: 12px; text-decoration: none; }
.nfc-logo-img  { height: 200px; width: auto; object-fit: contain; mix-blend-mode: screen; }
body.light .nfc-logo-img { mix-blend-mode: normal; }

.nfc-company {
  font-size: .75rem; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 4px;
}
.nfc-sub {
  font-size: .7rem; color: var(--text3);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 32px;
}
.nfc-back {
  font-size: .78rem; font-weight: 600; color: var(--text2);
  text-decoration: none; margin-bottom: 20px;
  transition: color var(--t);
}
.nfc-back:hover { color: var(--gold); }

.nfc-heading {
  font-size: .62rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.nfc-btns {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; max-width: 360px;
}

.nfc-btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg3); color: var(--text);
  border: 1px solid var(--gold-b);
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, border-color .2s ease;
}
.nfc-btn:hover  { transform: translateY(-2px); border-color: var(--gold); }
.nfc-btn:active { transform: translateY(0); }

.nfc-btn svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }

.nfc-btn--wa svg    { color: #25d366; }
.nfc-btn--insta svg { color: #e1306c; }
.nfc-btn--fb svg    { color: #1877f2; }
.nfc-btn--web svg   { color: var(--text2); }

.nfc-btn__stack { display: flex; flex-direction: column; gap: 2px; }
.nfc-btn__sub   { font-size: .72rem; font-weight: 400; color: var(--text2); }
