/* ============================================================
   RAMIK STUDIO — css/style.css
   ============================================================ */

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

:root {
  --white:      #FAFCFF;
  --offwhite:   #F2F7FC;
  --light:      #E4EEF8;
  --blue:       #0A2B5C;
  --blue2:      #1446A0;
  --teal:       #0E7FA0;
  --teal2:      #12A8C9;
  --teal-light: #E4F5FA;
  --muted:      #5A7494;
  --muted2:     #8AA5BE;
  --dark:       #060F1E;
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Instrument Sans', sans-serif;
  --radius: 14px;
  --trans: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(14,127,160,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,127,160,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── CURSOR ── */
#cur {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}
#cur-r {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(14,127,160,.35);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .12s, top .12s, width .3s, height .3s;
}

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rv.on { 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}

/* ── DEVTOOLS BLOCKER ── */
#devtools-block {
  display: none;
  position: fixed; inset: 0;
  background: var(--blue);
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#devtools-block.show { display: flex; }
#devtools-block img  { height: 60px; width: auto; filter: brightness(10); }
#devtools-block .db-brand { font-family: var(--fd); font-size: 22px; color: white; letter-spacing: 1px; }
#devtools-block .db-brand span { color: var(--teal2); }
#devtools-block p   { font-family: var(--fb); font-size: 15px; color: rgba(255,255,255,.45); text-align: center; max-width: 380px; line-height: 1.7; }
#devtools-block small { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; width: 100%;
  padding: 16px 64px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 500;
  transition: all .4s;
}
nav.sc {
  background: rgba(250,252,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light);
  box-shadow: 0 4px 30px rgba(10,43,92,.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-logo-txt { font-family: var(--fd); font-size: 17px; letter-spacing: .5px; color: var(--blue); }
.nav-logo-txt span { color: var(--teal); }
nav ul { list-style: none; display: flex; gap: 34px; align-items: center; }
nav ul a { font-size: 13px; letter-spacing: .3px; color: var(--muted); text-decoration: none; transition: color .3s; }
nav ul a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: white !important;
  padding: 10px 22px; border-radius: 6px;
  font-size: 13px !important; font-weight: 500;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
  display: inline-block;
}
.nav-cta:hover { background: var(--blue2) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(10,43,92,.25) !important; }

/* ============================================================
   HERO — video background
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 64px 80px;
  position: relative; overflow: hidden;
}
#hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
#hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,.9) 0%, rgba(10,43,92,.78) 55%, rgba(10,48,96,.7) 100%);
  z-index: 1; pointer-events: none;
}
.hero-cross {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 2;
}
.hero-left { position: relative; z-index: 3; max-width: 700px; }

.htag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal2);
  background: rgba(14,127,160,.15);
  border: 1px solid rgba(18,168,201,.25);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.htag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal2); border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: .97; letter-spacing: -2px;
  color: white; margin-bottom: 26px; font-weight: 800;
}
h1 em { font-style: normal; color: var(--teal2); }

.hsub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 480px; line-height: 1.75; margin-bottom: 40px; }

.hbtns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.bp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: white;
  padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.bp:hover { background: var(--teal2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(14,127,160,.5); }
.bg {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 15px; text-decoration: none;
  transition: color .3s, gap .3s;
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 24px; border-radius: 6px;
}
.bg:hover { color: white; gap: 14px; border-color: rgba(255,255,255,.3); }

.htrust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.htrust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .3px; }
.htrust-item::before { content: '✓'; color: var(--teal2); font-weight: 700; font-size: 13px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.mstrip {
  border-top: 1px solid var(--light); border-bottom: 1px solid var(--light);
  padding: 14px 0; overflow: hidden; background: white;
  position: relative; z-index: 1;
}
.mtrack { display: flex; width: max-content; animation: mq 28s linear infinite; }
.mitem {
  font-family: var(--fd); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); padding: 0 32px;
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
}
.mdot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex-shrink: 0; opacity: .5; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   SECCIONES BASE
   ============================================================ */
section { padding: 110px 64px; position: relative; z-index: 1; }

.slabel {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.slabel::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; }

h2 {
  font-family: var(--fd);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02; letter-spacing: -1.5px;
  margin-bottom: 16px; font-weight: 800;
}
.ssub { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 500px; }

/* ============================================================
   PARA QUIÉN
   ============================================================ */
#paraQuien { background: var(--blue); overflow: hidden; position: relative; }
#paraQuien::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,127,160,.18), transparent 70%);
  pointer-events: none;
}
#paraQuien .slabel { color: var(--teal2); }
#paraQuien .slabel::before { background: var(--teal2); }
#paraQuien h2 { color: white; }

.pq-intro { position: relative; z-index: 2; margin-bottom: 64px; }
.pq-intro p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.8; max-width: 640px; margin-top: 16px; }

.pq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; z-index: 2; }
.pq-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 38px 32px;
  transition: background .4s, border-color .4s, transform .4s;
}
.pq-card:hover { background: rgba(14,127,160,.14); border-color: rgba(18,168,201,.3); transform: translateY(-8px); }
.pq-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal2); background: rgba(14,127,160,.2);
  border: 1px solid rgba(18,168,201,.2);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.pq-card h3 { font-family: var(--fd); font-size: 20px; color: white; margin-bottom: 12px; line-height: 1.2; }
.pq-card p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ============================================================
   EQUIPO
   ============================================================ */
#diferencia { background: var(--offwhite); }

.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 48px; }

.tm {
  background: white; border: 1.5px solid var(--light);
  border-radius: var(--radius); padding: 32px 20px 28px;
  text-align: center; text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.tm::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.tm:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(10,43,92,.1); border-color: var(--teal); }
.tm:hover::after { transform: scaleX(1); }

.tm-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 28px; font-weight: 800; color: white;
  border: 3px solid var(--light);
  transition: border-color .3s, transform .3s;
  overflow: hidden;
}
.tm-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tm:hover .tm-avatar { border-color: var(--teal2); transform: scale(1.05); }

.tm-name { font-family: var(--fd); font-size: 17px; color: var(--blue); margin-bottom: 5px; }
.tm-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; font-weight: 600; line-height: 1.4; }
.tm-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.tm-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12px; color: var(--teal);
  font-weight: 600; letter-spacing: .5px; transition: gap .3s;
}
.tm:hover .tm-link { gap: 10px; }

/* ============================================================
   SISTEMA — 5 tarjetas
   ============================================================ */
#sistema { background: white; padding: 100px 64px 108px; }
.sis-head { margin-bottom: 56px; }
.sis-title {
  font-family: var(--fd); font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  color: var(--blue); line-height: 1.1; letter-spacing: -1.5px; margin: 0 0 16px;
}
.sis-title em { font-style: italic; color: var(--teal); }
.sis-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0; }

