/* ===========================================
   MARÉS STUDIO 360 — Main Stylesheet
   =========================================== */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Paleta */
  --arena:         #FDF4EC;
  --marino:        #1B2431;
  --marino-dark:   #141e2a;
  --mares1:        #5A4932;
  --mares2:        #C5B08E;

  /* Semánticos */
  --glass-bg:      rgba(253, 244, 236, 0.05);
  --glass-border:  rgba(253, 244, 236, 0.11);
  --text-main:     rgba(253, 244, 236, 0.92);
  --text-muted:    rgba(253, 244, 236, 0.50);
  --text-hint:     rgba(253, 244, 236, 0.26);
  --line:          rgba(253, 244, 236, 0.09);
  --accent-line:   rgba(197, 176, 142, 0.30);

  /* Layout */
  --nav-height:    68px;
  --content-max:   1280px;

  /* Easing */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Aileron', sans-serif;
  background: var(--marino-dark);
  color: var(--arena);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Restore cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img, video { display: block; max-width: 100%; }
ul   { list-style: none; }

/* ─────────────────────────────────────────
   LENIS SMOOTH SCROLL
───────────────────────────────────────── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ─────────────────────────────────────────
   CURSOR PERSONALIZADO
───────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--mares2);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 176, 142, 0.45);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              border-color 0.3s ease;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--mares2);
}

body.cursor-click .cursor-dot {
  transform: translate(-50%, -50%) scale(1.6);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* ===========================================
   NAVEGACIÓN
   =========================================== */

#mares-navbar {
  position: fixed;
  top: 16px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  height: 56px;
  padding: 0 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 0.5px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-family: 'Aileron', sans-serif;
  transition: background 0.45s ease,
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

#mares-navbar.scrolled {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.40);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* Logo */
.mn-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  flex-shrink: 0;
}
.mn-logo-main {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--marino);
}
.mn-logo-sub {
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mares1);
}

/* Links desktop — centrados absolutamente */
.mn-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mn-links a {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 36, 49, 0.58);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}
.mn-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.5px;
  background: var(--mares1);
  transition: width 0.3s var(--ease-out);
}
.mn-links a:hover             { color: var(--marino); }
.mn-links a:hover::after      { width: 100%; }

/* Cluster derecho */
.mn-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Botón Instagram */
.mn-ig {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid rgba(27, 36, 49, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.mn-ig:hover {
  border-color: var(--mares1);
  background: rgba(90, 73, 50, 0.08);
  transform: scale(1.06);
}
.mn-ig svg {
  width: 15px;
  height: 15px;
  stroke: rgba(27, 36, 49, 0.55);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.mn-ig:hover svg { stroke: var(--mares1); }

/* Selector de idioma */
.mn-lang { position: relative; }

.mn-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0.5px solid rgba(27, 36, 49, 0.20);
  border-radius: 2px;
  padding: 9px 20px;
  color: rgba(27, 36, 49, 0.58);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.mn-lang-btn:hover {
  border-color: var(--mares1);
  background: rgba(90, 73, 50, 0.06);
  color: var(--marino);
}

.mn-lang-flag  { font-size: 14px; line-height: 1; }
.mn-lang-code  {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mn-lang-chevron {
  width: 8px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}
.mn-lang.open .mn-lang-chevron { transform: rotate(180deg); }

.mn-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20, 28, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--line);
  border-radius: 3px;
  min-width: 120px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.mn-lang.open .mn-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mn-lang-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--line);
  transition: background 0.15s;
}
.mn-lang-option:last-child { border-bottom: none; }
.mn-lang-option:hover { background: rgba(197, 176, 142, 0.08); }
.mn-lang-option-flag { font-size: 15px; }
.mn-lang-option-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.15s;
}
.mn-lang-option:hover .mn-lang-option-text  { color: var(--arena); }
.mn-lang-option.active .mn-lang-option-text { color: var(--mares2); }

/* CTA hablamos */
.mn-cta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--arena);
  background: var(--marino);
  border: 0.5px solid var(--marino);
  padding: 9px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mn-cta:hover {
  background: var(--mares1);
  border-color: var(--mares1);
}

/* Burger */
.mn-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
}
.mn-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--marino);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.mn-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mn-burger.open span:nth-child(2) { opacity: 0; }
.mn-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Drawer mobile fullscreen ─── */
.mn-drawer {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--marino);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow: hidden;
}
.mn-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mn-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 62px;
  border-bottom: 0.5px solid var(--line);
  flex-shrink: 0;
}
.mn-drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.mn-drawer-brand-main {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--arena);
}
.mn-drawer-brand-sub {
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mares2);
}
.mn-drawer-close {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.45);
  background: none;
  border: none;
  padding: 8px 0;
  transition: color 0.2s;
}
.mn-drawer-close:hover { color: var(--arena); }

.mn-drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}
.mn-drawer-nav li {
  border-bottom: 0.5px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.mn-drawer-nav li:first-child { border-top: 0.5px solid var(--line); }

.mn-drawer.open .mn-drawer-nav li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.mn-drawer.open .mn-drawer-nav li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.mn-drawer.open .mn-drawer-nav li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.mn-drawer.open .mn-drawer-nav li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }

.mn-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 300;
  color: var(--arena);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mn-drawer-nav a:hover { color: var(--mares2); }

.mn-nav-arrow {
  font-size: 18px;
  color: var(--mares2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.mn-drawer-nav a:hover .mn-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mn-drawer-footer {
  padding: 24px 28px;
  border-top: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.mn-drawer.open .mn-drawer-footer { opacity: 1; }

.mn-drawer-footer-links {
  display: flex;
  gap: 24px;
}
.mn-drawer-footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.35);
  transition: color 0.2s;
}
.mn-drawer-footer-links a:hover,
.mn-drawer-footer-links a.active { color: var(--mares2); }

.mn-drawer-footer-ig {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.mn-drawer-footer-ig:hover {
  border-color: var(--mares2);
  background: rgba(197, 176, 142, 0.08);
}
.mn-drawer-footer-ig svg {
  width: 15px;
  height: 15px;
  stroke: rgba(253, 244, 236, 0.45);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Nav sobre hero oscuro: tema blanco ─── */
#mares-navbar.mn-on-hero {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

#mares-navbar.mn-on-hero .mn-logo-main       { color: var(--arena); }
#mares-navbar.mn-on-hero .mn-logo-sub        { color: var(--mares2); }

#mares-navbar.mn-on-hero .mn-links a         { color: rgba(253, 244, 236, 0.65); }
#mares-navbar.mn-on-hero .mn-links a:hover   { color: var(--arena); }
#mares-navbar.mn-on-hero .mn-links a::after  { background: var(--mares2); }

#mares-navbar.mn-on-hero .mn-ig              { border-color: rgba(253, 244, 236, 0.28); }
#mares-navbar.mn-on-hero .mn-ig svg          { stroke: rgba(253, 244, 236, 0.65); }
#mares-navbar.mn-on-hero .mn-ig:hover        { border-color: var(--mares2); background: rgba(197, 176, 142, 0.12); }
#mares-navbar.mn-on-hero .mn-ig:hover svg    { stroke: var(--mares2); }

#mares-navbar.mn-on-hero .mn-lang-btn        { border-color: rgba(253, 244, 236, 0.28); color: rgba(253, 244, 236, 0.65); }
#mares-navbar.mn-on-hero .mn-lang-btn:hover  { border-color: var(--mares2); color: var(--arena); background: rgba(197, 176, 142, 0.08); }

#mares-navbar.mn-on-hero .mn-cta             { background: rgba(253, 244, 236, 0.14); border-color: rgba(253, 244, 236, 0.35); color: var(--arena); }
#mares-navbar.mn-on-hero .mn-cta:hover       { background: var(--mares2); border-color: var(--mares2); color: var(--marino); }

#mares-navbar.mn-on-hero .mn-burger span     { background: var(--arena); }

/* ─── Nav responsive ─── */
@media (max-width: 960px) {
  #mares-navbar {
    top: 12px;
    left: 14px;
    right: 14px;
    padding: 0 20px;
    height: 52px;
  }
  .mn-links,
  .mn-right { display: none; }
  .mn-burger { display: flex; }
}

/* ===========================================
   HERO — Split editorial (marca + servicios + Cal.com)
   =========================================== */

/* ── Base ── */
.mhero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--marino-dark);
}

