/* ══════════════════════════════════════════════
   IMPULSA — style.css  (versión completa + responsive)
   Breakpoints: xs <480 · sm 480-767 · md 768-1023 · lg 1024+
══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --brand:      #E8336D;
  --brand2:     #F06292;
  --nav-h:      68px;
  --radius:     18px;
  --transition: .3s cubic-bezier(.22,1,.36,1);
}

/* ── DARK (default) ── */
[data-theme="dark"] {
  --bg:              #0C0C0C;
  --bg2:             #161616;
  --bg3:             #1E1E1E;
  --surface:         rgba(255,255,255,.035);
  --border:          rgba(255,255,255,.07);
  --text:            #F5F3F0;
  --text-muted:      rgba(245,243,240,.52);
  --nav-bg:          rgba(13,13,13,.82);
  --logo-filter:     none;
  --card-shadow:     0 8px 40px rgba(0,0,0,.45);
  --contact-overlay: rgba(13,13,13,.82);
  --input-bg:        rgba(255,255,255,.06);
  --input-border:    rgba(255,255,255,.1);
}

/* ── LIGHT ── */
[data-theme="light"] {
  --bg:              #FAF5EE;
  --bg2:             #F3EDE3;
  --bg3:             #EDE5D8;
  --surface:         rgba(0,0,0,.04);
  --border:          rgba(0,0,0,.08);
  --text:            #1A1410;
  --text-muted:      rgba(26,20,16,.55);
  --nav-bg:          rgba(250,245,238,.88);
  --logo-filter:     none;
  --card-shadow:     0 8px 40px rgba(0,0,0,.1);
  --contact-overlay: rgba(20,12,8,.78);
  --input-bg:        rgba(0,0,0,.05);
  --input-border:    rgba(0,0,0,.14);
}

/* ── FUENTES ── */
@font-face {
  font-family: 'TAN Nimbus';
  src: url('fonts/tan-nimbus.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg); color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(92%, 1100px);
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232,51,109,.15);
  border-radius: 50px; padding: 0 24px; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 999;
  transition: box-shadow var(--transition), background var(--transition);
}
nav.scrolled { box-shadow: 0 4px 40px rgba(232,51,109,.14); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text); flex-shrink: 0;
}
.nav-logo { height: 100px; width: auto; max-width: 180px; object-fit: contain; filter: var(--logo-filter); transition: filter var(--transition); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500; transition: color .25s; position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--brand); border-radius: 2px; transition: width .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.theme-toggle {
  background: none; border: 1.5px solid var(--border);
  color: var(--text); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  transition: border-color .25s, color .25s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); }
.theme-toggle svg { width: 15px; height: 15px; }

[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.btn-nav {
  background: transparent; border: 1.5px solid var(--text);
  color: var(--text); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: background .25s, color .25s, border-color .25s; white-space: nowrap;
}
.btn-nav svg { width: 13px; height: 13px; }
.btn-nav:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1002;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s, transform .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 1001;
  background: var(--bg);
  flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none;
  /* Always flex, controlled by opacity + pointer-events */
  display: flex;
  transition: opacity .32s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }

.nav-drawer .nav-links {
  display: flex !important; flex-direction: column;
  align-items: center; gap: 26px; list-style: none;
}
.nav-drawer .nav-links a {
  font-family: 'TAN Nimbus', sans-serif;
  font-size: 38px; letter-spacing: 3px;
  color: var(--text); text-decoration: none; transition: color .2s;
}
.nav-drawer .nav-links a:hover,
.nav-drawer .nav-links a.active { color: var(--brand); }
.nav-drawer .btn-nav {
  font-size: 15px; padding: 14px 42px;
  display: flex !important;
  border-color: var(--text);
  color: var(--text);
}

/* ══════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════ */
#home {
  position: relative; height: 100vh; height: 100svh;
  min-height: 580px; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide.prev   { opacity: 0; z-index: 0; }

.slide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: bgZoom 14s ease-in-out infinite alternate;
}
@keyframes bgZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,8,8,.85) 0%, rgba(10,8,8,.32) 50%, rgba(10,8,8,.78) 100%);
}