.sis-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.sis-card {
  background: white; border: 1.5px solid var(--light);
  border-radius: var(--radius); padding: 28px 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  opacity: 0; transform: translateY(32px);
}
.sis-card.sis-visible { animation: sisCardIn .55s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes sisCardIn { to { opacity: 1; transform: translateY(0); } }

.sis-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--teal2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
  border-radius: 0 0 var(--radius) var(--radius);
}
.sis-card::before {
  content: ''; position: absolute; top: -28px; right: -28px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal-light); opacity: 0; transform: scale(.5);
  transition: opacity var(--trans), transform var(--trans);
}
.sis-card:hover { transform: translateY(-7px); box-shadow: 0 14px 36px rgba(10,43,92,.10); border-color: var(--teal); }
.sis-card:hover::after  { transform: scaleX(1); }
.sis-card:hover::before { opacity: 1; transform: scale(1); }

.sis-num { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--teal2); letter-spacing: .08em; }
.sis-icon { color: var(--teal); transition: transform var(--trans); }
.sis-card:hover .sis-icon { transform: scale(1.12) rotate(-5deg); }
.sis-card h3 { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--blue); margin: 0; line-height: 1.4; }
.sis-card p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; flex: 1; }

/* ============================================================
   AUTOMATIZACIONES
   ============================================================ */
#auto { background: var(--blue); position: relative; overflow: hidden; }
#auto::before {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,127,160,.18), transparent 70%);
  pointer-events: none;
}
#auto .slabel { color: var(--teal2); }
#auto .slabel::before { background: var(--teal2); }
#auto h2 { color: white; }
#auto .ssub { color: rgba(255,255,255,.5); }
.auto-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.auto-head .ssub { max-width: 100%; }
.auto-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; position: relative; z-index: 2; }
.auto-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 32px 26px;
  transition: background .4s, border-color .4s, transform .4s;
  position: relative; overflow: hidden;
}
.auto-card:hover { background: rgba(14,127,160,.14); border-color: rgba(18,168,201,.25); transform: translateY(-6px); }
.auto-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.auto-card:hover::before { transform: scaleX(1); }
.auto-cat  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal2); margin-bottom: 14px; display: block; }
.auto-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.auto-card h3 { font-family: var(--fd); font-size: 17px; color: white; margin-bottom: 8px; }
.auto-card p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ============================================================
   RESULTADOS
   ============================================================ */
#resultados { background: var(--offwhite); }
.res-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.res-metrics { display: flex; flex-direction: column; gap: 20px; }
.res-metric {
  background: white; border: 1.5px solid var(--light);
  border-radius: 12px; padding: 32px 36px;
  display: flex; align-items: center; gap: 28px;
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.res-metric:hover { border-color: var(--teal); transform: translateX(8px); box-shadow: 0 12px 32px rgba(14,127,160,.1); }
.res-num { font-family: var(--fd); font-size: 48px; font-weight: 800; color: var(--teal); line-height: 1; min-width: 140px; }
.res-lbl  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.res-right { position: sticky; top: 110px; }
.res-quote { background: var(--blue); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
.res-quote::before {
  content: '"'; font-family: var(--fd); font-size: 160px;
  color: rgba(18,168,201,.1); position: absolute; top: -30px; left: 20px; line-height: 1;
}
.res-quote p { font-family: var(--fd); font-size: 22px; color: white; line-height: 1.5; position: relative; z-index: 1; margin-bottom: 28px; }
.res-quote .qa { font-size: 13px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 8px; }
.res-quote .qa::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.2); }

/* ============================================================
   STATS
   ============================================================ */
#stats { background: var(--teal); padding: 70px 64px; }
.stgrid { display: grid; grid-template-columns: repeat(4,1fr); }
.sti { padding: 36px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.sti:last-child { border-right: none; }
.stn2 { font-family: var(--fd); font-size: 62px; font-weight: 800; color: white; line-height: 1; display: block; }
.stsuf { font-family: var(--fd); font-size: 30px; color: rgba(255,255,255,.55); }
.stlbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta { background: var(--blue); text-align: center; position: relative; overflow: hidden; padding: 120px 64px; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,127,160,.2), transparent 70%);
}
#cta::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
#cta h2 { color: white; margin-bottom: 18px; }
#cta p  { color: rgba(255,255,255,.5); font-size: 18px; margin-bottom: 40px; line-height: 1.7; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,127,160,.2); border: 1px solid rgba(18,168,201,.25);
  color: var(--teal2); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 15px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.15); padding: 14px 24px; border-radius: 6px;
  transition: color .3s, border-color .3s;
}
.cta-btn-sec:hover { color: white; border-color: rgba(255,255,255,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #040D1A; border-top: 1px solid rgba(255,255,255,.05); padding: 60px 64px 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.f-logo img { height: 34px; width: auto; filter: brightness(10); }
.f-logo-txt { font-family: var(--fd); font-size: 17px; letter-spacing: .5px; color: white; }
.f-logo-txt span { color: var(--teal2); }
.f-desc { color: rgba(255,255,255,.35); font-size: 14px; line-height: 1.7; max-width: 220px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; transition: all .3s;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal2); transform: translateY(-3px); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--fd); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 14px; transition: color .3s; }
.footer-col a:hover { color: var(--teal2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.footer-bottom p { color: rgba(255,255,255,.2); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.2); text-decoration: none; font-size: 13px; transition: color .3s; }
.footer-legal a:hover { color: var(--teal2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px) {
  nav { padding: 14px 24px; }
  nav ul { display: none; }
  #hero { padding: 100px 24px 60px; text-align: center; }
  .hbtns { justify-content: center; }
  .htrust { justify-content: center; }
  section { padding: 72px 24px; }
  #sistema { padding: 64px 24px 72px; }
  #stats { padding: 50px 24px; }
  .pq-grid, .auto-grid, .team-grid { grid-template-columns: 1fr; }
  .sis-grid { grid-template-columns: repeat(2,1fr); }
  .auto-head, .res-inner { grid-template-columns: 1fr; gap: 32px; }
  .res-right { position: static; }
  .stgrid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  #cta { padding: 72px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .sis-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   MARIELLA MORI — pages/MariellaMori.html
   Estas clases solo aplican dentro de .mm-page
   ============================================================ */

.mm-page {
  --pink-50: #FFF0F5;
  --pink-100: #FFD6E7;
  --pink-200: #FFB3D1;
  --pink-300: #FF8AB8;
  --pink-400: #F76EA3;
  --pink-500: #E8508A;
  --lilac-50: #F5F0FF;
  --lilac-100: #E8D9FF;
  --lilac-200: #D4B8FF;
  --lilac-300: #BB94F7;
  --lilac-400: #9D70E8;
  --lilac-500: #7E4FD0;
  --rose-soft: #FDE8F0;
  --lavender-soft: #EDE8FF;
  --mm-cream: #FFF8FB;
  --text-dark: #2D1B2E;
  --text-mid: #6B4C6E;
  --text-light: #B08CB5;
  font-family: 'DM Sans', sans-serif;
  background: var(--mm-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── MM NAV ── */
.mm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255,248,251,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-100);
  transition: box-shadow 0.3s;
}
.mm-nav.scrolled { box-shadow: 0 2px 20px rgba(232,80,138,0.1); }
.mm-nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pink-500); text-decoration: none; letter-spacing: 0.02em; }
.mm-nav-links { display: flex; gap: 2.5rem; list-style: none; }
.mm-nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 400; color: var(--text-mid); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.mm-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--pink-400); transform: scaleX(0); transform-origin: right; transition: transform 0.3s; }
.mm-nav-links a:hover { color: var(--pink-500); }
.mm-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.mm-nav-cta { background: var(--pink-400); color: white !important; padding: 0.55rem 1.4rem; border-radius: 50px; transition: background 0.2s, transform 0.2s !important; }
.mm-nav-cta:hover { background: var(--pink-500) !important; transform: translateY(-1px); }
.mm-nav-cta::after { display: none !important; }
.mm-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mm-hamburger span { width: 24px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: all 0.3s; }

