/* ===========================
   05. POR QUÉ MULTI-MODELO
=========================== */
#multi-modelo {
  padding: 120px 0;
  background: var(--white);
}

.mm-header {
  text-align: center;
  margin-bottom: 64px;
}

.mm-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  align-items: stretch;
}

.mm-card {
  min-width: 0;
  border: 1px solid rgba(107,31,184,0.12);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3.5vw, 36px);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(107,31,184,0.1);
  border-color: rgba(107,31,184,0.25);
}

.mm-card-logo {
  min-width: 0;
  min-height: 36px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.mm-card-logo img,
.mm-card-logo svg {
  max-width: 100%;
  flex-shrink: 0;
}

.mm-card-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mm-card-logo.anthropic svg {
  height: 24px;
  width: min(180px, 100%);
  fill: var(--carbon);
}

.mm-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--carbon);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

.mm-card p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--gray-text);
  overflow-wrap: anywhere;
}

.mm-card-tag {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.2;
  font-weight: 700;
  background: rgba(107,31,184,0.07);
  color: var(--purple-primary);
  overflow-wrap: anywhere;
}

.mm-close {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--purple-deep), #3d1580);
  border-radius: var(--radius-card);
  color: #fff;
}

.mm-close p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.mm-close strong {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 860px) {
  #multi-modelo { padding: 88px 0; }
  .mm-header { margin-bottom: 40px; }
  .mm-grid { grid-template-columns: 1fr; gap: 20px; }
  .mm-card { padding: 32px 28px; }
  .mm-card-tag { margin-top: 22px; }
}

@media (max-width: 480px) {
  #multi-modelo { padding: 72px 0; }
  .mm-card { padding: 28px 22px; }
  .mm-card h3 { font-size: 28px; }
  .mm-card p { font-size: 18px; }
  .mm-close { padding: 30px 22px; }
  .mm-close p { font-size: 16px; }
}
