/* ═══════════════════════════════════════════════
   MISSIÓ / VISIÓ / VALORS — Widget: anigami_mvc
   ═══════════════════════════════════════════════ */

.anigami-mvc-section {
  position: relative;
}

/* ── Fila de cercles ── */
.mvc-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

/* ── Cercle ── */
.mvc-circle {
  position: relative;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  perspective: 900px;
  outline: none;
}
.mvc-circle--lg { width: 300px; height: 300px; }
.mvc-circle--sm { width: 220px; height: 220px; }

/* ── Interior (flip) ── */
.mvc-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.mvc-circle:hover .mvc-circle-inner,
.mvc-circle:focus .mvc-circle-inner {
  transform: rotateY(180deg);
}

/* ── Cara compartida ── */
.mvc-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

/* ── Davant ── */
.mvc-front {
  background: var(--color-dark);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 40px rgba(255, 255, 255, 0.07),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.mvc-circle:hover .mvc-front,
.mvc-circle:focus .mvc-front {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 40px rgba(255, 255, 255, 0.07),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
}
.mvc-front-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

/* ── Darrere ── */
.mvc-back {
  background: var(--color-dark);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 40px rgba(255, 255, 255, 0.07),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
  transform: rotateY(180deg);
  padding: 32px;
}
.mvc-back p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mvc-circle--lg { width: 220px; height: 220px; }
  .mvc-circle--sm { width: 170px; height: 170px; }
  .mvc-inner { gap: 20px; }
  .mvc-front-title { font-size: 18px; }
  .mvc-back p { font-size: 14px; }
  .mvc-circle { margin-top: 0 !important; }
	.mvc-back p{
		font-size:12px!important;
	}
}
@media (max-width: 600px) {
  /* MISSIÓ (lg) + VISIÓ (sm) primera fila; VALORS centrat sol a sota */
  .mvc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 12px;
  }
  .mvc-circle:last-child {
    grid-column: 1 / -1;
  }
  .mvc-circle--lg { width: 165px; height: 165px; }
  .mvc-circle--sm { width: 150px; height: 150px; }
  .mvc-front-title { font-size: 16px; }
  .mvc-back p { font-size: 11px!important; }
}