/* ── MM HERO ── */
.mm-hero { min-height: 100vh; display: flex; align-items: center; padding: 7rem 5% 4rem; position: relative; overflow: hidden; }
.mm-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.mm-blob1 { width: 500px; height: 500px; background: var(--pink-100); top: -100px; right: -100px; }
.mm-blob2 { width: 400px; height: 400px; background: var(--lilac-100); bottom: -80px; left: -80px; }
.mm-blob3 { width: 250px; height: 250px; background: var(--pink-200); top: 40%; left: 40%; }
.mm-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.mm-hero-text { animation: mmFadeUp 0.8s ease both; }
.mm-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--rose-soft); color: var(--pink-500); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; border: 1px solid var(--pink-200); }
.mm-badge .mm-dot { width: 6px; height: 6px; background: var(--pink-400); border-radius: 50%; animation: mmPulse 2s infinite; }
.mm-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.1; color: var(--text-dark); margin-bottom: 1.2rem; }
.mm-title em { color: var(--pink-500); font-style: italic; }
.mm-subtitle { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.mm-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.mm-btn-primary { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(232,80,138,0.25); }
.mm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,80,138,0.35); }
.mm-btn-outline { border: 1.5px solid var(--pink-300); color: var(--pink-500); padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.mm-btn-outline:hover { background: var(--rose-soft); }
.mm-socials { display: flex; gap: 1rem; margin-top: 2.5rem; }
.mm-social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--pink-200); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-mid); font-size: 0.85rem; transition: all 0.2s; background: white; }
.mm-social-icon:hover { background: var(--pink-400); color: white; border-color: var(--pink-400); transform: translateY(-2px); }
.mm-img-wrap { display: flex; justify-content: center; align-items: center; position: relative; animation: mmFadeUp 0.8s ease 0.2s both; }
.mm-img-frame { width: 380px; height: 460px; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; background: linear-gradient(135deg, var(--pink-100), var(--lilac-100)); position: relative; animation: mmMorph 10s ease-in-out infinite; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mm-img-inner { width: 340px; height: 420px; border-radius: inherit; overflow: hidden; }
.mm-img-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.mm-float-card { position: absolute; background: white; border-radius: 16px; padding: 0.8rem 1.2rem; box-shadow: 0 8px 30px rgba(232,80,138,0.15); border: 1px solid var(--pink-100); }
.mm-float-1 { bottom: 20px; left: -20px; animation: mmFloat 4s ease-in-out infinite; }
.mm-float-2 { top: 30px; right: -10px; animation: mmFloat 4s ease-in-out infinite 2s; }
.mm-card-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.mm-card-value { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }
.mm-card-value span { color: var(--pink-500); }

/* ── MM SECTIONS BASE ── */
.mm-section { padding: 7rem 5%; }
.mm-section-white { background: white; }
.mm-section-cream { background: var(--mm-cream); }
.mm-section-gradient { background: linear-gradient(160deg, var(--pink-50) 0%, var(--lavender-soft) 100%); }
.mm-section-counter { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; padding: 5rem 5%; }
.mm-inner { max-width: 1200px; margin: 0 auto; }
.mm-tag { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac-400); margin-bottom: 0.8rem; }
.mm-heading { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 1.5rem; }
.mm-heading em { color: var(--pink-500); font-style: italic; }
.mm-center { text-align: center; margin-bottom: 4rem; }

/* ── MM ABOUT ── */
.mm-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.mm-about-img { position: relative; }
.mm-about-bg { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--lilac-100), var(--pink-100)); border-radius: 24px; position: relative; overflow: hidden; }
.mm-about-bg img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: 24px; }
.mm-dots { position: absolute; top: -15px; right: -15px; width: 100px; height: 100px; background-image: radial-gradient(circle, var(--pink-300) 1.5px, transparent 1.5px); background-size: 12px 12px; opacity: 0.5; }
.mm-exp-badge { position: absolute; bottom: -20px; right: 20px; background: var(--pink-500); color: white; padding: 1rem 1.5rem; border-radius: 16px; text-align: center; box-shadow: 0 8px 24px rgba(232,80,138,0.3); }
.mm-exp-num { font-size: 2rem; font-weight: 600; display: block; line-height: 1; }
.mm-exp-label { font-size: 0.75rem; opacity: 0.9; }
.mm-about-text p { color: var(--text-mid); line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.2rem; }
.mm-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.mm-info-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.mm-info-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* ── MM SKILLS ── */
.mm-skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.mm-skill-card { background: white; border-radius: 20px; padding: 2rem; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; }
.mm-skill-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,80,138,0.12); }
.mm-skill-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.mm-skill-icon.pink { background: var(--rose-soft); }
.mm-skill-icon.lilac { background: var(--lavender-soft); }
.mm-skill-name { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.mm-skill-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.2rem; }
.mm-bar-wrap { background: var(--pink-50); border-radius: 50px; height: 6px; overflow: hidden; }
.mm-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--pink-400), var(--lilac-400)); }
.mm-pct { font-size: 0.78rem; color: var(--text-light); text-align: right; margin-top: 0.3rem; }