/* Fade inferior — funde con la sección siguiente */
.mhero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(27, 36, 49, 0.6) 40%,
    rgba(27, 36, 49, 1) 100%
  );
  z-index: 5;
  pointer-events: none;
}

/* Vídeo de fondo */
.mhero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mhero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.mhero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141e2a 0%, #1e2f3e 40%, #162620 100%);
}
.mhero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(20, 30, 42, 0.88) 0%,
      rgba(20, 30, 42, 0.70) 45%,
      rgba(20, 30, 42, 0.55) 100%),
    linear-gradient(to bottom,
      rgba(20, 30, 42, 0.3) 0%,
      transparent 30%,
      transparent 70%,
      rgba(20, 30, 42, 0.5) 100%);
}

/* ── Layout split editorial ── */
.mhero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--content-max);
  padding: calc(var(--nav-height) + 52px) 44px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Columna izquierda ── */
.mhero-col-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mhero-deco-line {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.mhero-deco-line span {
  display: block;
  height: 0.5px;
  background: var(--mares2);
  width: 0;        /* GSAP lo anima */
  flex-shrink: 0;
}
.mhero-deco-line em {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  font-style: normal;
  opacity: 0;      /* GSAP lo anima */
  white-space: nowrap;
}

.mhero-h1-wrap { }
.mhero-h1 {
  font-family: 'Aileron', sans-serif;
  font-size: clamp(46px, 5.8vw, 86px);
  font-weight: 600;
  color: var(--arena);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.mhero-h1-line {
  display: block;
  /* GSAP gestiona clip-path y translateY */
}
.mhero-h1 em,
.mpr-header h2 em,
.msv-h2 em,
.mtes-title em {
  font-style: italic;
  color: var(--mares2);
  font-weight: 400;
}

.mhero-para {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
  border-left: 0.5px solid var(--accent-line);
  padding-left: 16px;
  max-width: 440px;
  opacity: 0; /* GSAP */
}

/* ── Slider de servicios ── */
.mhero-slider {
  opacity: 0; /* GSAP */
  margin-top: 4px;
}

.mhero-slider-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}

.mhero-bar {
  flex: 1;
  height: 1.5px;
  background: rgba(253, 244, 236, 0.10);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.mhero-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--mares2);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
}

.mhero-slider-track {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.mhero-slider-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0; /* GSAP */
}

.mhero-scard-ghost {
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-52%);
  font-size: clamp(72px, 8.5vw, 116px);
  font-weight: 700;
  color: rgba(253, 244, 236, 0.028);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.mhero-scard-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mhero-scard-num {
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--mares2);
  opacity: 0.7;
}

.mhero-scard-name {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.mhero-scard-tag {
  font-size: 11px;
  color: rgba(253, 244, 236, 0.30);
  letter-spacing: 0.06em;
}

/* ── Columna derecha — Panel "Let's Talk" ── */
.mhero-col-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0; /* GSAP */
  padding-left: 56px;
  border-left: 0.5px solid rgba(253, 244, 236, 0.08);
}

.mhero-book-eyebrow {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mares2);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.mhero-book-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--mares2);
  flex-shrink: 0;
}

.mhero-book-title {
  font-family: 'Aileron', sans-serif;
  font-size: clamp(44px, 5.4vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--arena);
  margin-bottom: 36px;
}
.mhero-book-title em {
  font-style: normal;
  color: rgba(253, 244, 236, 0.38);
}

.mhero-book-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 40px;
}

.mhero-lets-talk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Aileron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arena);
  background: transparent;
  border: 0.5px solid rgba(253, 244, 236, 0.28);
  border-radius: 2px;
  padding: 18px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  margin-bottom: 24px;
}
.mhero-lets-talk:hover {
  background: rgba(197, 176, 142, 0.08);
  border-color: rgba(197, 176, 142, 0.45);
  color: var(--mares2);
}
.mhero-lets-talk svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.mhero-talk-sep {
  opacity: 0.35;
  font-weight: 300;
  letter-spacing: 0;
}

.mhero-book-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mhero-book-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.28);
}
.mhero-book-tag-sep {
  color: rgba(253, 244, 236, 0.14);
  font-size: 10px;
  line-height: 1;
}

/* ── Google Reviews ── */
.mhero-reviews {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(253, 244, 236, 0.07);
}

.mhero-reviews-inner {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mhero-reviews-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mhero-reviews-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mhero-reviews-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mhero-reviews-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.01em;
  line-height: 1;
}

.mhero-reviews-stars {
  font-size: 11px;
  color: #FBBC05;
  letter-spacing: 1.5px;
  line-height: 1;
}

.mhero-reviews-count {
  font-size: 10px;
  color: rgba(253, 244, 236, 0.32);
  letter-spacing: 0.05em;
}

/* ── Hero responsive ── */
@media (max-width: 900px) {
  .mhero-content {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-height) + 40px) 40px 64px;
    gap: 56px;
    align-items: start;
  }
  .mhero-scard-name { font-size: clamp(20px, 5.5vw, 28px); }
  .mhero-slider-track { height: 120px; }
  .mhero-col-right {
    padding-left: 0;
    border-left: none;
    border-top: 0.5px solid rgba(253, 244, 236, 0.08);
    padding-top: 48px;
  }
  .mhero-book-title { font-size: clamp(48px, 12vw, 80px); }
  .mhero-lets-talk { align-self: stretch; justify-content: space-between; }
}
@media (max-width: 600px) {
  .mhero-content { padding: calc(var(--nav-height) + 20px) 20px 52px; gap: 44px; }
  .mhero-h1 { font-size: clamp(36px, 9.5vw, 56px); letter-spacing: -0.025em; }
  .mhero-scard-name { font-size: clamp(18px, 6.5vw, 26px); }
  .mhero-slider-track { height: 110px; }
  .mhero-book-title { font-size: clamp(44px, 14vw, 68px); }
  .mhero-col-right { padding-top: 40px; }
}

