/* ═══════════════════════════════════════════
   MJRR LAW — styles.css
   Manuel J. Rivera Rodríguez, Esq.
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500&family=Bebas+Neue&display=swap');

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-dim2:   rgba(201,168,76,0.08);
  --black:       #080808;
  --dark:        #0E0E0E;
  --mid:         #141414;
  --surface:     #1C1C1C;
  --white:       #F4EFE6;
  --muted:       rgba(244,239,230,0.55);
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .18s, height .18s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor.grow { width: 18px; height: 18px; }
.cursor-ring.grow { width: 56px; height: 56px; border-color: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200; padding: 22px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.pinned {
  padding: 14px 60px;
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(18px);
  border-color: var(--gold-dim);
}
.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px; letter-spacing: 5px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  cursor: none; text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .25s; cursor: none; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 24px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none; cursor: none;
  position: relative; overflow: hidden; transition: color .3s;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease); z-index: 0;
}
.nav-cta:hover { color: var(--black); }
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 40px; height: 40px; gap: 5px;
  background: none; border: none; cursor: pointer; z-index: 210;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--gold);
  transition: transform .4s var(--ease), opacity .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(8,8,8,.97); backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; width: 100%; }
.mobile-menu ul li { border-bottom: 1px solid rgba(201,168,76,.07); }
.mobile-menu ul a {
  display: block; padding: 18px 48px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 48px); font-weight: 400;
  color: rgba(244,239,230,.8); text-decoration: none;
  opacity: 0; transform: translateY(24px);
  transition: transform .5s var(--ease), opacity .5s var(--ease), color .25s;
}
.mobile-menu.open ul li:nth-child(1) a { transition-delay: .05s; }
.mobile-menu.open ul li:nth-child(2) a { transition-delay: .10s; }
.mobile-menu.open ul li:nth-child(3) a { transition-delay: .15s; }
.mobile-menu.open ul li:nth-child(4) a { transition-delay: .20s; }
.mobile-menu.open ul li:nth-child(5) a { transition-delay: .25s; }
.mobile-menu.open ul li:nth-child(6) a { transition-delay: .30s; }
.mobile-menu.open ul a { opacity: 1; transform: translateY(0); }
.mobile-menu ul a:hover { color: var(--gold); }
.mobile-menu-bottom {
  margin-top: 40px; text-align: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s .38s var(--ease), transform .5s .38s var(--ease);
}
.mobile-menu.open .mobile-menu-bottom { opacity: 1; transform: translateY(0); }
.mobile-menu-bottom a {
  display: block; font-size: 14px; color: var(--muted);
  text-decoration: none; margin-bottom: 6px;
}

/* ── SCROLL REVEALS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal        { transform: translateY(36px); }
.reveal-left   { transform: translateX(-36px); }
.reveal-right  { transform: translateX(36px); }
.reveal.on, .reveal-left.on, .reveal-right.on {
  opacity: 1; transform: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; cursor: none;
  position: relative; overflow: hidden; transition: color .3s; font-family: 'Outfit', sans-serif;
  font-weight: 500;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ''; position: absolute; inset: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease); z-index: 0;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover::before { transform: scaleX(1); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { color: var(--black); }
.btn-outline:hover::before { transform: scaleX(1); }
.btn-ghost {
  color: var(--muted); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; cursor: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform .25s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

/* ── SECTION COMMON ── */
.section-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 400; line-height: 1.1;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 500px;
}