/* ── MM PORTFOLIO ── */
.mm-filter-tabs { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; flex-wrap: wrap; }
.mm-filter-btn { padding: 0.5rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--pink-200); background: white; color: var(--text-mid); font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.mm-filter-btn.active, .mm-filter-btn:hover { background: var(--pink-400); color: white; border-color: var(--pink-400); }
.mm-portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.8rem; }
.mm-project-card { border-radius: 20px; overflow: hidden; background: var(--mm-cream); border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; }
.mm-project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(232,80,138,0.14); }
.mm-thumb { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.mm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mm-thumb.g1 { background: linear-gradient(135deg, var(--pink-100), var(--lilac-200)); }
.mm-thumb.g2 { background: linear-gradient(135deg, var(--lilac-100), var(--pink-200)); }
.mm-thumb.g3 { background: linear-gradient(135deg, var(--pink-200), #FFD6E7); }
.mm-thumb.g4 { background: linear-gradient(135deg, var(--lilac-200), var(--pink-100)); }
.mm-thumb.g5 { background: linear-gradient(135deg, #FFB3D1, var(--lilac-100)); }
.mm-thumb.g6 { background: linear-gradient(135deg, var(--lilac-300), var(--pink-100)); }
.mm-overlay { position: absolute; inset: 0; background: rgba(232,80,138,0.85); display: flex; align-items: center; justify-content: center; gap: 1rem; opacity: 0; transition: opacity 0.3s; }
.mm-project-card:hover .mm-overlay { opacity: 1; }
.mm-overlay-btn { width: 44px; height: 44px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; color: var(--pink-500); text-decoration: none; font-size: 1.1rem; transition: transform 0.2s; }
.mm-overlay-btn:hover { transform: scale(1.1); }
.mm-project-info { padding: 1.5rem; }
.mm-project-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.mm-tag-pill { font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 50px; background: var(--rose-soft); color: var(--pink-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.mm-tag-pill.lilac { background: var(--lavender-soft); color: var(--lilac-500); }
.mm-project-title { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.mm-project-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── MM SERVICES ── */
.mm-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mm-service-card { background: white; border-radius: 24px; padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.mm-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--pink-400), var(--lilac-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.mm-service-card:hover::before { transform: scaleX(1); }
.mm-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(157,112,232,0.15); }
.mm-service-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.mm-service-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.8rem; }
.mm-service-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.mm-service-price { font-size: 1.4rem; font-weight: 600; color: var(--pink-500); }

/* ── MM COUNTER ── */
.mm-counters-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.mm-counter-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; display: block; line-height: 1; }
.mm-counter-label { font-size: 0.85rem; opacity: 0.85; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── MM TESTIMONIALS ── */
.mm-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.mm-testimonial { background: var(--mm-cream); border-radius: 20px; padding: 2rem; border: 1px solid var(--pink-100); position: relative; }
.mm-testimonial::before { content: '\201C'; position: absolute; top: 1.2rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; color: var(--pink-200); }
.mm-stars { color: var(--pink-400); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.mm-testimonial-text { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.mm-author { display: flex; align-items: center; gap: 0.8rem; }
.mm-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: linear-gradient(135deg, var(--pink-200), var(--lilac-200)); }
.mm-author-name { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); }
.mm-author-role { font-size: 0.8rem; color: var(--text-light); }

/* ── MM BLOG ── */
.mm-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; }
.mm-blog-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; color: inherit; }
.mm-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,80,138,0.12); }
.mm-blog-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.mm-blog-thumb.bt1 { background: linear-gradient(135deg, var(--pink-100), var(--lilac-100)); }
.mm-blog-thumb.bt2 { background: linear-gradient(135deg, var(--lilac-100), var(--pink-200)); }
.mm-blog-thumb.bt3 { background: linear-gradient(135deg, var(--pink-200), var(--lilac-200)); }
.mm-blog-body { padding: 1.5rem; }
.mm-blog-cat { font-size: 0.72rem; color: var(--lilac-400); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 0.6rem; }
.mm-blog-title { font-size: 1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.4; }
.mm-blog-meta { font-size: 0.8rem; color: var(--text-light); }

/* ── MM CONTACT ── */
.mm-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.mm-contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.mm-contact-info h2 em { color: var(--pink-500); font-style: italic; }
.mm-contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2.5rem; }
.mm-contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.mm-contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--mm-cream); border-radius: 14px; border: 1px solid var(--pink-100); }
.mm-contact-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--rose-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.mm-contact-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.mm-contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.mm-form { display: flex; flex-direction: column; gap: 1.2rem; }
.mm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.mm-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.mm-form-group label { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }
.mm-form-group input,
.mm-form-group textarea,
.mm-form-group select { padding: 0.85rem 1.1rem; border: 1.5px solid var(--pink-100); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: var(--mm-cream); outline: none; transition: border-color 0.2s; }
.mm-form-group input:focus,
.mm-form-group textarea:focus,
.mm-form-group select:focus { border-color: var(--pink-400); background: white; }
.mm-form-group textarea { resize: vertical; min-height: 130px; }
.mm-form-submit { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; border: none; padding: 1rem 2.5rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; align-self: flex-start; box-shadow: 0 4px 20px rgba(232,80,138,0.25); }
.mm-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,80,138,0.35); }

/* ── MM FOOTER ── */
.mm-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 5% 2rem; }
.mm-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.mm-footer-brand .mm-nav-logo { color: var(--pink-300); display: block; margin-bottom: 1rem; }
.mm-footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.mm-footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.mm-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.mm-footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.mm-footer-col a:hover { color: var(--pink-300); }
.mm-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.mm-footer-bottom a { color: var(--pink-300); text-decoration: none; }

/* ── MM BACK TO TOP ── */
#mm-back-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; border-radius: 50%; background: var(--pink-400); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 20px rgba(232,80,138,0.35); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; z-index: 999; }
#mm-back-top.show { opacity: 1; transform: translateY(0); }
#mm-back-top:hover { background: var(--pink-500); }

/* ── MM MOBILE NAV ── */
.mm-mobile-nav { position: fixed; inset: 0; z-index: 999; background: rgba(255,248,251,0.97); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.3s; }
.mm-mobile-nav.open { transform: translateX(0); }
.mm-mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.mm-mobile-nav a:hover { color: var(--pink-500); }
.mm-mobile-close { position: absolute; top: 1.5rem; right: 5%; font-size: 2rem; cursor: pointer; color: var(--text-mid); background: none; border: none; }

/* ── MM TYPING ── */
#mm-typing { border-right: 2px solid var(--pink-500); padding-right: 5px; white-space: nowrap; overflow: hidden; display: inline-block; animation: mmBlink 0.8s infinite; }

