/*
Theme Name: MoMa Creative Theme
Theme URI: https://new.momacreative.es/
Author: MoMa Creative Team
Author URI: https://new.momacreative.es/
Description: Tema corporativo oficial de MoMa Creative Business Hub para WordPress Multisite.
Version: 2.3.0
License: GNU General Public License v2 or later
Text Domain: moma-theme
*/

:root {
  /* MoMa Global Color Tokens */
  --moma-coral: #FF4545;
  --moma-coral-hover: #E03838;
  --moma-coral-light: rgba(255, 69, 69, 0.12);
  --moma-dark: #121214;
  --moma-dark-card: #1C1C20;
  --moma-dark-border: #2A2A30;
  --moma-light: #FFFFFF;
  --moma-light-bg: #EEF0F4;
  --moma-light-card: #FFFFFF;
  --moma-light-border: #E5E7EB;
  --moma-green: #4CAF50;
  --moma-green-light: rgba(76, 175, 80, 0.12);
  --moma-wood: #8B7355;
  --moma-gray-text: #6B7280;
  --moma-gray-light: #F3F4F6;

  /* Font Family Inter */
  --moma-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --moma-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --moma-radius-sm: 6px;
  --moma-radius-md: 12px;
  --moma-radius-lg: 18px;
  --moma-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.06);
  --moma-shadow-hover: 0 14px 35px rgba(0, 0, 0, 0.14);
  --moma-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--moma-font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #222225;
  background-color: var(--moma-light-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Theme Variants by Site */
body.theme-coworking,
body.theme-dark {
  background-color: var(--moma-dark);
  color: #ECECEC;
}

body.theme-broker {
  background-color: var(--moma-light-bg);
  color: #1F2937;
}

body.theme-academy {
  background-color: #F4F7F4;
  color: #1C281E;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--moma-transition);
}

/* Typography Jost */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--moma-font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8.5vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
}



/* Header & Glassmorphism Navigation */
.moma-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--moma-light-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--moma-transition);
}

.moma-navbar.scrolled {
  border-bottom-color: var(--moma-light-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.theme-dark .moma-navbar,
body.theme-coworking .moma-navbar {
  background-color: var(--moma-dark);
  border-bottom: 1px solid transparent;
}

body.theme-dark .moma-navbar.scrolled,
body.theme-coworking .moma-navbar.scrolled {
  border-bottom-color: var(--moma-dark-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

body.theme-broker .moma-navbar {
  background-color: var(--moma-light-bg);
}

body.theme-academy .moma-navbar {
  background-color: #F4F7F4;
  border-bottom: 1px solid transparent;
}

body.theme-academy .moma-navbar.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.moma-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.moma-logo-subtitle-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: 6px;
  transition: var(--moma-transition);
}

body.theme-dark .moma-logo-subtitle-img,
body.theme-coworking .moma-logo-subtitle-img {
  filter: invert(1);
}

.moma-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  text-transform: uppercase;
}

.moma-nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.85;
  padding-bottom: 4px;
  transition: var(--moma-transition);
}

.moma-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--moma-coral);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.moma-nav-links a:hover,
.moma-nav-links a.active {
  opacity: 1;
  color: var(--moma-coral);
}

.moma-nav-links a:hover::after,
.moma-nav-links a.active::after {
  width: 100%;
}

.moma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--moma-radius-md);
  border: none;
  cursor: pointer;
  transition: var(--moma-transition);
}

.moma-btn-coral {
  background: var(--moma-coral);
  color: #FFFFFF !important;
  box-shadow: none;
}

.moma-btn-coral:hover {
  background: var(--moma-coral-hover);
  transform: translateY(-2px);
  box-shadow: none;
}

.moma-btn-outline {
  background: transparent;
  border: 2px solid var(--moma-coral);
  color: var(--moma-coral) !important;
}

.moma-btn-outline:hover {
  background: var(--moma-coral-light);
  transform: translateY(-2px);
}

.moma-btn-dark {
  background: var(--moma-dark);
  color: #FFFFFF !important;
}

.moma-btn-dark:hover {
  background: #2D2D35;
  transform: translateY(-2px);
}