/* ===========================================
   PORTFOLIO — Rueda 3D de proyectos
   =========================================== */
.mportfolio {
  background: var(--marino);
  padding: 80px 0 80px;
  overflow: hidden;
  position: relative;
}

/* ─── Focos de luz ─── */
.mpr-lights {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.mpr-lights.on { opacity: 1; }

.mpr-light-left,
.mpr-light-center,
.mpr-light-right {
  position: absolute;
  top: -60px;
  width: 320px;
  height: 700px;
  transform-origin: top center;
}
.mpr-light-left {
  left: calc(50% - 280px);
  background: conic-gradient(
    from -10deg at 50% 0%,
    transparent 0deg,
    rgba(197,176,142,0.07) 12deg,
    rgba(197,176,142,0.13) 20deg,
    rgba(253,244,236,0.06) 28deg,
    transparent 38deg
  );
  transform: rotate(-15deg);
  filter: blur(8px);
}
.mpr-light-center {
  left: calc(50% - 160px);
  background: conic-gradient(
    from -12deg at 50% 0%,
    transparent 0deg,
    rgba(253,244,236,0.04) 10deg,
    rgba(253,244,236,0.10) 20deg,
    rgba(253,244,236,0.16) 24deg,
    rgba(253,244,236,0.10) 28deg,
    rgba(253,244,236,0.04) 34deg,
    transparent 44deg
  );
  filter: blur(6px);
}
.mpr-light-right {
  left: calc(50%);
  background: conic-gradient(
    from -10deg at 50% 0%,
    transparent 0deg,
    rgba(197,176,142,0.07) 12deg,
    rgba(197,176,142,0.13) 20deg,
    rgba(253,244,236,0.06) 28deg,
    transparent 38deg
  );
  transform: rotate(15deg);
  filter: blur(8px);
}

.mpr-light-glow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse at center,
    rgba(197,176,142,0.12) 0%,
    transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 1.4s ease 0.4s;
}
.mpr-lights.on .mpr-light-glow { opacity: 1; }

/* ─── Header ─── */
.mpr-header {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.mpr-header-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  display: block;
  margin-bottom: 12px;
}
.mpr-header h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ─── Escena 3D ─── */
.mpr-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}
.mpr-wheel {
  position: relative;
  width: 120px;
  height: 180px;
  transform-style: preserve-3d;
}

/* ─── Tarjetas ─── */
.mpr-card {
  position: absolute;
  width: 120px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid rgba(253, 244, 236, 0.12);
  cursor: pointer;
  transition: border-color 0.3s;
  will-change: filter, opacity;
}
.mpr-card:hover { border-color: var(--mares2); }
.mpr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge de visualizaciones */
.mpr-views {
  position: absolute;
  bottom: 7px;
  left: 7px;
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 2px 5px 2px 4px;
  pointer-events: none;
  z-index: 2;
}
.mpr-views svg {
  width: 9px;
  height: 6px;
  flex-shrink: 0;
}
.mpr-views span {
  font-family: 'Aileron', sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Niebla blanca para tarjetas del fondo */
.mpr-fog {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Placeholder mientras no hay imágenes */
.mpr-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(253, 244, 236, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mpr-placeholder-num {
  font-size: 28px;
  font-weight: 600;
  color: rgba(253, 244, 236, 0.15);
  letter-spacing: -0.02em;
}
.mpr-placeholder-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.2);
}

/* ─── Cortina de entrada ─── */
.mpr-curtain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--marino);
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.mpr-curtain.off {
  opacity: 0;
  pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .mportfolio { padding: 72px 0 80px; }
  .mpr-scene  { height: 360px; perspective: 700px; }
  .mpr-wheel  { width: 90px; height: 135px; }
  .mpr-card   { width: 90px; height: 135px; }
}

/* ===========================================
   SERVICIOS — Lista editorial
   =========================================== */

.msv-section {
  background: var(--marino);
  padding: 80px 0 0;
  position: relative;
}

/* ─── Cursor spotlight ─── */
.msv-spotlight {
  position: absolute;
  top: 0; left: 0;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(197, 176, 142, 0.055) 0%,
    transparent 62%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.msv-section:hover .msv-spotlight { opacity: 1; }

/* ─── Header ─── */
.msv-header {
  padding: 0 60px;
  margin-bottom: 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.msv-header-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0; /* GSAP */
}
.msv-header-label::before,
.msv-header-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--mares2);
  flex-shrink: 0;
}
.msv-h2 {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.msv-h2-line {
  display: block;
  overflow: hidden;
  /* GSAP anima clip-path */
}

/* ─── Lista ─── */
.msv-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.msv-item {
  border-top: 0.5px solid var(--line);
  padding: 0 60px;
  cursor: pointer;
  position: relative;
  opacity: 0; /* GSAP */
}
.msv-item:last-child { border-bottom: 0.5px solid var(--line); }

/* Fondo hover — warm tint */
.msv-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(197, 176, 142, 0.05) 0%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.msv-item:hover::before { opacity: 1; }

/* Línea acento izquierda */
.msv-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--mares2), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
  z-index: 1;
}
.msv-item:hover::after { transform: scaleY(1); }

/* Número de fondo — gran y sutil */
.msv-ghost {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-size: clamp(110px, 15vw, 200px);
  font-weight: 700;
  color: rgba(253, 244, 236, 0.028);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.5s ease, transform 0.5s var(--ease-out);
}
.msv-item:hover .msv-ghost {
  color: rgba(197, 176, 142, 0.065);
  transform: translateY(-50%) scale(1.10);
}

.msv-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0 28px;
  padding: 26px 0;
  position: relative;
  z-index: 1;
}

/* Número */
.msv-num { display: none; }

/* Nombre + descripción */
.msv-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.msv-name {
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: letter-spacing 0.4s var(--ease-out), color 0.3s;
}
.msv-item:hover .msv-name {
  letter-spacing: -0.01em;
  color: var(--arena);
}
.msv-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.42);
  line-height: 1.65;
  max-width: 540px;
  transition: color 0.3s ease;
}
.msv-item:hover .msv-desc { color: rgba(253, 244, 236, 0.65); }

/* Tag — aparece en hover */
.msv-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mares2);
  border: 0.5px solid var(--accent-line);
  padding: 5px 10px;
  border-radius: 1px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}
.msv-item:hover .msv-tag {
  opacity: 1;
  transform: translateX(0);
}