/* ── MM ANIMATIONS ── */
@keyframes mmFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mmFloat  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes mmMorph  { 0%,100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; } 67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; } }
@keyframes mmPulse  { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes mmBlink  { 0% { border-color: transparent; } 50% { border-color: var(--pink-500); } 100% { border-color: transparent; } }

/* ── MM RESPONSIVE ── *//* ============================================================
   RAMIK STUDIO — css/style.css
   ============================================================ */

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

:root {
  --white:      #FAFCFF;
  --offwhite:   #F2F7FC;
  --light:      #E4EEF8;
  --blue:       #0A2B5C;
  --blue2:      #1446A0;
  --teal:       #0E7FA0;
  --teal2:      #12A8C9;
  --teal-light: #E4F5FA;
  --muted:      #5A7494;
  --muted2:     #8AA5BE;
  --dark:       #060F1E;
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Instrument Sans', sans-serif;
  --radius: 14px;
  --trans: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(14,127,160,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,127,160,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── CURSOR ── */
#cur {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}
#cur-r {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(14,127,160,.35);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .12s, top .12s, width .3s, height .3s;
}

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rv.on { 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}

/* ── DEVTOOLS BLOCKER ── */
#devtools-block {
  display: none;
  position: fixed; inset: 0;
  background: var(--blue);
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#devtools-block.show { display: flex; }
#devtools-block img  { height: 60px; width: auto; filter: brightness(10); }
#devtools-block .db-brand { font-family: var(--fd); font-size: 22px; color: white; letter-spacing: 1px; }
#devtools-block .db-brand span { color: var(--teal2); }
#devtools-block p   { font-family: var(--fb); font-size: 15px; color: rgba(255,255,255,.45); text-align: center; max-width: 380px; line-height: 1.7; }
#devtools-block small { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; width: 100%;
  padding: 16px 64px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 500;
  transition: all .4s;
}
nav.sc {
  background: rgba(250,252,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light);
  box-shadow: 0 4px 30px rgba(10,43,92,.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-logo-txt { font-family: var(--fd); font-size: 17px; letter-spacing: .5px; color: var(--blue); }
.nav-logo-txt span { color: var(--teal); }
nav ul { list-style: none; display: flex; gap: 34px; align-items: center; }
nav ul a { font-size: 13px; letter-spacing: .3px; color: var(--muted); text-decoration: none; transition: color .3s; }
nav ul a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: white !important;
  padding: 10px 22px; border-radius: 6px;
  font-size: 13px !important; font-weight: 500;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
  display: inline-block;
}
.nav-cta:hover { background: var(--blue2) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(10,43,92,.25) !important; }

/* ============================================================
   HERO — video background
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 64px 80px;
  position: relative; overflow: hidden;
}
#hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
#hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,.9) 0%, rgba(10,43,92,.78) 55%, rgba(10,48,96,.7) 100%);
  z-index: 1; pointer-events: none;
}
.hero-cross {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 2;
}
.hero-left { position: relative; z-index: 3; max-width: 700px; }

.htag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal2);
  background: rgba(14,127,160,.15);
  border: 1px solid rgba(18,168,201,.25);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.htag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal2); border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: .97; letter-spacing: -2px;
  color: white; margin-bottom: 26px; font-weight: 800;
}
h1 em { font-style: normal; color: var(--teal2); }

.hsub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 480px; line-height: 1.75; margin-bottom: 40px; }

.hbtns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.bp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: white;
  padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.bp:hover { background: var(--teal2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(14,127,160,.5); }
.bg {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 15px; text-decoration: none;
  transition: color .3s, gap .3s;
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 24px; border-radius: 6px;
}
.bg:hover { color: white; gap: 14px; border-color: rgba(255,255,255,.3); }

.htrust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.htrust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .3px; }
.htrust-item::before { content: '✓'; color: var(--teal2); font-weight: 700; font-size: 13px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.mstrip {
  border-top: 1px solid var(--light); border-bottom: 1px solid var(--light);
  padding: 14px 0; overflow: hidden; background: white;
  position: relative; z-index: 1;
}
.mtrack { display: flex; width: max-content; animation: mq 28s linear infinite; }
.mitem {
  font-family: var(--fd); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); padding: 0 32px;
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
}
.mdot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex-shrink: 0; opacity: .5; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   SECCIONES BASE
   ============================================================ */
section { padding: 110px 64px; position: relative; z-index: 1; }

.slabel {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.slabel::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; }

h2 {
  font-family: var(--fd);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02; letter-spacing: -1.5px;
  margin-bottom: 16px; font-weight: 800;
}
.ssub { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 500px; }

/* ============================================================
   PARA QUIÉN
   ============================================================ */
#paraQuien { background: var(--blue); overflow: hidden; position: relative; }
#paraQuien::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,127,160,.18), transparent 70%);
  pointer-events: none;
}
#paraQuien .slabel { color: var(--teal2); }
#paraQuien .slabel::before { background: var(--teal2); }
#paraQuien h2 { color: white; }

.pq-intro { position: relative; z-index: 2; margin-bottom: 64px; }
.pq-intro p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.8; max-width: 640px; margin-top: 16px; }

.pq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; z-index: 2; }
.pq-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 38px 32px;
  transition: background .4s, border-color .4s, transform .4s;
}
.pq-card:hover { background: rgba(14,127,160,.14); border-color: rgba(18,168,201,.3); transform: translateY(-8px); }
.pq-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal2); background: rgba(14,127,160,.2);
  border: 1px solid rgba(18,168,201,.2);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.pq-card h3 { font-family: var(--fd); font-size: 20px; color: white; margin-bottom: 12px; line-height: 1.2; }
.pq-card p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ============================================================
   EQUIPO
   ============================================================ */
#diferencia { background: var(--offwhite); }

.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 48px; }

.tm {
  background: white; border: 1.5px solid var(--light);
  border-radius: var(--radius); padding: 32px 20px 28px;
  text-align: center; text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.tm::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.tm:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(10,43,92,.1); border-color: var(--teal); }
.tm:hover::after { transform: scaleX(1); }

.tm-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 28px; font-weight: 800; color: white;
  border: 3px solid var(--light);
  transition: border-color .3s, transform .3s;
  overflow: hidden;
}
.tm-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tm:hover .tm-avatar { border-color: var(--teal2); transform: scale(1.05); }

.tm-name { font-family: var(--fd); font-size: 17px; color: var(--blue); margin-bottom: 5px; }
.tm-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; font-weight: 600; line-height: 1.4; }
.tm-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.tm-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12px; color: var(--teal);
  font-weight: 600; letter-spacing: .5px; transition: gap .3s;
}
.tm:hover .tm-link { gap: 10px; }

/* ============================================================
   SISTEMA — 5 tarjetas
   ============================================================ */
#sistema { background: white; padding: 100px 64px 108px; }
.sis-head { margin-bottom: 56px; }
.sis-title {
  font-family: var(--fd); font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  color: var(--blue); line-height: 1.1; letter-spacing: -1.5px; margin: 0 0 16px;
}
.sis-title em { font-style: italic; color: var(--teal); }
.sis-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0; }

.sis-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.sis-card {
  background: white; border: 1.5px solid var(--light);
  border-radius: var(--radius); padding: 28px 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  opacity: 0; transform: translateY(32px);
}
.sis-card.sis-visible { animation: sisCardIn .55s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes sisCardIn { to { opacity: 1; transform: translateY(0); } }

.sis-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--teal2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
  border-radius: 0 0 var(--radius) var(--radius);
}
.sis-card::before {
  content: ''; position: absolute; top: -28px; right: -28px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal-light); opacity: 0; transform: scale(.5);
  transition: opacity var(--trans), transform var(--trans);
}
.sis-card:hover { transform: translateY(-7px); box-shadow: 0 14px 36px rgba(10,43,92,.10); border-color: var(--teal); }
.sis-card:hover::after  { transform: scaleX(1); }
.sis-card:hover::before { opacity: 1; transform: scale(1); }