.slide-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px 20px;
  padding-top: calc(var(--nav-h) + 40px);
}

.hero-slide .hero-tag    { opacity: 0; transform: translateY(22px); transition: opacity .7s .12s, transform .7s .12s cubic-bezier(.22,1,.36,1); }
.hero-slide .hero-title  { opacity: 0; transform: translateY(22px); transition: opacity .7s .26s, transform .7s .26s cubic-bezier(.22,1,.36,1); }
.hero-slide .hero-sub    { opacity: 0; transform: translateY(22px); transition: opacity .7s .40s, transform .7s .40s cubic-bezier(.22,1,.36,1); }
.hero-slide .hero-buttons{ opacity: 0; transform: translateY(22px); transition: opacity .7s .54s, transform .7s .54s cubic-bezier(.22,1,.36,1); }

.hero-slide.active .hero-tag,
.hero-slide.active .hero-title,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); }

.hero-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: white; margin-bottom: 30px; }
.hero-title {
  font-family: 'TAN Nimbus', sans-serif;
  font-size: clamp(44px, 7.5vw, 95px);
  line-height: 1; letter-spacing: 2px; color: #fff;
}
.hero-title span { color: var(--brand); }
.hero-sub { font-size: clamp(14px, 2vw, 18px); font-style: italic; color: rgba(245,243,240,.7); margin-top: 16px; }
.hero-sub em { color: var(--brand2); font-style: normal; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

.hero-diamond {
  position: absolute; width: 420px; height: 420px;
  background: linear-gradient(135deg, rgba(232,51,109,.2), rgba(240,98,146,.08));
  border: 1px solid rgba(232,51,109,.28);
  transform: rotate(45deg); animation: diamondPulse 4s ease-in-out infinite; pointer-events: none;
}
@keyframes diamondPulse {
  0%, 100% { transform: rotate(45deg) scale(1);    opacity: .7; }
  50%       { transform: rotate(45deg) scale(1.05); opacity: 1; }
}

.hero-controls {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 16px;
}
.hero-dots { display: flex; gap: 7px; }
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; padding: 0;
  cursor: pointer; transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--brand); transform: scale(1.4); }

.hero-progress { width: 100px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.hero-progress-bar { height: 100%; background: var(--brand); border-radius: 2px; width: 0%; transition: width linear; }

.hero-nav { display: flex; gap: 7px; }
.hero-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .25s, transform .2s; backdrop-filter: blur(4px);
}
.hero-nav-btn svg { width: 15px; }
.hero-nav-btn:hover { background: var(--brand); border-color: var(--brand); transform: scale(1.1); }

.hero-counter {
  position: absolute; top: 86px; right: 36px; z-index: 10;
  font-family: 'TAN Nimbus', sans-serif;
  font-size: 13px; letter-spacing: 2px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 4px;
}
#heroCurrentNum { color: #fff; font-size: 26px; }