/* Flecha — efecto magnético via GSAP */
.msv-arrow {
  width: 38px; height: 38px;
  border: 0.5px solid rgba(197, 176, 142, 0.22);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
  will-change: transform;
}
.msv-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--mares2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}
.msv-item:hover .msv-arrow {
  background: rgba(197, 176, 142, 0.1);
  border-color: var(--mares2);
}

/* ─── Footer de sección ─── */
.msv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-top: 0.5px solid var(--line);
  position: relative;
  z-index: 1;
  opacity: 0; /* GSAP */
}
.msv-footer-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.22);
}
.msv-footer-cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mares2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s, gap 0.3s var(--ease-out);
}
.msv-footer-cta:hover { color: var(--arena); gap: 18px; }
.msv-footer-cta svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .msv-item   { padding: 0 32px; }
  .msv-header { padding: 0 32px; }
  .msv-footer { padding: 24px 32px; }
  .msv-tag    { display: none; }
}
@media (max-width: 768px) {
  .msv-section { padding: 60px 0 0; }
  .msv-item   { padding: 0 24px; }
  .msv-header { padding: 0 24px; margin-bottom: 40px; }
  .msv-footer { padding: 22px 24px; }
  .msv-inner  {
    grid-template-columns: 30px 1fr auto;
    gap: 0 16px;
    padding: 22px 0;
  }
  .msv-name   { font-size: clamp(22px, 6vw, 34px); }
  .msv-desc   { font-size: 12px; max-width: 100%; }
  .msv-ghost  { font-size: 72px; right: 20px; }
}

/* ===========================================
   TESTIMONIOS + LOGO SLIDER
   =========================================== */

.mtes-section {
  background: var(--marino);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

/* ─── Fondo decorativo con gradientes de colores Google ─── */
.mtes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%,
      rgba(66, 133, 244, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%,
      rgba(52, 168, 83, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 20%,
      rgba(251, 188, 5, 0.03) 0%, transparent 50%);
}

/* ─── Texto gigante "Reviews" en el fondo ─── */
.mtes-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(253, 244, 236, 0.05);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* ─── Estrellas grandes en fondo ─── */
.mtes-bg-stars {
  position: absolute;
  left: -20px;
  bottom: 60px;
  display: flex;
  gap: 8px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.mtes-bg-star-big {
  font-size: clamp(60px, 10vw, 120px);
  color: var(--mares2);
  line-height: 1;
}

/* ─── Badge 5.0 en fondo ─── */
.mtes-bg-badge {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.mtes-bg-badge-num {
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 600;
  color: var(--arena);
  line-height: 1;
  letter-spacing: -0.04em;
}
.mtes-bg-badge-label {
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arena);
}

/* Contenido por encima del fondo */
.mtes-header,
.mtes-logos-wrap,
.mtes-cards { position: relative; z-index: 1; }

/* ─── Header ─── */
.mtes-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 56px;
}
.mtes-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0; /* GSAP */
}
.mtes-label::before,
.mtes-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--mares2);
  flex-shrink: 0;
}
.mtes-title {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.mtes-title-line {
  display: block;
  overflow: hidden; /* GSAP clip-path */
}

/* ═══════════════════════════
   LOGO SLIDER — marquee
   ═══════════════════════════ */
.mtes-logos-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 72px;
}

/* Fades en los extremos */
.mtes-logos-wrap::before,
.mtes-logos-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.mtes-logos-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--marino) 0%, transparent 100%);
}
.mtes-logos-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--marino) 0%, transparent 100%);
}

.mtes-logos-track {
  display: flex;
  width: max-content;
  animation: mtes-marquee 32s linear infinite;
  padding: 8px 0;
}
.mtes-logos-track:hover { animation-play-state: paused; }

@keyframes mtes-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mtes-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 28px;
  margin: 0 10px;
  border: 0.5px solid rgba(253, 244, 236, 0.1);
  border-radius: 10px;
  background: rgba(253, 244, 236, 0.04);
  flex-shrink: 0;
  min-width: 140px;
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease-out);
}
.mtes-logo-pill:hover {
  background: rgba(253, 244, 236, 0.08);
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.mtes-logo-pill img {
  max-height: 36px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.25s;
}
.mtes-logo-pill:hover img { opacity: 0.9; }

/* ═══════════════════════════
   TARJETAS DE TESTIMONIO
   ═══════════════════════════ */
.mtes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px;
}

.mtes-card {
  background: rgba(253, 244, 236, 0.04);
  border: 0.5px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0; /* GSAP */
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

/* Línea acento inferior al hacer hover */
.mtes-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mares2), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.mtes-card:hover::after { transform: scaleX(1); }

.mtes-card:hover {
  background: rgba(253, 244, 236, 0.065);
  border-color: rgba(197, 176, 142, 0.22);
}

/* Estrellas */
.mtes-stars { display: flex; gap: 4px; }
.mtes-star  {
  width: 13px; height: 13px;
  display: flex; align-items: center;
}
.mtes-star svg {
  width: 13px; height: 13px;
  fill: var(--mares2);
  stroke: none;
}

/* Cita */
.mtes-quote {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: rgba(253, 244, 236, 0.5);
  line-height: 1.78;
  letter-spacing: 0.01em;
  flex: 1;
  transition: color 0.3s;
}
.mtes-card:hover .mtes-quote { color: rgba(253, 244, 236, 0.68); }
.mtes-quote::before {
  content: '"';
  color: var(--mares2);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 2px;
}
.mtes-quote::after {
  content: '"';
  color: var(--mares2);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-left: 2px;
}