.sis-num { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--teal2); letter-spacing: .08em; }
.sis-icon { color: var(--teal); transition: transform var(--trans); }
.sis-card:hover .sis-icon { transform: scale(1.12) rotate(-5deg); }
.sis-card h3 { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--blue); margin: 0; line-height: 1.4; }
.sis-card p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; flex: 1; }

/* ============================================================
   AUTOMATIZACIONES
   ============================================================ */
#auto { background: var(--blue); position: relative; overflow: hidden; }
#auto::before {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,127,160,.18), transparent 70%);
  pointer-events: none;
}
#auto .slabel { color: var(--teal2); }
#auto .slabel::before { background: var(--teal2); }
#auto h2 { color: white; }
#auto .ssub { color: rgba(255,255,255,.5); }
.auto-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.auto-head .ssub { max-width: 100%; }
.auto-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; position: relative; z-index: 2; }
.auto-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 32px 26px;
  transition: background .4s, border-color .4s, transform .4s;
  position: relative; overflow: hidden;
}
.auto-card:hover { background: rgba(14,127,160,.14); border-color: rgba(18,168,201,.25); transform: translateY(-6px); }
.auto-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.auto-card:hover::before { transform: scaleX(1); }
.auto-cat  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal2); margin-bottom: 14px; display: block; }
.auto-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.auto-card h3 { font-family: var(--fd); font-size: 17px; color: white; margin-bottom: 8px; }
.auto-card p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ============================================================
   RESULTADOS
   ============================================================ */
#resultados { background: var(--offwhite); }
.res-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.res-metrics { display: flex; flex-direction: column; gap: 20px; }
.res-metric {
  background: white; border: 1.5px solid var(--light);
  border-radius: 12px; padding: 32px 36px;
  display: flex; align-items: center; gap: 28px;
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.res-metric:hover { border-color: var(--teal); transform: translateX(8px); box-shadow: 0 12px 32px rgba(14,127,160,.1); }
.res-num { font-family: var(--fd); font-size: 48px; font-weight: 800; color: var(--teal); line-height: 1; min-width: 140px; }
.res-lbl  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.res-right { position: sticky; top: 110px; }
.res-quote { background: var(--blue); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
.res-quote::before {
  content: '"'; font-family: var(--fd); font-size: 160px;
  color: rgba(18,168,201,.1); position: absolute; top: -30px; left: 20px; line-height: 1;
}
.res-quote p { font-family: var(--fd); font-size: 22px; color: white; line-height: 1.5; position: relative; z-index: 1; margin-bottom: 28px; }
.res-quote .qa { font-size: 13px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 8px; }
.res-quote .qa::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.2); }

/* ============================================================
   STATS
   ============================================================ */
#stats { background: var(--teal); padding: 70px 64px; }
.stgrid { display: grid; grid-template-columns: repeat(4,1fr); }
.sti { padding: 36px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.sti:last-child { border-right: none; }
.stn2 { font-family: var(--fd); font-size: 62px; font-weight: 800; color: white; line-height: 1; display: block; }
.stsuf { font-family: var(--fd); font-size: 30px; color: rgba(255,255,255,.55); }
.stlbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta { background: var(--blue); text-align: center; position: relative; overflow: hidden; padding: 120px 64px; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,127,160,.2), transparent 70%);
}
#cta::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
#cta h2 { color: white; margin-bottom: 18px; }
#cta p  { color: rgba(255,255,255,.5); font-size: 18px; margin-bottom: 40px; line-height: 1.7; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,127,160,.2); border: 1px solid rgba(18,168,201,.25);
  color: var(--teal2); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 15px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.15); padding: 14px 24px; border-radius: 6px;
  transition: color .3s, border-color .3s;
}
.cta-btn-sec:hover { color: white; border-color: rgba(255,255,255,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #040D1A; border-top: 1px solid rgba(255,255,255,.05); padding: 60px 64px 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.f-logo img { height: 34px; width: auto; filter: brightness(10); }
.f-logo-txt { font-family: var(--fd); font-size: 17px; letter-spacing: .5px; color: white; }
.f-logo-txt span { color: var(--teal2); }
.f-desc { color: rgba(255,255,255,.35); font-size: 14px; line-height: 1.7; max-width: 220px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; transition: all .3s;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal2); transform: translateY(-3px); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--fd); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 14px; transition: color .3s; }
.footer-col a:hover { color: var(--teal2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.footer-bottom p { color: rgba(255,255,255,.2); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.2); text-decoration: none; font-size: 13px; transition: color .3s; }
.footer-legal a:hover { color: var(--teal2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px) {
  nav { padding: 14px 24px; }
  nav ul { display: none; }
  #hero { padding: 100px 24px 60px; text-align: center; }
  .hbtns { justify-content: center; }
  .htrust { justify-content: center; }
  section { padding: 72px 24px; }
  #sistema { padding: 64px 24px 72px; }
  #stats { padding: 50px 24px; }
  .pq-grid, .auto-grid, .team-grid { grid-template-columns: 1fr; }
  .sis-grid { grid-template-columns: repeat(2,1fr); }
  .auto-head, .res-inner { grid-template-columns: 1fr; gap: 32px; }
  .res-right { position: static; }
  .stgrid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  #cta { padding: 72px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .sis-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   MARIELLA MORI — pages/MariellaMori.html
   Estas clases solo aplican dentro de .mm-page
   ============================================================ */

.mm-page {
  --pink-50: #FFF0F5;
  --pink-100: #FFD6E7;
  --pink-200: #FFB3D1;
  --pink-300: #FF8AB8;
  --pink-400: #F76EA3;
  --pink-500: #E8508A;
  --lilac-50: #F5F0FF;
  --lilac-100: #E8D9FF;
  --lilac-200: #D4B8FF;
  --lilac-300: #BB94F7;
  --lilac-400: #9D70E8;
  --lilac-500: #7E4FD0;
  --rose-soft: #FDE8F0;
  --lavender-soft: #EDE8FF;
  --mm-cream: #FFF8FB;
  --text-dark: #2D1B2E;
  --text-mid: #6B4C6E;
  --text-light: #B08CB5;
  font-family: 'DM Sans', sans-serif;
  background: var(--mm-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── MM NAV ── */
.mm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255,248,251,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-100);
  transition: box-shadow 0.3s;
}
.mm-nav.scrolled { box-shadow: 0 2px 20px rgba(232,80,138,0.1); }
.mm-nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pink-500); text-decoration: none; letter-spacing: 0.02em; }
.mm-nav-links { display: flex; gap: 2.5rem; list-style: none; }
.mm-nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 400; color: var(--text-mid); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.mm-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--pink-400); transform: scaleX(0); transform-origin: right; transition: transform 0.3s; }
.mm-nav-links a:hover { color: var(--pink-500); }
.mm-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.mm-nav-cta { background: var(--pink-400); color: white !important; padding: 0.55rem 1.4rem; border-radius: 50px; transition: background 0.2s, transform 0.2s !important; }
.mm-nav-cta:hover { background: var(--pink-500) !important; transform: translateY(-1px); }
.mm-nav-cta::after { display: none !important; }
.mm-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mm-hamburger span { width: 24px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: all 0.3s; }