/* ── 01 HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-grid-lines::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.18) 40%, rgba(201,168,76,.18) 60%, transparent 100%);
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{opacity:.4} 50%{opacity:1} }

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 64px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  opacity: 0; animation: up .8s .2s var(--ease) forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px); font-weight: 400; line-height: 1.05;
  opacity: 0; animation: up .8s .4s var(--ease) forwards;
}
.hero-name em { display: block; font-style: italic; color: var(--gold); }
.hero-name strong { display: block; font-weight: 700; }
.hero-firm {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: 8px; color: var(--gold);
  margin: 10px 0 28px;
  opacity: 0; animation: up .8s .6s var(--ease) forwards;
}
.hero-tagline {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 400px; margin-bottom: 44px;
  opacity: 0; animation: up .8s .75s var(--ease) forwards;
}
.hero-tagline strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: up .8s .9s var(--ease) forwards;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--gold-dim);
  opacity: 0; animation: up .8s 1.05s var(--ease) forwards;
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 400; color: var(--gold); line-height: 1;
}
.stat-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Hero photo */
.hero-photo {
  position: relative; overflow: hidden;
  opacity: 0; animation: fadeIn 1.2s .3s var(--ease) forwards;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 18%, transparent 75%, var(--black) 100%),
              linear-gradient(to right, transparent 0%, transparent 85%, var(--black) 100%);
}
.hero-photo img {
  width: 100%; height: 100%; min-height: 100vh;
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-photo-bar {
  position: absolute; left: 0; top: 15%; bottom: 15%; width: 3px; z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
/* Mobile hero photo */
.hero-photo-mobile {
  display: none; width: 100%; position: relative; overflow: hidden;
  background: var(--mid); min-height: 60vw;
}
.hero-photo-mobile::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 70%, var(--black) 100%);
}
.hero-photo-mobile img {
  width: 100%; min-height: 60vw; object-fit: cover; object-position: top center; display: block;
}

@keyframes up { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
  padding: 14px 0; background: var(--mid);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', cursive; font-size: 13px; letter-spacing: 4px;
  color: rgba(201,168,76,.45); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
}
.dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: .5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── 02 BIOGRAFÍA ── */
.bio-section { padding: 120px 0; background: var(--mid); }
.bio-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.bio-left { position: sticky; top: 120px; }
.bio-right {}
.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.15;
  margin-bottom: 8px;
}
.bio-name em { font-style: italic; color: var(--gold); }
.bio-title {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.bio-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 32px; opacity: .5; }
.bio-para {
  font-size: 15px; color: var(--muted); line-height: 1.85;
  margin-bottom: 20px;
}
.bio-para strong { color: var(--white); font-weight: 500; }
.bio-clients-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin: 32px 0 16px;
}
.bio-clients {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.bio-client {
  padding: 5px 14px; border: 1px solid var(--gold-dim);
  font-size: 12px; color: rgba(244,239,230,.7); letter-spacing: .5px;
  transition: border-color .25s, color .25s;
}
.bio-client:hover { border-color: var(--gold); color: var(--gold); }
.bio-quote-block {
  margin-top: 40px; padding: 28px 32px;
  border-left: 2px solid var(--gold); background: var(--gold-dim2);
}
.bio-quote {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.6;
}

/* ── 03 TRUST BAR ── */
.trust-bar {
  background: var(--black); padding: 28px 0;
  border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
}
.trust-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.trust-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50; flex-shrink: 0;
}

/* ── 04 SERVICIOS ── */
.services-section { padding: 120px 0; background: var(--black); }
.services-inner { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
.services-header { margin-bottom: 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-dim); gap: 0;
}
.service-card {
  padding: 52px 40px; position: relative; overflow: hidden;
  border-right: 1px solid var(--gold-dim);
  transition: background .4s; cursor: none;
  display: flex; flex-direction: column;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { background: var(--mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Bebas Neue', cursive; font-size: 52px;
  color: var(--gold-dim); line-height: 1; margin-bottom: 24px;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(201,168,76,.35); }
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 14px; line-height: 1.2;
}
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.75; flex: 1; }
.service-list {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  font-size: 12px; color: var(--muted); padding-left: 16px; position: relative;
}
.service-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px;
}
.service-link {
  margin-top: 32px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
  opacity: 0; transition: opacity .3s; cursor: none; text-decoration: none;
}
.service-card:hover .service-link { opacity: 1; }

/* ── 05 CTA MID ── */
.cta-mid {
  padding: 100px 60px; text-align: center;
  background: var(--mid);
  border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
  position: relative; overflow: hidden;
}
.cta-mid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
}
.cta-mid-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 400;
  max-width: 720px; margin: 0 auto 12px; line-height: 1.2; position: relative;
}
.cta-mid-text em { font-style: italic; color: var(--gold); }
.cta-mid-sub {
  font-size: 14px; color: var(--muted); margin-bottom: 40px; position: relative;
}
.cta-mid-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-wa {
  padding: 15px 32px; background: #25D366; color: #fff;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: none; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .25s; font-family: 'Outfit', sans-serif; font-weight: 500;
}
.btn-wa:hover { opacity: .88; }
.btn-ig {
  padding: 15px 32px; background: transparent; border: 1px solid rgba(244,239,230,.2);
  color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .25s, color .25s; font-family: 'Outfit', sans-serif;
}
.btn-ig:hover { border-color: var(--gold); color: var(--gold); }