/* Autor */
.mtes-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
}
.mtes-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--arena);
  letter-spacing: 0.02em;
}
.mtes-author-role {
  font-size: 10px;
  color: var(--mares2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mtes-google {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.mtes-google svg { width: 14px; height: 14px; flex-shrink: 0; }
.mtes-google span {
  font-size: 10px;
  color: rgba(253, 244, 236, 0.35);
  letter-spacing: 0.06em;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .mtes-section   { padding: 60px 0 80px; }
  .mtes-header    { padding: 0 24px; margin-bottom: 40px; }
  .mtes-cards     { grid-template-columns: 1fr; padding: 0 24px; gap: 16px; }
  .mtes-logos-wrap { margin-bottom: 48px; }
  .mtes-bg-badge  { display: none; }
  .mtes-card      { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .mtes-bg-text   { display: none; }
  .mtes-bg-stars  { display: none; }
}

/* ===========================================
   SECCIONES CLARAS — inversión de paleta
   (Portfolio · Servicios · Testimonios)
   =========================================== */

.mportfolio,
.msv-section,
.mtes-section { --line: rgba(27, 36, 49, 0.1); }

/* ── Portfolio ── */
.mportfolio              { background: var(--arena); }
.mportfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/texturapapelarrugado.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  z-index: 0;
  pointer-events: none;
}
.mportfolio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    var(--arena) 0%,
    transparent 22%,
    transparent 72%,
    var(--arena) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.mportfolio .mpr-lights  { display: none; }
.mpr-header h2           { color: var(--marino); }
.mpr-card                { border-color: rgba(27, 36, 49, 0.14); }
.mpr-card:hover          { border-color: var(--mares1); }
.mpr-placeholder         { background: rgba(27, 36, 49, 0.05); }
.mpr-placeholder-num     { color: rgba(27, 36, 49, 0.12); }
.mpr-placeholder-label   { color: rgba(27, 36, 49, 0.18); }
.mpr-curtain             { background: var(--arena); }

/* ── Servicios ── */
.msv-section    { background: var(--arena); }
.msv-spotlight  { background: radial-gradient(circle at center, rgba(90, 73, 50, 0.08) 0%, transparent 62%); }
.msv-h2         { color: var(--marino); }
.msv-ghost      { color: rgba(27, 36, 49, 0.055); }
.msv-item:hover .msv-ghost     { color: rgba(90, 73, 50, 0.1); }
.msv-name       { color: var(--marino); }
.msv-item:hover .msv-name      { color: var(--marino); }
.msv-desc       { color: rgba(27, 36, 49, 0.48); }
.msv-item:hover .msv-desc      { color: rgba(27, 36, 49, 0.72); }
.msv-footer-count              { color: rgba(27, 36, 49, 0.28); }
.msv-footer-cta:hover          { color: var(--marino); }
.msv-item::before {
  background: linear-gradient(90deg, rgba(197, 176, 142, 0.09) 0%, transparent 70%);
}

/* ── Testimonios ── */
.mtes-section {
  background: var(--arena);
}
.mtes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/texturapapelarrugado.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  z-index: 0;
  pointer-events: none;
}
.mtes-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, var(--arena) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.mtes-header,
.mtes-logos-wrap,
.mtes-cards      { z-index: 2; }
.mtes-bg-text    { -webkit-text-stroke: 0.5px rgba(27, 36, 49, 0.07); }
.mtes-bg-badge-num,
.mtes-bg-badge-label  { color: var(--marino); }
.mtes-title      { color: var(--marino); }
.mtes-logos-wrap::before { background: linear-gradient(to right, var(--arena) 0%, transparent 100%); }
.mtes-logos-wrap::after  { background: linear-gradient(to left,  var(--arena) 0%, transparent 100%); }
.mtes-logo-pill  { border-color: rgba(27, 36, 49, 0.12); background: rgba(27, 36, 49, 0.04); }
.mtes-logo-pill:hover    { background: rgba(27, 36, 49, 0.07); }
.mtes-logo-pill img      { filter: brightness(0); }
.mtes-card       { background: rgba(255,255,255,0.55); border-color: rgba(27, 36, 49, 0.09); }
.mtes-card:hover { background: rgba(255,255,255,0.85); border-color: rgba(197, 176, 142, 0.3); }
.mtes-quote      { color: rgba(27, 36, 49, 0.55); }
.mtes-card:hover .mtes-quote   { color: rgba(27, 36, 49, 0.72); }
.mtes-author     { border-top-color: rgba(27, 36, 49, 0.09); }
.mtes-author-name { color: var(--marino); }
.mtes-google span { color: rgba(27, 36, 49, 0.38); }

/* ===========================================
   ABOUT / NOSOTROS
   =========================================== */

.mabo-section {
  background: var(--arena);
  padding: 140px 60px 72px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.mabo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 56px;
  align-items: center;
}

/* ── Texto ── */

.mabo-label {
  display: block;
  font-family: 'Aileron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  margin-bottom: 20px;
}

.mabo-title {
  font-family: 'Aileron', sans-serif;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  color: var(--marino);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.mabo-title-line {
  display: block;
}

.mabo-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--mares2);
}

.mabo-body {
  font-family: 'Aileron', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(27, 36, 49, 0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

.mabo-body:last-child {
  margin-bottom: 0;
}

/* ── Grid de imágenes/vídeo ── */

.mabo-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  grid-template-rows: 63% 37%;
  gap: 10px;
  height: 640px;
  margin-right: -60px; /* sangra hasta el borde de la sección */
}

.mabo-grid-item {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(197, 176, 142, 0.15);
}

.mabo-grid-item--tall {
  grid-row: 1 / 3;
}

/* Fotos derechas — sin radio en el lado derecho para tocar el borde */
.mabo-grid-item--a {
  border-radius: 8px 0 0 8px;
}

.mabo-grid-item--b {
  border-radius: 8px 0 0 8px;
}

.mabo-grid-item img,
.mabo-grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.mabo-grid-item:hover img,
.mabo-grid-item:hover video {
  transform: scale(1.04);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .mabo-section { padding: 80px 24px; }

  .mabo-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .mabo-grid { height: 400px; }

  .mabo-stats { gap: 32px; }
}

@media (max-width: 600px) {
  .mabo-section { padding: 64px 20px; }

  .mabo-grid { height: 320px; gap: 8px; }

  .mabo-stats { gap: 24px 32px; }
}

/* ===========================================
   FAQ — Preguntas frecuentes
   =========================================== */

.mfaq-section {
  background: var(--marino-dark); /* mismo tono que contacto y footer */
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

/* ─── Palabra de fondo ─── */
/* ─── Contenido ─── */
.mfaq-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ─── Header ─── */
.mfaq-header {
  text-align: center;
  margin-bottom: 80px;
}

.mfaq-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mares2);
  margin-bottom: 20px;
  opacity: 0; /* GSAP */
}

.mfaq-label::before,
.mfaq-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--mares2);
  flex-shrink: 0;
}

.mfaq-title {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  color: var(--arena);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mfaq-title-line {
  display: block;
  overflow: hidden;
}

.mfaq-title em {
  font-style: italic;
  color: var(--mares2);
  font-weight: 400;
}

/* ─── Body: nav categorías + paneles ─── */
.mfaq-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 56px;
  align-items: start;
}

/* ─── Navegación de categorías ─── */
.mfaq-cats {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--line);
  position: sticky;
  top: 88px;
  opacity: 0; /* GSAP */
}

.mfaq-cat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border: none;
  border-bottom: 0.5px solid var(--line);
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: padding-left 0.35s var(--ease-out);
}

.mfaq-cat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--mares2);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}

.mfaq-cat.is-active          { padding-left: 16px; }
.mfaq-cat.is-active::before  { transform: scaleY(1); }

.mfaq-cat-num {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--mares2);
  font-family: 'Aileron', sans-serif;
  opacity: 0.4;
  transition: opacity 0.25s;
}

.mfaq-cat.is-active .mfaq-cat-num,
.mfaq-cat:hover .mfaq-cat-num { opacity: 1; }

.mfaq-cat-name {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 600;
  color: rgba(253, 244, 236, 0.25);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.25s;
}