/* ── MM HERO ── */
.mm-hero { min-height: 100vh; display: flex; align-items: center; padding: 7rem 5% 4rem; position: relative; overflow: hidden; }
.mm-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.mm-blob1 { width: 500px; height: 500px; background: var(--pink-100); top: -100px; right: -100px; }
.mm-blob2 { width: 400px; height: 400px; background: var(--lilac-100); bottom: -80px; left: -80px; }
.mm-blob3 { width: 250px; height: 250px; background: var(--pink-200); top: 40%; left: 40%; }
.mm-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.mm-hero-text { animation: mmFadeUp 0.8s ease both; }
.mm-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--rose-soft); color: var(--pink-500); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; border: 1px solid var(--pink-200); }
.mm-badge .mm-dot { width: 6px; height: 6px; background: var(--pink-400); border-radius: 50%; animation: mmPulse 2s infinite; }
.mm-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.1; color: var(--text-dark); margin-bottom: 1.2rem; }
.mm-title em { color: var(--pink-500); font-style: italic; }
.mm-subtitle { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.mm-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.mm-btn-primary { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(232,80,138,0.25); }
.mm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,80,138,0.35); }
.mm-btn-outline { border: 1.5px solid var(--pink-300); color: var(--pink-500); padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.mm-btn-outline:hover { background: var(--rose-soft); }
.mm-socials { display: flex; gap: 1rem; margin-top: 2.5rem; }
.mm-social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--pink-200); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-mid); font-size: 0.85rem; transition: all 0.2s; background: white; }
.mm-social-icon:hover { background: var(--pink-400); color: white; border-color: var(--pink-400); transform: translateY(-2px); }
.mm-img-wrap { display: flex; justify-content: center; align-items: center; position: relative; animation: mmFadeUp 0.8s ease 0.2s both; }
.mm-img-frame { width: 380px; height: 460px; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; background: linear-gradient(135deg, var(--pink-100), var(--lilac-100)); position: relative; animation: mmMorph 10s ease-in-out infinite; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mm-img-inner { width: 340px; height: 420px; border-radius: inherit; overflow: hidden; }
.mm-img-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.mm-float-card { position: absolute; background: white; border-radius: 16px; padding: 0.8rem 1.2rem; box-shadow: 0 8px 30px rgba(232,80,138,0.15); border: 1px solid var(--pink-100); }
.mm-float-1 { bottom: 20px; left: -20px; animation: mmFloat 4s ease-in-out infinite; }
.mm-float-2 { top: 30px; right: -10px; animation: mmFloat 4s ease-in-out infinite 2s; }
.mm-card-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.mm-card-value { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }
.mm-card-value span { color: var(--pink-500); }

/* ── MM SECTIONS BASE ── */
.mm-section { padding: 7rem 5%; }
.mm-section-white { background: white; }
.mm-section-cream { background: var(--mm-cream); }
.mm-section-gradient { background: linear-gradient(160deg, var(--pink-50) 0%, var(--lavender-soft) 100%); }
.mm-section-counter { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; padding: 5rem 5%; }
.mm-inner { max-width: 1200px; margin: 0 auto; }
.mm-tag { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac-400); margin-bottom: 0.8rem; }
.mm-heading { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 1.5rem; }
.mm-heading em { color: var(--pink-500); font-style: italic; }
.mm-center { text-align: center; margin-bottom: 4rem; }

/* ── MM ABOUT ── */
.mm-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.mm-about-img { position: relative; }
.mm-about-bg { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--lilac-100), var(--pink-100)); border-radius: 24px; position: relative; overflow: hidden; }
.mm-about-bg img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: 24px; }
.mm-dots { position: absolute; top: -15px; right: -15px; width: 100px; height: 100px; background-image: radial-gradient(circle, var(--pink-300) 1.5px, transparent 1.5px); background-size: 12px 12px; opacity: 0.5; }
.mm-exp-badge { position: absolute; bottom: -20px; right: 20px; background: var(--pink-500); color: white; padding: 1rem 1.5rem; border-radius: 16px; text-align: center; box-shadow: 0 8px 24px rgba(232,80,138,0.3); }
.mm-exp-num { font-size: 2rem; font-weight: 600; display: block; line-height: 1; }
.mm-exp-label { font-size: 0.75rem; opacity: 0.9; }
.mm-about-text p { color: var(--text-mid); line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.2rem; }
.mm-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.mm-info-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.mm-info-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* ── MM SKILLS ── */
.mm-skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.mm-skill-card { background: white; border-radius: 20px; padding: 2rem; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; }
.mm-skill-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,80,138,0.12); }
.mm-skill-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.mm-skill-icon.pink { background: var(--rose-soft); }
.mm-skill-icon.lilac { background: var(--lavender-soft); }
.mm-skill-name { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.mm-skill-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.2rem; }
.mm-bar-wrap { background: var(--pink-50); border-radius: 50px; height: 6px; overflow: hidden; }
.mm-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--pink-400), var(--lilac-400)); }
.mm-pct { font-size: 0.78rem; color: var(--text-light); text-align: right; margin-top: 0.3rem; }