.scroll-dot {
  position: absolute; bottom: 32px; left: 32px; z-index: 10;
  color: rgba(255,255,255,.45);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.scroll-dot span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-dot svg { width: 16px; }

/* ══════════════════════════════════
   SHARED
══════════════════════════════════ */
section { padding: 100px 5%; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.section-title { font-family: 'TAN Nimbus', sans-serif; font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: 2px; margin-bottom: 20px; }
.section-body { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

.btn-primary {
  background: var(--brand); color: #fff; padding: 13px 30px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(232,51,109,.28);
}
.btn-primary:hover { background: #c9275a; transform: translateY(-2px); box-shadow: 0 12px 38px rgba(232,51,109,.45); }

.btn-ghost {
  background: transparent; color: #fff; padding: 13px 30px; border-radius: 50px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35); cursor: pointer; transition: border-color .25s;
}
.btn-ghost:hover { border-color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 11px 26px; border-radius: 50px;
  border: 1.5px solid var(--text); color: var(--text);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-outline:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .14s; }
.delay-2 { transition-delay: .28s; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: var(--bg2); content-visibility: auto; contain-intrinsic-size: 0 600px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform .6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 24px;
  background: linear-gradient(transparent, rgba(14,10,6,.85));
  font-size: 16px; font-weight: 700; line-height: 1.3; color: #FAF5EE;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services { background: radial-gradient(ellipse at top right, rgba(232,51,109,.06) 0%, transparent 55%), var(--bg); content-visibility: auto; contain-intrinsic-size: 0 700px; }
.services-header { text-align: center; margin-bottom: 10px; }
.services-intro { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; margin-top: -8px; }
.carousel-wrap { position: relative; }
.carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s, background var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(232,51,109,.1); border-color: rgba(232,51,109,.2); }
.service-card-icon { font-size: 30px; line-height: 1; }
.service-card-tag {
  display: inline-block; background: var(--bg3); color: var(--text-muted);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
  align-self: flex-start; transition: background var(--transition);
}
.service-card-tag.hot { background: rgba(232,51,109,.15); color: var(--brand); border-color: rgba(232,51,109,.3); }
.service-card-tag.top { background: rgba(232,51,109,.22); color: var(--brand); border-color: var(--brand); }
.service-card-tag.new { background: rgba(100,180,100,.15); color: #5cb85c; border-color: rgba(100,180,100,.35); }
.service-card-title { font-family: 'TAN Nimbus', sans-serif; font-size: 24px; letter-spacing: 1.5px; line-height: 1.1; }
.service-card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card-list li { font-size: 13px; color: var(--text-muted); line-height: 1.5; padding-left: 16px; position: relative; }
.service-card-list li::before { content: '—'; position: absolute; left: 0; color: var(--brand); font-size: 10px; top: 3px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.carousel-btn {
  width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%; color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.carousel-btn svg { width: 17px; height: 17px; }
.carousel-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: scale(1.08); }
.carousel-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }
.carousel-dots { display: flex; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.dot.active { background: var(--brand); transform: scale(1.35); }
.services-cta { text-align: center; margin-top: 44px; }

/* ══════════════════════════════════
   SHOWREEL
══════════════════════════════════ */
#showreel { background: var(--bg); padding: 100px 5%; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.showreel-header { text-align: center; margin-bottom: 10px; }
.showreel-intro { color: var(--text-muted); font-size: 16px; margin-top: -8px; margin-bottom: 48px; }
.showreel-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; height: 520px; }
.reel-col { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 14px; }

.reel-item { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; }
.reel-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.15); transition: background .35s; }
.reel-item:hover::after { background: rgba(0,0,0,0); }
.reel-video, .reel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.reel-item:hover .reel-video, .reel-item:hover .reel-img { transform: scale(1.04); }
.reel-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px 14px; background: linear-gradient(transparent, rgba(10,8,8,.82)); z-index: 2; transform: translateY(6px); transition: transform .35s; }
.reel-item:hover .reel-overlay { transform: translateY(0); }
.reel-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand2); margin-bottom: 3px; }
.reel-title { font-family: 'TAN Nimbus', sans-serif; font-size: 17px; letter-spacing: 1px; color: #fff; }
.reel-big .reel-title { font-size: 24px; }

.stats-row {
  display: flex; align-items: stretch; justify-content: center;
  margin-top: 60px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
}
.stat-item { flex: 1; padding: 30px 20px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; transition: background .25s; }
.stat-item:hover { background: rgba(232,51,109,.06); }
.stat-num { font-family: 'TAN Nimbus', sans-serif; font-size: 46px; letter-spacing: 2px; color: var(--text); line-height: 1; }
.stat-num em { color: var(--brand); font-style: normal; font-size: 34px; }
.stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: .5px; }
.stat-divider { width: 1px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
#reviews { background: var(--bg2); content-visibility: auto; contain-intrinsic-size: 0 600px; }
.reviews-header { text-align: center; margin-bottom: 56px; }
.testimonials-wrap { display: flex; flex-direction: column; gap: 0; position: relative; }
.testimonials-wrap::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--brand), transparent); transform: translateX(-50%); }
.testimonial { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; padding: 28px 0; }
.testimonial:nth-child(even) .t-card   { grid-column: 3; }
.testimonial:nth-child(even) .t-dot    { grid-column: 2; }
.testimonial:nth-child(even) .t-spacer { grid-column: 1; }