.mfaq-cat.is-active .mfaq-cat-name,
.mfaq-cat:hover .mfaq-cat-name { color: var(--arena); }

.mfaq-cat-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.18);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}

.mfaq-cat.is-active .mfaq-cat-desc,
.mfaq-cat:hover .mfaq-cat-desc { color: rgba(253, 244, 236, 0.38); }

/* ─── Paneles de preguntas ─── */
.mfaq-panels { min-height: 200px; }

.mfaq-panel {
  display: none;
  border-top: 0.5px solid var(--line);
}

.mfaq-panel.is-active { display: block; }

/* ─── Acordeón ─── */
.mfaq-item {
  border-bottom: 0.5px solid var(--line);
  opacity: 0; /* GSAP */
}

.mfaq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
}

.mfaq-q-text {
  flex: 1;
  font-family: 'Aileron', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  color: rgba(253, 244, 236, 0.6);
  line-height: 1.45;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}

.mfaq-question:hover .mfaq-q-text,
.mfaq-item.is-open .mfaq-q-text { color: var(--arena); }

.mfaq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0.5px solid rgba(253, 244, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}

.mfaq-icon svg {
  width: 11px;
  height: 11px;
  stroke: rgba(253, 244, 236, 0.32);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.25s;
}

.mfaq-item.is-open .mfaq-icon {
  border-color: rgba(197, 176, 142, 0.35);
  background: rgba(197, 176, 142, 0.08);
}

.mfaq-item.is-open .mfaq-icon svg { stroke: var(--mares2); }

/* ─── Respuesta ─── */
.mfaq-answer {
  height: 0;
  overflow: hidden;
}

.mfaq-answer-inner {
  padding: 0 40px 28px 0;
}

.mfaq-answer-inner p {
  font-family: 'Aileron', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.44);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ─── CTA ─── */
.mfaq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 64px;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0; /* GSAP */
}

.mfaq-cta-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.32);
}

.mfaq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Aileron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mares2);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(197, 176, 142, 0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.mfaq-cta-btn:hover {
  color: var(--arena);
  border-color: rgba(253, 244, 236, 0.4);
}

.mfaq-cta-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .mfaq-section  { padding: 80px 0 72px; }
  .mfaq-content  { padding: 0 24px; }
  .mfaq-header   { margin-bottom: 48px; }
  .mfaq-body     { grid-template-columns: 1fr; }
  .mfaq-cats {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: none;
    border-bottom: 0.5px solid var(--line);
    margin-bottom: 40px;
  }
  .mfaq-cats::-webkit-scrollbar { display: none; }
  .mfaq-cat {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 2px solid transparent;
    border-right: 0.5px solid var(--line);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .mfaq-cat::before   { display: none; }
  .mfaq-cat.is-active { padding-left: 20px; border-bottom-color: var(--mares2); }
  .mfaq-cat-desc      { display: none; }
  .mfaq-cat-name      { font-size: 14px; }
  .mfaq-cta           { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
}

/* ===========================================
   TRANSICIONES ENTRE SECCIONES — tarjetas redondeadas
   =========================================== */

/* El body usa --marino-dark como fondo → los bordes redondeados
   de las secciones crema muestran el fondo oscuro en las esquinas,
   creando el efecto de "tarjeta flotando" sin gradientes sucios. */

/* Portfolio: primera sección crema → esquinas superiores redondeadas */
.mportfolio {
  border-radius: 24px 24px 0 0;
}

/* Testimonios: última sección crema antes del oscuro → esquinas inferiores */
.mtes-section {
  border-radius: 0 0 24px 24px;
}

/* Asegurar que el contenido no se salga de los bordes redondeados */
.mportfolio,
.mtes-section { overflow: hidden; }

/* ===========================================
   CONTACTO — Reserva de reunión + Cal.com
   =========================================== */

.mct-section {
  background: var(--marino-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
}

/* ─── Vídeo de fondo ─── */
.mct-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mct-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.mct-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(27, 36, 49, 0.95) 0%,
      rgba(27, 36, 49, 0.72) 30%,
      rgba(20, 30, 42, 0.92) 100%);
}

/* ─── Palabra "Hablemos" de fondo ─── */
.mct-bg-word {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(253, 244, 236, 0.1);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0; /* GSAP */
}

/* ─── Contenido ─── */
.mct-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ─── Header ─── */
.mct-header {
  text-align: center;
  margin-bottom: 64px;
}
.mct-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mares2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0; /* GSAP */
}
.mct-label::before,
.mct-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--mares2);
  flex-shrink: 0;
}
.mct-title {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  color: var(--arena);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mct-title-line {
  display: block;
  overflow: hidden; /* GSAP clip-path */
}
.mct-title-accent {
  font-style: italic;
  color: var(--mares2);
  font-weight: 400;
}
.mct-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
  opacity: 0; /* GSAP */
}

/* ─── Strip de estadísticas ─── */
.mct-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 0.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 72px;
  opacity: 0; /* GSAP */
}
.mct-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  background: rgba(253, 244, 236, 0.03);
  text-align: center;
  transition: background 0.3s;
}
.mct-stat:hover { background: rgba(253, 244, 236, 0.06); }
.mct-stat-num {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  color: var(--arena);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mct-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.32);
}

/* ─── Columna del calendario (full width) ─── */

/* Badge de urgencia */
.mct-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(74, 222, 128, 0.06);
  border: 0.5px solid rgba(74, 222, 128, 0.18);
  border-radius: 3px;
  opacity: 0; /* GSAP */
}
.mct-urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: mct-pulse-dot 1.8s ease infinite;
}
@keyframes mct-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.mct-urgency-text {
  font-size: 12px;
  color: rgba(253, 244, 236, 0.58);
  line-height: 1.4;
}
.mct-urgency-text strong { color: var(--arena); font-weight: 600; }

/* Lista de lo que incluye */
.mct-includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0; /* GSAP */
}
.mct-includes-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mares2);
}
.mct-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mct-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(253, 244, 236, 0.55);
  line-height: 1.5;
  transition: color 0.2s;
}
.mct-trust-list li:hover { color: rgba(253, 244, 236, 0.85); }
.mct-trust-icon {
  color: var(--mares2);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Steps verticales (sidebar) */
.mct-steps {
  display: flex;
  flex-direction: column;
  opacity: 0; /* GSAP */
}
.mct-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--line);
}
.mct-step:first-child { border-top: 0.5px solid var(--line); }
.mct-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0.5px solid rgba(197, 176, 142, 0.25);
  background: rgba(197, 176, 142, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.mct-step:hover .mct-step-dot {
  border-color: var(--mares2);
  background: rgba(197, 176, 142, 0.12);
}
.mct-step-dot span {
  font-size: 10px;
  font-weight: 600;
  color: var(--mares2);
  letter-spacing: 0.04em;
}
.mct-step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 6px;
}
.mct-step-body strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--arena);
  letter-spacing: 0.02em;
}
.mct-step-body span {
  font-size: 11px;
  color: rgba(253, 244, 236, 0.38);
  font-weight: 300;
  line-height: 1.5;
}