/* ── MM PORTFOLIO ── */
.mm-filter-tabs { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; flex-wrap: wrap; }
.mm-filter-btn { padding: 0.5rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--pink-200); background: white; color: var(--text-mid); font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.mm-filter-btn.active, .mm-filter-btn:hover { background: var(--pink-400); color: white; border-color: var(--pink-400); }
.mm-portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.8rem; }
.mm-project-card { border-radius: 20px; overflow: hidden; background: var(--mm-cream); border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; }
.mm-project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(232,80,138,0.14); }
.mm-thumb { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.mm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mm-thumb.g1 { background: linear-gradient(135deg, var(--pink-100), var(--lilac-200)); }
.mm-thumb.g2 { background: linear-gradient(135deg, var(--lilac-100), var(--pink-200)); }
.mm-thumb.g3 { background: linear-gradient(135deg, var(--pink-200), #FFD6E7); }
.mm-thumb.g4 { background: linear-gradient(135deg, var(--lilac-200), var(--pink-100)); }
.mm-thumb.g5 { background: linear-gradient(135deg, #FFB3D1, var(--lilac-100)); }
.mm-thumb.g6 { background: linear-gradient(135deg, var(--lilac-300), var(--pink-100)); }
.mm-overlay { position: absolute; inset: 0; background: rgba(232,80,138,0.85); display: flex; align-items: center; justify-content: center; gap: 1rem; opacity: 0; transition: opacity 0.3s; }
.mm-project-card:hover .mm-overlay { opacity: 1; }
.mm-overlay-btn { width: 44px; height: 44px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; color: var(--pink-500); text-decoration: none; font-size: 1.1rem; transition: transform 0.2s; }
.mm-overlay-btn:hover { transform: scale(1.1); }
.mm-project-info { padding: 1.5rem; }
.mm-project-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.mm-tag-pill { font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 50px; background: var(--rose-soft); color: var(--pink-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.mm-tag-pill.lilac { background: var(--lavender-soft); color: var(--lilac-500); }
.mm-project-title { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.mm-project-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── MM SERVICES ── */
.mm-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mm-service-card { background: white; border-radius: 24px; padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.mm-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--pink-400), var(--lilac-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.mm-service-card:hover::before { transform: scaleX(1); }
.mm-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(157,112,232,0.15); }
.mm-service-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.mm-service-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.8rem; }
.mm-service-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.mm-service-price { font-size: 1.4rem; font-weight: 600; color: var(--pink-500); }

/* ── MM COUNTER ── */
.mm-counters-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.mm-counter-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; display: block; line-height: 1; }
.mm-counter-label { font-size: 0.85rem; opacity: 0.85; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── MM TESTIMONIALS ── */
.mm-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.mm-testimonial { background: var(--mm-cream); border-radius: 20px; padding: 2rem; border: 1px solid var(--pink-100); position: relative; }
.mm-testimonial::before { content: '\201C'; position: absolute; top: 1.2rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; color: var(--pink-200); }
.mm-stars { color: var(--pink-400); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.mm-testimonial-text { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.mm-author { display: flex; align-items: center; gap: 0.8rem; }
.mm-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: linear-gradient(135deg, var(--pink-200), var(--lilac-200)); }
.mm-author-name { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); }
.mm-author-role { font-size: 0.8rem; color: var(--text-light); }

/* ── MM BLOG ── */
.mm-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; }
.mm-blog-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--pink-100); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; color: inherit; }
.mm-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,80,138,0.12); }
.mm-blog-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.mm-blog-thumb.bt1 { background: linear-gradient(135deg, var(--pink-100), var(--lilac-100)); }
.mm-blog-thumb.bt2 { background: linear-gradient(135deg, var(--lilac-100), var(--pink-200)); }
.mm-blog-thumb.bt3 { background: linear-gradient(135deg, var(--pink-200), var(--lilac-200)); }
.mm-blog-body { padding: 1.5rem; }
.mm-blog-cat { font-size: 0.72rem; color: var(--lilac-400); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 0.6rem; }
.mm-blog-title { font-size: 1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.4; }
.mm-blog-meta { font-size: 0.8rem; color: var(--text-light); }

/* ── MM CONTACT ── */
.mm-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.mm-contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.mm-contact-info h2 em { color: var(--pink-500); font-style: italic; }
.mm-contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2.5rem; }
.mm-contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.mm-contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--mm-cream); border-radius: 14px; border: 1px solid var(--pink-100); }
.mm-contact-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--rose-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.mm-contact-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.mm-contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.mm-form { display: flex; flex-direction: column; gap: 1.2rem; }
.mm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.mm-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.mm-form-group label { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }
.mm-form-group input,
.mm-form-group textarea,
.mm-form-group select { padding: 0.85rem 1.1rem; border: 1.5px solid var(--pink-100); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: var(--mm-cream); outline: none; transition: border-color 0.2s; }
.mm-form-group input:focus,
.mm-form-group textarea:focus,
.mm-form-group select:focus { border-color: var(--pink-400); background: white; }
.mm-form-group textarea { resize: vertical; min-height: 130px; }
.mm-form-submit { background: linear-gradient(135deg, var(--pink-400), var(--lilac-400)); color: white; border: none; padding: 1rem 2.5rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; align-self: flex-start; box-shadow: 0 4px 20px rgba(232,80,138,0.25); }
.mm-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,80,138,0.35); }

/* ── MM FOOTER ── */
.mm-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 5% 2rem; }
.mm-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.mm-footer-brand .mm-nav-logo { color: var(--pink-300); display: block; margin-bottom: 1rem; }
.mm-footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.mm-footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.mm-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.mm-footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.mm-footer-col a:hover { color: var(--pink-300); }
.mm-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.mm-footer-bottom a { color: var(--pink-300); text-decoration: none; }

/* ── MM BACK TO TOP ── */
#mm-back-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; border-radius: 50%; background: var(--pink-400); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 20px rgba(232,80,138,0.35); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; z-index: 999; }
#mm-back-top.show { opacity: 1; transform: translateY(0); }
#mm-back-top:hover { background: var(--pink-500); }

/* ── MM MOBILE NAV ── */
.mm-mobile-nav { position: fixed; inset: 0; z-index: 999; background: rgba(255,248,251,0.97); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.3s; }
.mm-mobile-nav.open { transform: translateX(0); }
.mm-mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.mm-mobile-nav a:hover { color: var(--pink-500); }
.mm-mobile-close { position: absolute; top: 1.5rem; right: 5%; font-size: 2rem; cursor: pointer; color: var(--text-mid); background: none; border: none; }

/* ── MM TYPING ── */
#mm-typing { border-right: 2px solid var(--pink-500); padding-right: 5px; white-space: nowrap; overflow: hidden; display: inline-block; animation: mmBlink 0.8s infinite; }

/* ── MM ANIMATIONS ── */
@keyframes mmFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mmFloat  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes mmMorph  { 0%,100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; } 67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; } }
@keyframes mmPulse  { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes mmBlink  { 0% { border-color: transparent; } 50% { border-color: var(--pink-500); } 100% { border-color: transparent; } }

/* ── MM RESPONSIVE ── */
@media (max-width: 900px) {
  .mm-hero-inner, .mm-about-grid, .mm-contact-grid { grid-template-columns: 1fr; }
  .mm-img-wrap { order: -1; }
  .mm-img-frame { width: 280px; height: 340px; }
  .mm-footer-top { grid-template-columns: 1fr 1fr; }
  .mm-counters-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-nav-links { display: none; }
  .mm-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .mm-form-row { grid-template-columns: 1fr; }
  .mm-footer-top { grid-template-columns: 1fr; }
  .mm-counters-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .mm-hero-inner, .mm-about-grid, .mm-contact-grid { grid-template-columns: 1fr; }
  .mm-img-wrap { order: -1; }
  .mm-img-frame { width: 280px; height: 340px; }
  .mm-footer-top { grid-template-columns: 1fr 1fr; }
  .mm-counters-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-nav-links { display: none; }
  .mm-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .mm-form-row { grid-template-columns: 1fr; }
  .mm-footer-top { grid-template-columns: 1fr; }
  .mm-counters-grid { grid-template-columns: 1fr 1fr; }
}