/* ── 06 PROCESO ── */
.process-section { padding: 120px 0; background: var(--black); }
.process-inner { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gold-dim); border: 1px solid var(--gold-dim);
  margin-top: 64px;
}
.process-step {
  background: var(--dark); padding: 52px 40px;
  position: relative; overflow: hidden; cursor: none;
  transition: background .3s;
}
.process-step:hover { background: var(--mid); }
.step-n {
  font-family: 'Bebas Neue', cursive; font-size: 80px;
  color: var(--gold-dim); line-height: .9; margin-bottom: 24px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 12px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── 07 SOBRE ── */
.sobre-section {
  padding: 80px 0;
  background: var(--mid);
  border-top: 1px solid var(--gold-dim);
}
.sobre-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; gap: 80px;
}
.sobre-quote-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 32px); font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.4; flex: 1;
}
.sobre-quote-big em { color: var(--gold); }
.sobre-meta { flex-shrink: 0; text-align: right; }
.sobre-meta-name {
  font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px;
}
.sobre-meta-role {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}

/* ── 08 CONTACTO ── */
.contact-section { padding: 120px 0; background: var(--black); }
.contact-inner { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
.contact-header { text-align: center; margin-bottom: 72px; }
.contact-header .section-label { justify-content: center; }
.contact-header .section-label::before { display: none; }
.contact-header .section-label::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--gold-dim); border: 1px solid var(--gold-dim);
}
.contact-card {
  background: var(--dark); padding: 52px 48px;
  transition: background .3s; cursor: none;
}
.contact-card:hover { background: var(--mid); }
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; margin-bottom: 32px;
}
.contact-rows { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-ico {
  width: 38px; height: 38px; background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-data { font-size: 14px; color: var(--muted); }
.contact-data a { color: inherit; text-decoration: none; transition: color .25s; cursor: none; }
.contact-data a:hover { color: var(--gold); }
.contact-data strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; font-weight: 400; }
.contact-cta-block { margin-top: 56px; text-align: center; }
.free-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold-dim); padding: 6px 18px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.free-pill::before { content: '★'; font-size: 9px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gold-dim); padding: 36px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--dark);
}
.footer-logo {
  font-family: 'Bebas Neue', cursive; font-size: 20px; letter-spacing: 5px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-copy { font-size: 11px; color: rgba(244,239,230,.25); letter-spacing: .5px; }
.footer-ig {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244,239,230,.35); text-decoration: none; transition: color .25s; cursor: none;
}
.footer-ig:hover { color: var(--gold); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark, #8B6914); }

/* ═════════════════════════════
   RESPONSIVE
═════════════════════════════ */
@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 18px 24px; }
  nav.pinned { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 24px 48px; }
  .hero-photo { display: none; }
  .hero-photo-mobile { display: block; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .bio-section { padding: 80px 0; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .bio-left { position: static; }

  .trust-inner { padding: 0 24px; gap: 16px; }
  .trust-item { font-size: 10px; }

  .services-section { padding: 80px 0; }
  .services-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--gold-dim); }
  .service-card:last-child { border-bottom: none; }

  .cta-mid { padding: 72px 24px; }

  .process-section { padding: 80px 0; }
  .process-inner { padding: 0 24px; }
  .process-steps { grid-template-columns: 1fr; }

  .sobre-inner { flex-direction: column; gap: 32px; padding: 0 24px; align-items: flex-start; }
  .sobre-meta { text-align: left; }

  .contact-section { padding: 80px 0; }
  .contact-inner { padding: 0 24px; }
  .contact-grid { grid-template-columns: 1fr; }

  footer { padding: 28px 24px; flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 16px; }
  .stat-n { font-size: 28px; }
  .hero-photo-mobile { min-height: 75vw; }
  .hero-photo-mobile img { min-height: 75vw; }
  .bio-clients { gap: 6px; }
  .cta-mid-actions { flex-direction: column; align-items: center; }
  .contact-card { padding: 36px 24px; }
  .services-header .section-sub { max-width: 100%; }
}