.t-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); transition: transform .3s, box-shadow .3s, background var(--transition); }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.t-card-img { width: 100%; height: 115px; object-fit: cover; object-position: top; filter: grayscale(30%) brightness(.85); }
.t-card-body { padding: 16px 18px; }
.t-profile { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); flex-shrink: 0; }
.t-name { font-weight: 700; font-size: 14px; }
.t-role { font-size: 11px; color: var(--text-muted); }
.t-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }
.t-rating { display: flex; align-items: center; gap: 7px; margin-top: 12px; }
.t-stars { color: var(--brand2); font-size: 13px; }
.t-score { font-size: 13px; font-weight: 700; }
.t-label { font-size: 11px; color: var(--text-muted); }
.t-dot { width: 14px; height: 14px; background: var(--brand); border-radius: 50%; border: 3px solid var(--bg2); justify-self: center; box-shadow: 0 0 10px rgba(232,51,109,.45); }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact { background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1400&q=80') center/cover no-repeat; background-attachment: fixed; position: relative; }
.contact-overlay { position: absolute; inset: 0; background: var(--contact-overlay); transition: background var(--transition); }
#contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.contact-title { font-family: 'TAN Nimbus', sans-serif; font-size: clamp(38px,5vw,56px); line-height: 1; margin-bottom: 18px; color: #fff; }
.contact-grid .section-body { color: rgba(245,243,240,.65); }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; color: rgba(245,243,240,.65); font-size: 14px; }
.contact-info-item svg { width: 17px; flex-shrink: 0; color: var(--brand); }
.contact-info-item a { color: inherit; text-decoration: none; }
.contact-info-item a:hover { color: var(--brand2); }