/* WhatsApp alternativo */
.mct-wa-alt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0; /* GSAP */
}
.mct-wa-alt-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.25);
}
.mct-btn-wa {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 0.5px solid rgba(37, 211, 102, 0.22);
  border-radius: 3px;
  font-family: 'Aileron', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #25D366;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mct-btn-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}
.mct-btn-wa svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ─── Columna del calendario ─── */
.mct-cal-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0; /* GSAP */
}
.mct-cal-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 0.5px solid rgba(253, 244, 236, 0.1);
  background: #fff;
}
#my-cal-inline-30min {
  width: 100%;
  height: 760px;
  overflow: scroll;
}
.mct-cal-disclaimer {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.2);
}

/* ─── Footer bar ─── */
.mct-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 80px;
  border-top: 0.5px solid var(--line);
  margin-top: 56px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  opacity: 0; /* GSAP */
}
.mct-footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mct-footer-info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mares2);
}
.mct-footer-info-value {
  font-size: 13px;
  color: rgba(253, 244, 236, 0.65);
  font-weight: 300;
}
.mct-footer-actions { display: flex; align-items: center; gap: 10px; }

/* Versión sólida del botón WA para el footer */
.mct-btn-wa--solid {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  padding: 11px 22px;
  font-size: 11px;
}
.mct-btn-wa--solid:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
}
.mct-btn-wa--solid svg { fill: #fff; }

.mct-btn-ig {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.mct-btn-ig:hover {
  border-color: var(--mares2);
  background: rgba(197, 176, 142, 0.07);
}
.mct-btn-ig svg {
  width: 16px; height: 16px;
  stroke: rgba(253, 244, 236, 0.45);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .mct-section   { padding: 72px 0 0; }
  .mct-content   { padding: 0 24px; }
  #my-cal-inline-30min { height: 750px; }
  .mct-footer-bar { flex-direction: column; align-items: flex-start; padding: 32px 0 60px; }
  .mct-header    { margin-bottom: 40px; }
}

/* ===========================================
   ACCESIBILIDAD
   =========================================== */

/* Focus visible para navegación por teclado */
:focus-visible {
  outline: 2px solid var(--mares2);
  outline-offset: 3px;
}

/* ===========================================
   FOOTER — Pie de página
   =========================================== */

.mfooter {
  background: var(--marino-dark);
  position: relative;
  overflow: hidden;
}

/* Grain texture */
.mfooter::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* ─── Separador superior del footer ─── */
.mfooter::before {
  content: '';
  position: absolute;
  top: 0; left: 60px; right: 60px;
  height: 0.5px;
  background: rgba(253, 244, 236, 0.08);
  z-index: 1;
}

/* All sections above grain */
.mfooter-marquee,
.mfooter-hero,
.mfooter-sep,
.mfooter-cols,
.mfooter-bottom {
  position: relative;
  z-index: 1;
}

/* ─── Marquee strip ─── */
.mfooter-marquee {
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(253, 244, 236, 0.06);
}

.mfooter-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: mfooterScroll 45s linear infinite;
  will-change: transform;
}

@keyframes mfooterScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mfooter-marquee-item {
  font-family: 'Aileron', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.18);
}

.mfooter-marquee-sep {
  font-size: 12px;
  color: var(--mares2);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ─── Hero ─── */
.mfooter-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px 56px;
}

.mfooter-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(253, 244, 236, 0.07);
  margin-bottom: 28px;
}

.mfooter-brand {
  flex: 1;
}

.mfooter-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
}

.mfooter-logo-main {
  font-family: 'Aileron', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--arena);
  text-transform: uppercase;
}

.mfooter-logo-sub {
  font-family: 'Aileron', sans-serif;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mares2);
}

.mfooter-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 300;
  color: var(--arena);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mfooter-statement em {
  font-style: italic;
  color: var(--mares2);
}

/* Email contact link */
.mfooter-email {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(253, 244, 236, 0.32);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.35s;
  position: relative;
}

.mfooter-email::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 0.5px;
  background: var(--mares2);
  transition: width 0.4s ease;
}

.mfooter-email:hover {
  color: var(--mares2);
}

.mfooter-email:hover::after {
  width: 100%;
}

.mfooter-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.mfooter-hero-aside::before {
  content: '';
  position: absolute;
  inset: -80px -100px;
  background: radial-gradient(ellipse at center, rgba(197, 176, 142, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}


.mfooter-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  color: rgba(253, 244, 236, 0.4);
  line-height: 1.4;
  text-align: right;
}

.mfooter-tagline em {
  font-style: italic;
  color: var(--mares2);
}

.mfooter-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Aileron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arena);
  text-decoration: none;
  padding: 14px 28px;
  border: 0.5px solid rgba(253, 244, 236, 0.2);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.mfooter-cta-link:hover {
  background: rgba(253, 244, 236, 0.06);
  border-color: rgba(197, 176, 142, 0.4);
  color: var(--mares2);
}

.mfooter-cta-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mfooter-hero-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.mfooter-hero-bar span {
  font-family: 'Aileron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 244, 236, 0.22);
}

.mfooter-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mfooter-location svg {
  width: 12px; height: 12px;
  stroke: var(--mares2);
  fill: none;
  stroke-width: 1.2;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── Separador horizontal ─── */
.mfooter-sep {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  height: 0.5px;
  background: rgba(253, 244, 236, 0.07);
}

/* ─── Columnas de links ─── */
.mfooter-cols {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 60px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mfooter-col-title {
  font-family: 'Aileron', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mares2);
  margin-bottom: 20px;
}

.mfooter-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mfooter-col-list a {
  font-family: 'Aileron', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.38);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.22s;
  position: relative;
  display: inline-block;
}

.mfooter-col-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0.5px;
  background: var(--mares2);
  transition: width 0.3s ease;
}

.mfooter-col-list a:hover {
  color: var(--arena);
}

.mfooter-col-list a:hover::after {
  width: 100%;
}

/* Social icon list */
.mfooter-col-list--social {
  gap: 10px;
}

.mfooter-social-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.mfooter-social-link::after {
  display: none !important;
}

.mfooter-social-icon {
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(253, 244, 236, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}

.mfooter-social-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(253, 244, 236, 0.38);
  transition: color 0.25s;
}

.mfooter-social-link:hover .mfooter-social-icon {
  border-color: rgba(197, 176, 142, 0.35);
  background: rgba(197, 176, 142, 0.06);
}

.mfooter-social-link:hover .mfooter-social-icon svg {
  color: var(--mares2);
}

/* ─── Barra inferior ─── */
.mfooter-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 0.5px solid rgba(253, 244, 236, 0.06);
  flex-wrap: wrap;
}

.mfooter-copy,
.mfooter-crafted {
  font-family: 'Aileron', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(253, 244, 236, 0.18);
  letter-spacing: 0.04em;
}