/* HERO SECTION */
.moma-hero {
  position: relative;
  min-height: 70vh;
  padding: 56px 5%;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  margin: 86px 16px 42px;
}

.moma-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* HERO OVERLAY */
.moma-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12, 13, 16, 0.88) 0%, rgba(18, 18, 22, 0.85) 55%, rgba(12, 13, 16, 0.92) 100%);
}

body.theme-dark .moma-hero-overlay {
  background: linear-gradient(135deg, rgba(12, 13, 16, 0.92) 0%, rgba(18, 18, 22, 0.88) 55%, rgba(12, 13, 16, 0.95) 100%);
}

.moma-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.moma-hero-inner:has(> .moma-hero-content:only-child) {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1000px;
  justify-items: center;
  text-align: center;
}

.moma-hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

body:not(.theme-dark) .moma-hero-content {
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.moma-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 69, 69, 0.2);
  color: #FF6B6B;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 30px;
  margin-bottom: 24px;
}

body.theme-dark .moma-hero-tag {
  background: rgba(255, 69, 69, 0.25);
  color: #FF6B6B;
}

.moma-hero-title {
  color: #FFFFFF !important;
  margin-bottom: 24px;
  text-align: center;
}

.moma-hero-subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin-bottom: 36px;
  line-height: 1.7;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}

.moma-seq-phrase {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: momaSeqAppear 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.moma-seq-phrase.phrase-1 {
  animation-delay: 0.3s;
}

.moma-seq-phrase.phrase-2 {
  animation-delay: 1.1s;
}

.moma-seq-phrase.phrase-3 {
  animation-delay: 1.9s;
}

@keyframes momaSeqAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typewriter-cursor {
  display: inline-block;
  color: var(--moma-coral);
  font-weight: 800;
  margin-left: 2px;
  animation: momaBlinkCursor 0.75s infinite;
}

@keyframes momaBlinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.moma-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.moma-hero .moma-btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #FFFFFF !important;
}

.moma-hero .moma-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

/* Right Side Video Box */
.moma-hero-video-box {
  position: relative;
  width: 100%;
  border-radius: var(--moma-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  aspect-ratio: 16 / 9;
  background: var(--moma-dark-card);
}

.moma-hero-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections & Layout */
.moma-section {
  padding: 90px 5%;
}

.moma-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.moma-section-header p {
  font-size: 1.15rem;
  opacity: 0.8;
  margin-top: 12px;
}

/* Ecosistema Grid */
.moma-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.moma-card {
  background: var(--moma-light-card);
  border: 1px solid var(--moma-light-border);
  border-radius: var(--moma-radius-md);
  padding: 32px;
  transition: var(--moma-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.theme-dark .moma-card {
  background: var(--moma-dark-card);
  border-color: var(--moma-dark-border);
}

.moma-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--moma-shadow-hover);
  border-color: var(--moma-coral);
}

.moma-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.moma-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.moma-card-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

.moma-card-link {
  font-weight: 700;
  color: var(--moma-coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Process Step Cards */
.moma-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.moma-process-step {
  background: var(--moma-light-card);
  border: 1px solid var(--moma-light-border);
  border-radius: var(--moma-radius-md);
  padding: 28px;
  position: relative;
}

body.theme-dark .moma-process-step {
  background: var(--moma-dark-card);
  border-color: var(--moma-dark-border);
}

.moma-step-num {
  width: 44px;
  height: 44px;
  background: var(--moma-coral-light);
  color: var(--moma-coral);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Team & MoMa AI Toggle */
.moma-team-toggle-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  background: var(--moma-light-card);
  border: 1px solid var(--moma-light-border);
  padding: 8px;
  border-radius: 50px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

body.theme-dark .moma-team-toggle-bar {
  background: var(--moma-dark-card);
  border-color: var(--moma-dark-border);
}

.moma-toggle-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--moma-transition);
  color: inherit;
  font-family: var(--moma-font-main);
}

.moma-toggle-btn.active {
  background: var(--moma-coral);
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(255, 69, 69, 0.3);
}

.moma-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.moma-team-card {
  background: var(--moma-light-card);
  border: 1px solid var(--moma-light-border);
  border-radius: var(--moma-radius-md);
  overflow: hidden;
  transition: var(--moma-transition);
}

body.theme-dark .moma-team-card {
  background: var(--moma-dark-card);
  border-color: var(--moma-dark-border);
}

.moma-team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #E0E0E0;
}

.moma-team-info {
  padding: 24px;
}

.moma-team-role {
  color: var(--moma-coral);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.moma-team-quote {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.theme-dark .moma-team-quote {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Pricing Grid */
.moma-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.moma-pricing-card {
  background: var(--moma-light-card);
  border: 1px solid var(--moma-light-border);
  border-radius: var(--moma-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--moma-transition);
}

body.theme-dark .moma-pricing-card {
  background: var(--moma-dark-card);
  border-color: var(--moma-dark-border);
}

.moma-pricing-card.featured {
  border: 2px solid var(--moma-coral);
  transform: scale(1.03);
  box-shadow: var(--moma-shadow-hover);
}

.moma-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--moma-coral);
  margin: 16px 0;
}

.moma-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--moma-gray-text);
}