.form-group { margin-bottom: 18px; }
.form-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(245,243,240,.55); margin-bottom: 6px; display: block; }
.form-input { width: 100%; background: var(--input-bg); border: 1px solid var(--input-border); border-radius: 10px; padding: 11px 15px; color: #fff; font-family: inherit; font-size: 14px; outline: none; transition: border-color .25s, background .25s; }
.form-input:focus { border-color: var(--brand); background: rgba(232,51,109,.06); }
.form-input::placeholder { color: rgba(240,237,232,.28); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; background: var(--brand); color: #fff; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 6px; transition: background .25s, transform .2s; box-shadow: 0 8px 28px rgba(232,51,109,.28); }
.btn-submit:hover { background: #c9275a; transform: translateY(-1px); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--bg2); padding: 28px 5%; border-top: 1px solid var(--border); text-align: center; font-size: 13px; color: var(--text-muted); transition: background var(--transition); }
footer span { color: var(--brand); }

/* ══════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════ */
.float-badge { position: fixed; bottom: 28px; right: 28px; z-index: 998; width: 52px; height: 52px; background: var(--brand); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 28px rgba(232,51,109,.4); text-decoration: none; transition: transform .25s, box-shadow .25s, background .25s; }
.float-badge:hover { transform: scale(1.1); background: #25D366; box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.float-badge svg { width: 24px; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TODOS LOS DISPOSITIVOS
   LG 1024+  |  MD 768-1023  |  SM 480-767  |  XS <480
══════════════════════════════════════════════════════════════ */

/* LG DESKTOP 1024+ */
@media (min-width: 1024px) {
  .nav-hamburger               { display: none !important; }
  .nav-drawer, .nav-drawer.open { opacity: 0 !important; pointer-events: none !important; visibility: hidden !important; }
  .nav-links                   { display: flex; }
  .service-card                { display: flex !important; opacity: 1 !important; }
  .carousel-controls           { display: none; }
}

/* XL 1440+ */
@media (min-width: 1440px) {
  .container     { max-width: 1280px; }
  nav            { max-width: 1280px; }
  .showreel-grid { height: 580px; }
  .about-img-wrap img { height: 480px; }
}

/* MD TABLET 768-1023 */
@media (max-width: 1023px) and (min-width: 768px) {
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  .hero-title        { font-size: clamp(44px, 8vw, 74px); }
  .hero-counter      { top: 78px; right: 22px; }
  .hero-progress     { width: 80px; }
  .scroll-dot        { display: none; }
  .hero-diamond      { width: 280px; height: 280px; }
  section            { padding: 80px 5%; }
  .about-grid        { gap: 36px; }
  .about-img-wrap img{ height: 340px; }
  .carousel          { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .carousel-controls { display: flex; }
  .service-card      { padding: 24px 20px; }
  .showreel-grid     { grid-template-columns: 1fr; height: auto; }
  .reel-big          { height: 300px; }
  .reel-col          { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; height: 190px; }
  .stats-row         { flex-wrap: wrap; }
  .stat-divider      { display: none; }
  .stat-item         { min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .testimonials-wrap::before { display: none; }
  .testimonial       { grid-template-columns: 1fr; padding: 14px 0; }
  .testimonial:nth-child(even) .t-card { grid-column: 1; }
  .t-dot, .t-spacer  { display: none; }
  .contact-grid      { gap: 40px; }
}

/* SM MOBILE 480-767 */
@media (max-width: 767px) and (min-width: 480px) {
  nav            { top: 10px; height: 58px; padding: 0 18px; width: 94%; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .btn-nav { display: none !important; }
  .theme-toggle  { width: 32px; height: 32px; }
  .nav-logo      { height: 100px; max-width: 160px; }
  .hero-title    { font-size: clamp(40px, 11vw, 60px); }
  .hero-sub      { font-size: 14px; }
  .hero-buttons  { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-ghost { width: 210px; justify-content: center; }
  .hero-counter  { display: none; }
  .hero-controls { bottom: 38px; gap: 10px; }
  .hero-progress { width: 70px; }
  .scroll-dot    { display: none; }
  .hero-diamond  { width: 240px; height: 240px; }
  .slide-content { padding-top: 80px; }
  section        { padding: 60px 5%; }
  .about-grid    { grid-template-columns: 1fr; gap: 28px; }
  .about-img-wrap img { height: 260px; }
  .about-img-caption  { font-size: 13px; padding: 14px 16px; }
  .carousel      { grid-template-columns: 1fr; }
  .carousel-controls  { display: flex; }
  .service-card  { padding: 22px 18px; }
  .showreel-grid { grid-template-columns: 1fr; height: auto; gap: 10px; }
  .reel-big      { height: 240px; }
  .reel-col      { grid-template-columns: 1fr 1fr; grid-template-rows: none; height: 155px; gap: 10px; }
  .reel-col .reel-item:last-child { display: none; }
  .stats-row     { flex-wrap: wrap; }
  .stat-divider  { display: none; }
  .stat-item     { min-width: 50%; padding: 20px 12px; border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num      { font-size: 38px; }
  .testimonials-wrap::before { display: none; }
  .testimonial   { grid-template-columns: 1fr; padding: 10px 0; }
  .testimonial:nth-child(even) .t-card { grid-column: 1; }
  .t-dot, .t-spacer { display: none; }
  .contact-grid  { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  #contact       { background-attachment: scroll; }
  .float-badge   { bottom: 18px; right: 18px; width: 48px; height: 48px; }
}

/* XS MOBILE <480 */
@media (max-width: 479px) {
  nav            { top: 8px; height: 54px; padding: 0 14px; width: 96%; border-radius: 36px; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .btn-nav { display: none !important; }
  .theme-toggle  { width: 30px; height: 30px; }
  .nav-logo      { height: 100px; max-width: 150px; }
  #home          { min-height: 100svh; }
  .hero-title    { font-size: clamp(34px, 12vw, 48px); letter-spacing: 1px; }
  .hero-tag      { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 10px; }
  .hero-sub      { font-size: 13px; margin-top: 10px; }
  .hero-buttons  { flex-direction: column; align-items: center; gap: 9px; margin-top: 20px; }
  .btn-primary, .btn-ghost { width: 192px; justify-content: center; font-size: 13px; padding: 11px 18px; }
  .hero-counter  { display: none; }
  .hero-controls { bottom: 22px; gap: 8px; }
  .hero-progress { display: none; }
  .hero-nav-btn  { width: 32px; height: 32px; }
  .hero-nav-btn svg { width: 13px; }
  .scroll-dot    { display: none; }
  .hero-diamond  { width: 180px; height: 180px; }
  .slide-content { padding: 16px; padding-top: 72px; }
  section        { padding: 50px 4%; }
  .section-title { font-size: clamp(26px, 9vw, 38px); letter-spacing: 1px; }
  .section-body  { font-size: 14px; }
  .section-label { font-size: 9px; }
  .about-grid    { grid-template-columns: 1fr; gap: 22px; }
  .about-img-wrap img { height: 220px; }
  .about-img-caption  { font-size: 12px; padding: 12px 14px; }
  .btn-outline   { font-size: 12px; padding: 9px 18px; }
  .services-intro{ font-size: 14px; }
  .carousel      { grid-template-columns: 1fr; }
  .carousel-controls { display: flex; }
  .service-card  { padding: 18px 14px; gap: 10px; }
  .service-card-icon  { font-size: 24px; }
  .service-card-title { font-size: 20px; }
  .service-card-list li { font-size: 12.5px; }
  .carousel-btn  { width: 38px; height: 38px; }
  .showreel-grid { grid-template-columns: 1fr; height: auto; gap: 10px; }
  .reel-big      { height: 210px; }
  .reel-col      { grid-template-columns: 1fr; grid-template-rows: none; height: auto; gap: 10px; }
  .reel-col .reel-item { height: 145px; display: block !important; }
  .reel-title    { font-size: 14px; }
  .reel-big .reel-title { font-size: 18px; }
  .stats-row     { flex-direction: column; }
  .stat-divider  { display: none; }
  .stat-item     { width: 100%; padding: 18px 14px; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stat-num      { font-size: 40px; }
  .testimonials-wrap::before { display: none; }
  .testimonial   { grid-template-columns: 1fr; padding: 8px 0; }
  .testimonial:nth-child(even) .t-card { grid-column: 1; }
  .t-dot, .t-spacer { display: none; }
  .t-card-img    { height: 88px; }
  .t-card-body   { padding: 12px 14px; }
  .t-text        { font-size: 12px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 26px; }
  .contact-title { font-size: clamp(30px, 10vw, 46px); }
  .form-row      { grid-template-columns: 1fr; }
  .form-input    { font-size: 13px; padding: 10px 13px; }
  #contact       { background-attachment: scroll; }
  .contact-info-item { font-size: 13px; }
  footer         { font-size: 12px; padding: 22px 4%; }
  .float-badge   { bottom: 14px; right: 14px; width: 46px; height: 46px; }
  .float-badge svg { width: 20px; }
}

/* LANDSCAPE MÓVIL */
@media (max-width: 767px) and (orientation: landscape) {
  #home          { min-height: 100svh; }
  .hero-title    { font-size: clamp(28px, 7vh, 50px); }
  .hero-buttons  { flex-direction: row; gap: 10px; }
  .btn-primary, .btn-ghost { width: auto; }
  .slide-content { padding-top: 64px; }
  .hero-controls { bottom: 14px; }
}

/* TOUCH: evitar hover "pegado" */
@media (hover: none) {
  .t-card:hover, .service-card:hover { transform: none; box-shadow: none; }
  .btn-primary:hover, .btn-submit:hover { transform: none; }
  .reel-item:hover .reel-video, .reel-item:hover .reel-img { transform: none; }
  .reel-item:hover .reel-overlay { transform: translateY(6px); }
}

/* SAFE AREA (iPhone notch / home bar) */
@supports (padding: env(safe-area-inset-bottom)) {
  nav { top: max(8px, env(safe-area-inset-top)); }
  .float-badge {
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 8px));
    right:  max(14px, env(safe-area-inset-right));
  }
}

/* ══════════════════════════════════
   PROYECTOS — Logos clickeables
══════════════════════════════════ */

.proyectos-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.proyecto-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.proyecto-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Círculo con fondo blanco */
.proyecto-btn-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(232,51,109,.2);
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s, transform .35s;
}
.proyecto-btn:hover .proyecto-btn-circle {
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(232,51,109,.12), 0 16px 48px rgba(232,51,109,.22);
  transform: scale(1.07);
}

/* Logo en blanco y negro por defecto, color en hover */
.proyecto-btn-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.85);
  transition: filter .4s ease;
}
.proyecto-btn:hover .proyecto-btn-logo {
  filter: grayscale(0%) contrast(1);
}

.proyecto-btn-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.proyecto-btn-name {
  font-family: 'TAN Nimbus', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text);
  transition: color .3s;
}
.proyecto-btn:hover .proyecto-btn-name { color: var(--brand); }

.proyecto-btn-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Quitar la flecha — ya no aplica */
.proyecto-btn-arrow { display: none; }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */

.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 100%;
  max-width: 860px;
  position: relative;
  overflow: hidden;
  transform: translateY(32px) scale(.97);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Scrollbar inside modal */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

/* Barra superior: close button */
.modal-topbar {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg2);
}

.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); font-size: 20px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background .25s, color .25s, transform .2s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(90deg); }

/* Modal header: logo + info */
.modal-header {
  display: flex;
  gap: 24px;
  padding: 20px 28px 24px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}

.modal-logo-wrap {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  display: grid; place-items: center;
  padding: 10px; overflow: hidden;
}
.modal-logo-wrap img {
  width: 100%; height: 100%; object-fit: contain;
}

.modal-meta {
  flex: 1;
  min-width: 0;
}
.modal-tag {
  display: block;
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 6px;
}
.modal-title {
  font-family: 'TAN Nimbus', sans-serif;
  font-size: 40px; letter-spacing: 2px;
  line-height: 1; margin-bottom: 12px;
}
.modal-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 16px;
  max-width: 560px;
}
.modal-services {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}

/* Instagram button */
.modal-ig-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: opacity .25s, transform .2s;
  box-shadow: 0 6px 22px rgba(220,39,67,.35);
}
.modal-ig-btn svg { width: 16px; flex-shrink: 0; }
.modal-ig-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ── MODAL MEDIA ── */
.modal-media-carousel {
  position: relative;
  background: #000;
  flex-shrink: 0;
  overflow: hidden;
}

.modal-media-track-wrap {
  overflow: hidden;
  width: 100%;
}

.modal-media-track {
  display: flex;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

/* ── DESKTOP: 3 slides visibles a la vez ── */
.modal-media-item {
  position: relative;
  flex: 0 0 33.333%;
  width: 33.333%;
  height: 380px;
  overflow: hidden;
  background: #111;
}

.modal-media-item img,
.modal-media-item video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Video vertical: contener sin recortar */
.modal-media-item video {
  object-fit: contain;
  background: #000;
}

/* Flechas — ocultas en desktop (3 items visibles) */
.modal-carousel-btn { display: none; }

/* Dots — ocultos en desktop */
.modal-carousel-dots { display: none; }

/* Contador — oculto en desktop */
.modal-carousel-counter { display: none; }

/* Botón de sonido — siempre visible sobre el video */
.media-sound-btn {
  position: absolute; bottom: 12px; right: 12px; z-index: 6;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background .25s, transform .2s;
}
.media-sound-btn:hover { background: var(--brand); transform: scale(1.1); }
.media-sound-btn svg { width: 14px; pointer-events: none; }

/* En desktop el track no se mueve */
.modal-media-track-wrap { cursor: default; overflow: hidden; }
.modal-media-track-wrap.dragging { cursor: grabbing; }

/* Desktop: forzar los 3 visibles, sin translate */
@media (min-width: 768px) {
  .modal-media-track {
    transform: none !important;
    transition: none !important;
  }
  .modal-media-item {
    flex: 0 0 33.333%;
    width: 33.333%;
  }
}

/* ── MÓVIL <768: carrusel 1 a la vez ── */
@media (max-width: 767px) {
  .modal-media-item {
    flex: 0 0 100%;
    width: 100%;
    height: 360px;
  }
  .modal-carousel-btn {
    display: grid;
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.2);
    color: #fff; cursor: pointer; place-items: center;
    backdrop-filter: blur(6px);
    transition: background .25s;
  }
  .modal-carousel-btn:hover { background: var(--brand); }
  .modal-carousel-btn svg { width: 15px; }
  .modal-carousel-btn.prev { left: 10px; }
  .modal-carousel-btn.next { right: 10px; }
  .modal-carousel-dots {
    display: flex; gap: 6px;
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    z-index: 5;
  }
  .modal-carousel-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.4); border: none; padding: 0; cursor: pointer;
    transition: background .25s, transform .25s;
  }
  .modal-carousel-dot.active { background: var(--brand); transform: scale(1.35); }
  .modal-carousel-counter {
    display: block;
    position: absolute; top: 10px; right: 12px; z-index: 5;
    font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
    padding: 3px 9px; border-radius: 20px;
  }
  .modal-media-track-wrap { cursor: grab; }
}