.mfooter-crafted em {
  font-style: italic;
  color: rgba(197, 176, 142, 0.45);
}

/* ─── Responsive — tablet ─── */
@media (max-width: 900px) {
  .mfooter::before { left: 24px; right: 24px; }

  .mfooter-hero { padding: 64px 24px 48px; }

  .mfooter-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 32px;
  }

  .mfooter-hero-aside {
    align-items: flex-start;
    width: 100%;
  }

  .mfooter-tagline { text-align: left; }

  .mfooter-cta-link { width: 100%; justify-content: center; }

  .mfooter-sep { padding: 0 24px; }

  .mfooter-cols {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 24px 56px;
    gap: 40px 32px;
  }

  .mfooter-bottom { padding: 20px 24px 36px; }
}

/* ─── Responsive — mobile ─── */
@media (max-width: 600px) {
  .mfooter-hero { padding: 56px 20px 40px; }

  .mfooter-hero-inner { gap: 24px; padding-bottom: 28px; margin-bottom: 20px; }

  .mfooter-statement { font-size: clamp(28px, 10vw, 42px); }

  .mfooter-tagline { font-size: 16px; text-align: left; }

  .mfooter-email { font-size: clamp(14px, 4.5vw, 18px); }

  .mfooter-hero-bar { gap: 20px; }

  .mfooter-hero-bar span { font-size: 9px; }

  .mfooter-sep { padding: 0 20px; }

  .mfooter-cols {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px 48px;
    gap: 36px 20px;
  }

  .mfooter-col-list { gap: 14px; }

  .mfooter-col-list a { font-size: 14px; }

  .mfooter-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 20px 32px;
  }

  .mfooter-copy { font-size: 10px; }
  .mfooter-crafted { font-size: 10px; }
}

/* Reducir movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════
   FAQ + FOOTER — Tema claro (arena)
   (override al final para ganar en cascada)
   ═══════════════════════════════════════ */

/* ─── FAQ ─── */
.mfaq-section                               { background: var(--arena); }

.mfaq-label                                 { color: var(--mares1); }
.mfaq-label::before,
.mfaq-label::after                          { background: var(--mares1); }

.mfaq-title                                 { color: var(--marino); }
.mfaq-title em                              { color: var(--mares1); }

.mfaq-cats                                  { border-top-color: rgba(27, 36, 49, 0.10); }
.mfaq-cat                                   { border-bottom-color: rgba(27, 36, 49, 0.10); }
.mfaq-cat::before                           { background: var(--mares1); }
.mfaq-cat-num                               { color: var(--mares1); }
.mfaq-cat-name                              { color: rgba(27, 36, 49, 0.28); }
.mfaq-cat.is-active .mfaq-cat-name,
.mfaq-cat:hover .mfaq-cat-name             { color: var(--marino); }
.mfaq-cat-desc                              { color: rgba(27, 36, 49, 0.28); }
.mfaq-cat.is-active .mfaq-cat-desc,
.mfaq-cat:hover .mfaq-cat-desc             { color: rgba(27, 36, 49, 0.55); }

.mfaq-panel                                 { border-top-color: rgba(27, 36, 49, 0.10); }
.mfaq-item                                  { border-bottom-color: rgba(27, 36, 49, 0.10); }

.mfaq-q-text                                { color: rgba(27, 36, 49, 0.58); }
.mfaq-question:hover .mfaq-q-text,
.mfaq-item.is-open .mfaq-q-text            { color: var(--marino); }

.mfaq-icon                                  { border-color: rgba(27, 36, 49, 0.14); }
.mfaq-icon svg                              { stroke: rgba(27, 36, 49, 0.38); }
.mfaq-item.is-open .mfaq-icon              { border-color: rgba(90, 73, 50, 0.28); background: rgba(90, 73, 50, 0.06); }
.mfaq-item.is-open .mfaq-icon svg          { stroke: var(--mares1); }

.mfaq-answer-inner p                        { color: rgba(27, 36, 49, 0.55); }

.mfaq-cta-text                              { color: rgba(27, 36, 49, 0.40); }
.mfaq-cta-btn                               { color: var(--mares1); border-bottom-color: rgba(90, 73, 50, 0.28); }
.mfaq-cta-btn:hover                         { color: var(--marino); border-bottom-color: rgba(27, 36, 49, 0.35); }

/* ─── Footer ─── */
.mfooter                                    { background: var(--arena); }
.mfooter::after                             { opacity: 0.015; }
.mfooter::before                            { background: rgba(27, 36, 49, 0.08); }

.mfooter-logo-main                          { color: var(--marino); }
.mfooter-logo-sub                           { color: var(--mares1); }

.mfooter-hero-inner                         { border-bottom-color: rgba(27, 36, 49, 0.08); }
.mfooter-hero-bar span                      { color: rgba(27, 36, 49, 0.28); }
.mfooter-location svg                       { stroke: var(--mares1); }

.mfooter-cta-link                           { color: var(--marino); border-color: rgba(27, 36, 49, 0.20); }
.mfooter-cta-link:hover                     { color: var(--mares1); background: rgba(90, 73, 50, 0.06); border-color: rgba(90, 73, 50, 0.35); }

.mfooter-sep                                { background: rgba(27, 36, 49, 0.08); }

.mfooter-col-title                          { color: var(--mares1); }
.mfooter-col-list a                         { color: rgba(27, 36, 49, 0.50); }
.mfooter-col-list a:hover                   { color: var(--marino); }
.mfooter-col-list a::after                  { background: var(--mares1); }

.mfooter-social-icon                        { border-color: rgba(27, 36, 49, 0.12); }
.mfooter-social-icon svg                    { color: rgba(27, 36, 49, 0.45); }
.mfooter-social-link:hover .mfooter-social-icon         { border-color: rgba(90, 73, 50, 0.30); background: rgba(90, 73, 50, 0.06); }
.mfooter-social-link:hover .mfooter-social-icon svg     { color: var(--mares1); }

.mfooter-bottom                             { border-top-color: rgba(27, 36, 49, 0.07); }
.mfooter-copy,
.mfooter-crafted                            { color: rgba(27, 36, 49, 0.28); }
.mfooter-crafted em                         { color: rgba(90, 73, 50, 0.55); }

/* ===========================================
   BOTÓN FLOTANTE WHATSAPP — Marcapáginas
   =========================================== */
.mwa-bookmark {
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 100px 0 0 100px;
  background: rgba(27, 36, 49, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-right: none;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: background 0.28s, border-color 0.28s;
  text-decoration: none;
}
.mwa-bookmark svg {
  width: 20px;
  height: 20px;
  fill: rgba(253, 244, 236, 0.92);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mwa-bookmark:hover svg {
  transform: scale(1.2);
}
/* Sobre secciones oscuras: glass claro */
.mwa-bookmark.is-on-dark {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.10);
}