.moma-feature-list {
  list-style: none;
  margin: 20px 0;
}

.moma-feature-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.moma-day-experience-banner {
  background: linear-gradient(135deg, var(--moma-coral) 0%, #E03838 100%);
  color: #FFF;
  padding: 40px;
  border-radius: var(--moma-radius-lg);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 69, 69, 0.3);
}

.moma-day-experience-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.moma-day-experience-banner p {
  max-width: 650px;
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* Footer */
.moma-footer {
  background: var(--moma-dark);
  color: #E0E0E0;
  padding: 80px 5% 40px 5%;
  border-top: 1px solid var(--moma-dark-border);
}

.moma-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.moma-footer-col h4 {
  color: #FFF;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.moma-footer-links {
  list-style: none;
}

.moma-footer-links li {
  margin-bottom: 10px;
}

.moma-footer-links a {
  opacity: 0.7;
}

.moma-footer-links a:hover {
  opacity: 1;
  color: var(--moma-coral);
}

.moma-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .moma-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .moma-nav-links {
    display: none;
  }

  .moma-hero {
    padding-top: 120px;
  }

  .moma-pricing-card.featured {
    transform: none;
  }
}

/* DYNAMIC IDENTITY BANNER SECTION */
.moma-identity-section {
  padding: 24px 5%;
  background: transparent;
  text-align: center;
}

body.theme-dark .moma-identity-section {
  background: transparent;
}