@media (max-width: 479px) {
  .modal-media-item { height: 300px; }
}

/* Botón de sonido */
.media-sound-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background .25s, transform .2s;
}
.media-sound-btn:hover { background: var(--brand); transform: scale(1.1); }
.media-sound-btn svg { width: 14px; }

/* ── RESPONSIVE MODAL ── */

/* TABLET 768-1023 */
@media (min-width: 768px) and (max-width: 1023px) {
  .proyecto-btn-circle { width: 115px; height: 115px; }
  .modal-media-grid {
    grid-template-columns: 1fr 1fr 1fr;
    height: 300px;
  }
}

/* MOBILE <768 — sheet desde abajo */
@media (max-width: 767px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    border-radius: 24px 24px 0 0;
    max-height: 95vh;
    height: 95vh;
    transform: translateY(100%);
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }

  .modal-header {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px 20px;
  }
  .modal-logo-wrap {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: #ffffff;
  }
  .modal-title { font-size: 28px; }
  .modal-desc { font-size: 13px; }
}

/* XS <480 */
@media (max-width: 479px) {
  .proyectos-logos { gap: 32px; }
  .proyecto-btn-circle { width: 100px; height: 100px; padding: 14px; }
  .proyecto-btn-name { font-size: 17px; }
  .modal-close { width: 32px; height: 32px; font-size: 16px; }
}

/* ── Code & Capital — círculo navy ── */
.proyecto-btn-circle--dark {
  background: #131b2e;
  border-color: rgba(199,160,75,.25);
}
.proyecto-btn:hover .proyecto-btn-circle--dark {
  border-color: #c7a04b;
  box-shadow: 0 0 0 6px rgba(199,160,75,.12), 0 16px 48px rgba(199,160,75,.22);
}

.modal-logo-wrap--dark {
  background: #131b2e;
  border-color: rgba(199,160,75,.25);
}

/* Fila de botones del modal (IG + web) */
.modal-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Botón sitio web */
.modal-web-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  background: #131b2e;
  color: #c7a04b;
  border: 1px solid rgba(199,160,75,.4);
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 22px rgba(19,27,46,.35);
}
.modal-web-btn svg { width: 16px; flex-shrink: 0; }
.modal-web-btn:hover {
  background: #c7a04b;
  color: #131b2e;
  border-color: #c7a04b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,160,75,.4);
}

@media (max-width: 479px) {
  .modal-action-row { gap: 8px; }
  .modal-web-btn, .modal-ig-btn { font-size: 12px; padding: 9px 16px; }
}