.moma-identity-heading {
  font-family: var(--moma-font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.moma-underline {
  text-decoration: underline;
  text-decoration-color: var(--moma-coral);
  text-underline-offset: 8px;
  text-decoration-thickness: 8px;
}

.moma-dynamic-typewriter {
  color: var(--moma-coral);
  font-weight: 800;
  letter-spacing: -0.06em;
}

/* ORGANIC BLOBS & MERGE ANIMATION STAGE (COMPACT & TIGHT SPACING) */
.moma-blob-stage-section {
  position: relative;
  min-height: 70vh;
  padding: 10px 5% 50px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}

.moma-sticky-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.moma-blob-stage-heading {
  margin-bottom: 28px;
  text-align: center;
}

.moma-blob-stage-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moma-blob-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* REAL LIQUID METABALL OUTLINE LAYER (100% GPU FRAGMENT SHADER) */
.moma-blob-shapes-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: url(#momaLiquidOutline);
  -webkit-filter: url(#momaLiquidOutline);
  pointer-events: none;
  z-index: 1;
  isolation: isolate;
  will-change: transform;
}

.moma-blob-shape {
  position: absolute;
  background: var(--moma-coral) !important;
  border: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1.35s cubic-bezier(0.25, 1, 0.35, 1);
  pointer-events: none;
}

.moma-shape-1 {
  width: 340px;
  height: 320px;
  left: 2%;
  top: 90px;
  border-radius: 38% 62% 38% 62% / 62% 38% 62% 38%;
  animation: momaBorderOnlyMorph1 5.5s infinite ease-in-out;
}

.moma-shape-2 {
  width: 400px;
  height: 340px;
  left: 50%;
  margin-left: -200px;
  top: 80px;
  border-radius: 58% 42% 58% 42% / 42% 58% 42% 58%;
  animation: momaBorderOnlyMorph2 6.8s infinite ease-in-out;
}

.moma-shape-3 {
  width: 340px;
  height: 320px;
  right: 2%;
  top: 90px;
  border-radius: 42% 58% 42% 58% / 58% 42% 58% 42%;
  animation: momaBorderOnlyMorph3 6.0s infinite ease-in-out;
}

/* REAL LIQUID WATER DROP FUSION (100% CONTINUOUS CURVATURE, ZERO STRAIGHT EDGES, DEAD-CENTERED) */
.moma-blob-container.is-touching .moma-shape-1,
.moma-blob-container.is-merged .moma-shape-1 {
  transform: translate3d(200px, 0px, 0) scale(1.05, 1.0);
}

.moma-blob-container.is-touching .moma-shape-2,
.moma-blob-container.is-merged .moma-shape-2 {
  transform: translate3d(0px, 0px, 0) scale(1.15, 1.04);
}

.moma-blob-container.is-touching .moma-shape-3,
.moma-blob-container.is-merged .moma-shape-3 {
  transform: translate3d(-200px, 0px, 0) scale(1.05, 1.0);
}

/* CRISP TEXTS LAYER */
.moma-blob-texts-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.moma-blob-text-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.moma-text-1 {
  width: 340px;
  height: 320px;
  left: 2%;
  top: 90px;
}

.moma-text-2 {
  width: 400px;
  height: 340px;
  left: 50%;
  margin-left: -200px;
  top: 80px;
}

.moma-text-3 {
  width: 340px;
  height: 320px;
  right: 2%;
  top: 90px;
}

.moma-text-merged {
  position: absolute;
  width: min(760px, 92%);
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0 !important;
  visibility: hidden;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
  transition: opacity 0.4s ease 0.15s, visibility 0.4s ease 0.15s;
}

.moma-blob-text-item h3 {
  font-family: var(--moma-font-main);
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  color: #121214;
  margin: 0;
  letter-spacing: -0.04em;
}

body.theme-dark .moma-blob-text-item h3 {
  color: #FFFFFF;
}

.moma-merged-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0px;
}

.moma-merged-subheading {
  font-family: var(--moma-font-main);
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-weight: 600;
  line-height: 1.1;
  color: #121214;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: -2px;
}

body.theme-dark .moma-merged-subheading {
  color: #FFFFFF;
}

.moma-text-merged h2 {
  font-family: var(--moma-font-heading);
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  font-weight: 800;
  color: #121214;
  letter-spacing: -0.08em;
  line-height: 0.95;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

body.theme-dark .moma-text-merged h2 {
  color: #FFFFFF;
}

/* TEXT TRANSITIONS IN FUSION STATES - ZERO OVERLAP */
.moma-blob-container.is-touching .moma-text-1,
.moma-blob-container.is-touching .moma-text-2,
.moma-blob-container.is-touching .moma-text-3,
.moma-blob-container.is-merged .moma-text-1,
.moma-blob-container.is-merged .moma-text-2,
.moma-blob-container.is-merged .moma-text-3 {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.moma-blob-container.is-merged .moma-text-merged {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

/* SECCIÓN 3: BIENVENIDO A LA TRIBU MOMA (ESPACIADO COMPACTO Y COMPACTO EN VERTICAL) */
.moma-tribu-centered-section {
  position: relative;
  background: transparent !important;
  color: #121214;
  min-height: auto;
  padding: 0 5% 50px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

body.theme-dark .moma-tribu-centered-section {
  background: transparent !important;
  color: #FFFFFF;
}

.moma-tribu-centered-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.moma-tribu-large-title {
  font-family: var(--moma-font-heading);
  font-size: clamp(2.5rem, 8.5vw, 7.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.08em;
  color: #121214 !important;
  margin: 0 0 24px 0;
  text-align: center;
  width: 100%;
}

body.theme-dark .moma-tribu-large-title {
  color: #FFFFFF !important;
}

.moma-tribu-video-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 30px;
  color: #FFFFFF;
  font-family: var(--moma-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* CONTINUOUS AUTONOMOUS LIQUID MORPHING (100% CURVATURE ON ALL AXES) */
@keyframes momaBorderOnlyMorph1 {

  0%,
  100% {
    border-radius: 38% 62% 38% 62% / 62% 38% 62% 38%;
  }

  25% {
    border-radius: 50% 50% 50% 50% / 42% 58% 42% 58%;
  }

  50% {
    border-radius: 62% 38% 62% 38% / 38% 62% 38% 62%;
  }

  75% {
    border-radius: 42% 58% 42% 58% / 50% 50% 50% 50%;
  }
}

@keyframes momaBorderOnlyMorph2 {

  0%,
  100% {
    border-radius: 58% 42% 58% 42% / 42% 58% 42% 58%;
  }

  25% {
    border-radius: 44% 56% 44% 56% / 54% 46% 54% 46%;
  }

  50% {
    border-radius: 40% 60% 40% 60% / 58% 42% 58% 42%;
  }

  75% {
    border-radius: 52% 48% 52% 48% / 44% 56% 44% 56%;
  }
}

@keyframes momaBorderOnlyMorph3 {

  0%,
  100% {
    border-radius: 42% 58% 42% 58% / 58% 42% 58% 42%;
  }

  25% {
    border-radius: 56% 44% 56% 44% / 46% 54% 46% 54%;
  }

  50% {
    border-radius: 40% 60% 40% 60% / 42% 58% 42% 58%;
  }

  75% {
    border-radius: 48% 52% 48% 52% / 54% 46% 54% 46%;
  }
}

/* MOBILE & TABLET RESPONSIVE STYLING (< 992px & < 768px) */
@media (max-width: 992px) {
  .moma-tribu-split-section {
    margin: 24px 16px;
  }

  .moma-blob-stage-section {
    min-height: 540px;
    padding: 20px 3% 40px 3%;
  }

  .moma-blob-container {
    min-height: 500px;
    width: 100%;
  }

  .moma-shape-1 {
    width: 290px;
    height: 270px;
    left: 2%;
    top: 10px;
  }

  .moma-shape-2 {
    width: 320px;
    height: 290px;
    left: 50%;
    margin-left: -160px;
    top: -10px;
  }

  .moma-shape-3 {
    width: 290px;
    height: 270px;
    right: 2%;
    top: 10px;
  }

  .moma-text-1 {
    width: 280px;
    height: 260px;
    left: 2%;
    top: 15px;
    padding: 0 16px;
  }

  .moma-text-2 {
    width: 310px;
    height: 280px;
    left: 50%;
    margin-left: -155px;
    top: -5px;
    padding: 0 16px;
  }

  .moma-text-3 {
    width: 280px;
    height: 260px;
    right: 2%;
    top: 15px;
    padding: 0 16px;
  }

  .moma-text-merged {
    width: 94%;
    max-width: 580px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0 20px;
  }

  .moma-tribu-large-title {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }
}

@media (max-width: 768px) {
  .moma-blob-stage-section {
    min-height: 520px;
    padding: 10px 2% 30px 2%;
  }

  .moma-blob-container {
    min-height: 480px;
  }

  /* Centered stack layout on mobile screens */
  .moma-shape-1 {
    width: 260px;
    height: 240px;
    left: 50%;
    margin-left: -130px;
    top: 0px;
  }

  .moma-shape-2 {
    width: 280px;
    height: 260px;
    left: 50%;
    margin-left: -140px;
    top: 100px;
  }

  .moma-shape-3 {
    width: 260px;
    height: 240px;
    left: 50%;
    margin-left: -130px;
    top: 210px;
  }

  .moma-text-1 {
    width: 250px;
    height: 230px;
    left: 50%;
    margin-left: -125px;
    top: 5px;
    padding: 0 12px;
  }

  .moma-text-2 {
    width: 270px;
    height: 250px;
    left: 50%;
    margin-left: -135px;
    top: 105px;
    padding: 0 12px;
  }

  .moma-text-3 {
    width: 250px;
    height: 230px;
    left: 50%;
    margin-left: -125px;
    top: 215px;
    padding: 0 12px;
  }

  .moma-blob-text-item h3 {
    font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  }

  .moma-merged-subheading {
    font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  }

  .moma-text-merged h2 {
    font-size: clamp(2.0rem, 7vw, 3.2rem);
  }

  .moma-text-merged {
    width: 92%;
    max-width: 360px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0 16px;
  }

  .moma-blob-container.is-touching .moma-shape-1,
  .moma-blob-container.is-merged .moma-shape-1,
  .moma-blob-container.is-touching .moma-shape-2,
  .moma-blob-container.is-merged .moma-shape-2,
  .moma-blob-container.is-touching .moma-shape-3,
  .moma-blob-container.is-merged .moma-shape-3 {
    transform: translate3d(0, 0, 0) scale(1.15);
    left: 50%;
    margin-left: -140px;
    top: 110px;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }

  .moma-tribu-centered-section {
    min-height: auto;
    padding: 45px 4% 35px 4%;
  }

  .moma-tribu-large-title {
    font-size: clamp(2.1rem, 8.5vw, 3.5rem);
    line-height: 1.0;
  }
}

.moma-section-no-solo {
  padding: 16px 5% 0px 5%;
}

.moma-section-si-somos {
  padding: 10px 5% 50px 5%;
}

.moma-identity-block-two {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.moma-reveal-heading {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.moma-reveal-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.moma-reveal-heading.visible.reveal-0 {
  transition-delay: 0.1s;
}

.moma-reveal-heading.visible.reveal-1 {
  transition-delay: 0.4s;
}

.moma-reveal-heading.visible.reveal-2 {
  transition-delay: 0.8s;
}

.moma-reveal-heading.visible.reveal-3 {
  transition-delay: 1.2s;
}

.moma-reveal-heading.visible.reveal-4 {
  transition-delay: 1.6s;
}

.moma-identity-dark {
  color: #121214;
}

body.theme-dark .moma-identity-dark {
  color: #FFFFFF;
}

/* SECCIÓN BANNER ECOSISTEMA MOMA (ANCHO MÍNIMO AJUSTADO AL CONTENIDO Y CENTRADO) */
.moma-ecosystem-banner-section {
  background-color: #FFFFFF;
  color: #121214;
  border-radius: 42px;
  width: fit-content;
  max-width: calc(100% - 64px);
  margin: 32px auto;
  padding: 70px 56px;
  position: relative;
  box-sizing: border-box;
}

body.theme-dark .moma-ecosystem-banner-section {
  background-color: #0E0E12;
  color: #FFFFFF;
}

.moma-ecosystem-banner-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}

.moma-ecosystem-header-block {
  margin-bottom: 52px;
}

.moma-ecosystem-badge-tag {
  font-family: var(--moma-font-heading);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 800;
  color: var(--moma-coral);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
}

.moma-badge-red-line {
  display: inline-block;
  width: 38px;
  height: 3px;
  background-color: var(--moma-coral);
  margin-right: 14px;
  border-radius: 2px;
}

.moma-ecosystem-hero-headline {
  font-family: var(--moma-font-heading);
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 800;
  color: #121214;
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 0 0 28px 0;
  max-width: 1020px;
}

body.theme-dark .moma-ecosystem-hero-headline {
  color: #FFFFFF;
}

.moma-ecosystem-body-desc {
  font-family: var(--moma-font-main);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: #121214;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 880px;
}

body.theme-dark .moma-ecosystem-body-desc {
  color: #FFFFFF;
}

/* SECCIÓN POR QUÉ BUSINESS HUB CON FONDO TRANSPARENTE */
.moma-section-transparent-bg {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

body.theme-dark .moma-section-transparent-bg {
  background-color: transparent !important;
}

.moma-ecosystem-body-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.moma-desc-bold-highlight {
  font-weight: 800 !important;
  color: #121214 !important;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem) !important;
  margin-top: 12px !important;
}

body.theme-dark .moma-desc-bold-highlight {
  color: #FFFFFF !important;
}

/* BLOQUE DE CONTACTO CON TELÉFONOS Y MAPA INTERACTIVO GOOGLE MAPS */
.moma-contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  width: 100%;
}

.moma-contact-info-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body.theme-dark .moma-contact-info-card {
  background: #18181E;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.moma-contact-card-title {
  font-family: var(--moma-font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #121214;
  margin: 0 0 10px 0;
  letter-spacing: -0.04em;
}

body.theme-dark .moma-contact-card-title {
  color: #FFFFFF;
}

.moma-contact-card-desc {
  font-family: var(--moma-font-main);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(18, 18, 20, 0.78);
  margin: 0 0 28px 0;
}

body.theme-dark .moma-contact-card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.moma-contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.moma-contact-item-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F6F6F4;
  padding: 16px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #121214;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.moma-contact-item-badge:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

body.theme-dark .moma-contact-item-badge {
  background: #22222A;
  color: #FFFFFF;
}

body.theme-dark .moma-contact-item-badge:hover {
  background: #2A2A34;
}

.moma-contact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.moma-contact-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moma-contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--moma-coral);
}

.moma-contact-val {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.moma-map-wrapper-card {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
  .moma-contact-location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* GRID 3/5 Y 2/5 PARA SECCIÓN POR QUÉ BUSINESS HUB */
.moma-business-hub-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 52px;
  align-items: start;
  width: 100%;
}

.moma-tribu-join-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

body.theme-dark .moma-tribu-join-card {
  background: #18181E;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.moma-tribu-join-title {
  font-family: var(--moma-font-heading);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: #121214;
  margin: 0 0 14px 0;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

body.theme-dark .moma-tribu-join-title {
  color: #FFFFFF;
}

.moma-tribu-join-text {
  font-family: var(--moma-font-main);
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(18, 18, 20, 0.82);
  margin: 0 0 24px 0;
}

body.theme-dark .moma-tribu-join-text {
  color: rgba(255, 255, 255, 0.82);
}

.moma-tribu-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  margin-top: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.moma-tribu-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .moma-business-hub-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* GRID DE 8 TARJETAS CON BLANCO ROTO Y REVELADO SECUENCIAL */
.moma-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.moma-ecosystem-card {
  background-color: #F6F6F4;
  border-radius: 20px;
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.moma-ecosystem-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.moma-ecosystem-card.is-revealed:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

body.theme-dark .moma-ecosystem-card {
  background-color: #18181E;
  border-color: rgba(255, 255, 255, 0.06);
}

.moma-card-icon-badge {
  width: 48px;
  height: 48px;
  background-color: var(--moma-coral);
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(226, 91, 69, 0.22);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.moma-ecosystem-card:hover .moma-card-icon-badge {
  transform: scale(1.08);
}

body.theme-dark .moma-card-icon-badge {
  background-color: var(--moma-coral);
}

/* 1. COWORKING: Simula texto escribiéndose en pantalla */
.moma-icon-coworking .type-line-1,
.moma-icon-coworking .type-line-2 {
  transition: stroke-dasharray 0.4s ease, opacity 0.4s ease;
}

.moma-ecosystem-card:hover .moma-icon-coworking .type-line-1 {
  animation: momaTypeLine1 0.5s ease forwards;
}

.moma-ecosystem-card:hover .moma-icon-coworking .type-line-2 {
  animation: momaTypeLine2 0.5s ease 0.15s forwards;
}

@keyframes momaTypeLine1 {
  0% {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    opacity: 0;
  }

  100% {
    stroke-dasharray: 10;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes momaTypeLine2 {
  0% {
    stroke-dasharray: 6;
    stroke-dashoffset: 6;
    opacity: 0;
  }

  100% {
    stroke-dasharray: 6;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* 2. BROKER: Mitad del escudo relleno en fondo blanco */
.moma-icon-broker .shield-half-fill {
  fill: transparent;
  opacity: 0;
  transition: fill 0.35s ease, opacity 0.35s ease;
}

.moma-ecosystem-card:hover .moma-icon-broker .shield-half-fill {
  fill: #FFFFFF;
  opacity: 0.92;
}

/* 3. MARKETING: La flecha sube en diagonal y reaparece suave */
.moma-icon-marketing .arrow-group {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.moma-ecosystem-card:hover .moma-icon-marketing .arrow-group {
  animation: momaArrowFly 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes momaArrowFly {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(12px, -12px);
    opacity: 0;
  }

  50% {
    transform: translate(-12px, 12px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* 4. ACADEMY: Giro 100% fluido y continuo sin saltos ni tirones */
.moma-icon-academy .cap-group {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.65s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.moma-ecosystem-card:hover .moma-icon-academy .cap-group {
  transform: translateY(-6px) rotate(360deg);
}

.moma-card-icon-badge svg {
  overflow: visible;
}

/* 5. REAL ESTATE: Humo de 8px de longitud que se desvanece sutilmente */
.moma-icon-realestate .smoke-puff-1,
.moma-icon-realestate .smoke-puff-2 {
  opacity: 0;
  transform: translateY(0);
}

.moma-ecosystem-card:hover .moma-icon-realestate .smoke-puff-1 {
  animation: momaSmoke8px 1.5s infinite ease-out;
}

.moma-ecosystem-card:hover .moma-icon-realestate .smoke-puff-2 {
  animation: momaSmoke8px 1.5s infinite ease-out 0.6s;
}

@keyframes momaSmoke8px {
  0% {
    transform: translateY(1px);
    opacity: 0;
  }

  35% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(-8px);
    opacity: 0;
  }
}

/* 6. INVERSIÓN: Vuelo de flecha hacia arriba en hover; desvanecimiento limpio sin retroceso en hover-out */
.moma-icon-inversion .target-arrow-headon {
  opacity: 0;
  transform: translateY(16px);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.25s ease;
}

.moma-ecosystem-card:hover .moma-icon-inversion .target-arrow-headon {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.2s ease;
}

/* 7. EVENTOS: Estrella de 5 puntas estática que se rellena de blanco */
.moma-icon-eventos .star-shape {
  transition: fill 0.35s ease, stroke 0.35s ease;
  transform: none !important;
}

.moma-ecosystem-card:hover .moma-icon-eventos .star-shape {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  transform: none !important;
}

/* 8. MENTORÍAS: El signo más aumenta de grosor */
.moma-icon-mentorias {
  transform-origin: center;
  transition: transform 0.4s ease;
}

.moma-icon-mentorias .plus-line {
  transition: stroke-width 0.35s ease;
}

.moma-ecosystem-card:hover .moma-icon-mentorias {
  transform: rotate(90deg);
}

.moma-ecosystem-card:hover .moma-icon-mentorias .plus-line {
  stroke-width: 4px;
}

.moma-card-title {
  font-family: var(--moma-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #121214;
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
}

body.theme-dark .moma-card-title {
  color: #FFFFFF;
}

.moma-card-subtitle {
  font-family: var(--moma-font-main);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: #121214;
  margin: 0;
  max-width: 220px;
}

body.theme-dark .moma-card-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
  .moma-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .moma-ecosystem-banner-section {
    margin: 20px 16px;
    border-radius: 28px;
    padding: 50px 5% 45px 5%;
  }

  .moma-ecosystem-header-block {
    margin-bottom: 36px;
  }

  .moma-ecosystem-badge-tag {
    font-size: clamp(0.8rem, 3.2vw, 0.95rem);
    margin-bottom: 18px;
  }

  .moma-badge-red-line {
    width: 28px;
    height: 3px;
    margin-right: 10px;
  }

  .moma-ecosystem-hero-headline {
    font-size: clamp(2.1rem, 8.5vw, 3.6rem);
    margin-bottom: 20px;
    line-height: 1.05;
  }

  .moma-ecosystem-body-desc {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .moma-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .moma-ecosystem-card {
    padding: 30px 20px 28px 20px;
  }
}