/* Misión, visión y valores — rediseño */

.ft-mvv-hero {
  --ft-mvv-teal: #14b8ba;
  position: relative;
  isolation: isolate;
  min-height: clamp(28rem, 58vh, 36rem);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(145deg, #12162e 0%, #21264a 55%, #2a3058 100%);
}

.ft-mvv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ft-mvv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.04);
  animation: ft-mvv-ken 22s ease-in-out infinite alternate;
}

.ft-mvv-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 16, 40, 0.96) 0%, rgba(14, 24, 52, 0.88) 42%, rgba(14, 30, 58, 0.45) 70%, rgba(14, 30, 58, 0.22) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(20, 184, 186, 0.2), transparent 48%);
}

.ft-mvv-hero-glow {
  position: absolute;
  inset: -15% auto auto 30%;
  width: min(36rem, 60vw);
  height: min(36rem, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 186, 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  animation: ft-mvv-glow 10s ease-in-out infinite;
}

.ft-mvv-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.25rem 0 4rem;
}

.ft-mvv-hero-copy {
  max-width: 44rem;
}

.ft-mvv-hero-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ft-mvv-teal);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ft-mvv-hero-kicker.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease 0.05s, transform 0.65s ease 0.05s;
}

.ft-mvv-hero-title.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-hero-title-accent {
  color: var(--ft-mvv-teal);
}

.ft-mvv-hero-heart {
  display: inline-flex;
  color: var(--ft-mvv-teal);
  font-size: 0.5em;
  animation: ft-mvv-pulse 2.6s ease-in-out infinite;
}

.ft-mvv-hero-heart-svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
}

.ft-mvv-hero-lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease 0.1s, transform 0.65s ease 0.1s;
}

.ft-mvv-hero-lead.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-hero-accent {
  color: var(--ft-mvv-teal);
  font-weight: 700;
}

.ft-mvv-hero-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}

.ft-mvv-hero-jumps.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-hero-jumps a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ft-mvv-hero-jumps a:hover {
  background: rgba(20, 184, 186, 0.22);
  border-color: var(--ft-mvv-teal);
  transform: translateY(-2px);
  color: #fff;
}

.ft-mvv-hero-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ft-mvv-hero-features li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--ft-mvv-feat-delay, 0s);
}

.ft-mvv-hero-features li.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-hero-feature-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(20, 184, 186, 0.16);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(20, 184, 186, 0.35);
  position: relative;
  z-index: 1;
}

.ft-mvv-hero-feature-icon .ft-icon {
  display: grid !important;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transform: none;
  position: relative;
  z-index: 2;
}

.ft-mvv-hero-feature-icon .ft-icon::before {
  display: block;
  line-height: 1;
  margin: 0;
}

.ft-mvv-hero-features strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
}

.ft-mvv-hero-features span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.ft-mvv-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  line-height: 0;
  color: #f4f7fb;
  pointer-events: none;
}

.ft-mvv-hero-wave svg {
  width: 100%;
  height: 84px;
  display: block;
}

.ft-mvv-hero + .ft-subnav {
  position: relative;
  z-index: 6;
  margin-top: -2.75rem;
  background: transparent;
  border: 0;
  padding: 0 1rem 0.35rem;
}

.ft-mvv-hero + .ft-subnav .ft-subnav-inner {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: max-content;
  margin: 0 auto;
  padding: 0.4rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(18, 38, 72, 0.14);
}

.ft-mvv-hero + .ft-subnav .ft-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ft-navy);
}

.ft-mvv-hero + .ft-subnav .ft-subnav-link.is-active {
  background: var(--ft-red);
  color: #fff;
}

/* Mission / Vision bands */
.ft-mvv-panels {
  padding: 3rem 0 1rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(20, 184, 186, 0.08), transparent 42%),
    #f4f7fb;
}

.ft-mvv-band--mission,
.ft-mvv-band--vision,
#ft-mvv-values {
  scroll-margin-top: 6rem;
}

.ft-mvv-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ft-mvv-band.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-band--vision {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ft-mvv-band-media {
  position: relative;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 18rem;
  box-shadow: 0 20px 44px rgba(18, 38, 72, 0.14);
}

.ft-mvv-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.ft-mvv-band.is-visible:hover .ft-mvv-band-media img {
  transform: scale(1.05);
}

.ft-mvv-band-num {
  position: absolute;
  left: 1rem;
  bottom: 0.6rem;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.ft-mvv-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.25rem;
}

.ft-mvv-band-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-red);
}

.ft-mvv-band--vision .ft-mvv-band-kicker {
  color: #3b6bb3;
}

.ft-mvv-band-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.95rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--ft-navy);
  line-height: 1.15;
}

.ft-mvv-band-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #d5f4f5;
  color: var(--ft-red);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.ft-mvv-band--vision .ft-mvv-band-icon {
  background: #e8effc;
  color: #3b6bb3;
}

.ft-mvv-band-icon .ft-icon {
  display: grid !important;
  place-items: center;
  width: 100%;
  height: 100%;
}

.ft-mvv-band-text {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ft-text-soft);
  max-width: 38rem;
}

.ft-mvv-band-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ft-mvv-band-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(33, 38, 74, 0.08);
  color: var(--ft-navy);
  font-size: 0.78rem;
  font-weight: 750;
  box-shadow: 0 6px 16px rgba(18, 38, 72, 0.05);
}

.ft-mvv-band--mission .ft-mvv-band-tags .ft-icon {
  color: var(--ft-red);
  font-size: 0.8rem;
}

.ft-mvv-band--vision .ft-mvv-band-tags .ft-icon {
  color: #3b6bb3;
  font-size: 0.8rem;
}

/* Seal bridge */
.ft-mvv-seal {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 1.75rem;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ft-mvv-seal.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-seal-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #21264a;
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 38, 72, 0.22);
}

.ft-mvv-seal-inner img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 0.25rem;
}

.ft-mvv-seal-inner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Values */
.ft-mvv-values {
  padding: 2rem 0 3rem;
  background: #f4f7fb;
}

.ft-mvv-section-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-red);
}

.ft-mvv-section-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--ft-navy);
  line-height: 1.2;
}

.ft-mvv-section-title span {
  color: var(--ft-red);
}

.ft-mvv-values-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ft-mvv-values-head.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-values-lead {
  margin: 0.85rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ft-text-soft);
}

.ft-mvv-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.ft-mvv-value {
  position: relative;
  background: #fff;
  border: 1px solid rgba(33, 38, 74, 0.07);
  border-radius: 1.25rem;
  padding: 1.45rem 1.25rem 1.35rem;
  box-shadow: 0 12px 28px rgba(18, 38, 72, 0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
  transition-delay: var(--ft-mvv-card-delay, 0s);
}

.ft-mvv-value.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(18, 38, 72, 0.12);
}

.ft-mvv-value-index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(33, 38, 74, 0.28);
}

.ft-mvv-value-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 0.95rem;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.ft-mvv-value-icon .ft-icon {
  display: grid !important;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.ft-mvv-value[data-tone='teal'] .ft-mvv-value-icon { background: #d5f4f5; color: #14b8ba; }
.ft-mvv-value[data-tone='blue'] .ft-mvv-value-icon { background: #e8effc; color: #3b6bb3; }
.ft-mvv-value[data-tone='green'] .ft-mvv-value-icon { background: #e8f7ef; color: #2f9d63; }
.ft-mvv-value[data-tone='gold'] .ft-mvv-value-icon { background: #fff3d8; color: #d4a017; }
.ft-mvv-value[data-tone='violet'] .ft-mvv-value-icon { background: #f1e9ff; color: #7a4fcf; }
.ft-mvv-value[data-tone='coral'] .ft-mvv-value-icon { background: #ffe8e4; color: #e06b5a; }

.ft-mvv-value[data-tone='teal'] .ft-mvv-value-rule { background: #14b8ba; }
.ft-mvv-value[data-tone='blue'] .ft-mvv-value-rule { background: #3b6bb3; }
.ft-mvv-value[data-tone='green'] .ft-mvv-value-rule { background: #2f9d63; }
.ft-mvv-value[data-tone='gold'] .ft-mvv-value-rule { background: #d4a017; }
.ft-mvv-value[data-tone='violet'] .ft-mvv-value-rule { background: #7a4fcf; }
.ft-mvv-value[data-tone='coral'] .ft-mvv-value-rule { background: #e06b5a; }

.ft-mvv-value h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ft-navy);
}

.ft-mvv-value p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ft-text-soft);
}

.ft-mvv-value-rule {
  display: block;
  width: 2.4rem;
  height: 3px;
  border-radius: 999px;
}

/* CTA */
.ft-mvv-cta {
  padding: 0 0 3.75rem;
  background: #f4f7fb;
}

.ft-mvv-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 88% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 70% 100%, rgba(15, 40, 80, 0.22) 0%, transparent 60%),
    linear-gradient(115deg, #0d9ea3 0%, #14b8ba 38%, #1ac4c6 62%, #0e8f95 100%);
  box-shadow:
    0 22px 48px rgba(20, 184, 186, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ft-mvv-cta-banner.is-visible {
  opacity: 1;
  transform: none;
}

.ft-mvv-cta-media {
  position: relative;
  margin: 0;
  min-height: 14rem;
  isolation: isolate;
}

.ft-mvv-cta-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 42%,
      rgba(20, 184, 186, 0.18) 62%,
      rgba(14, 143, 149, 0.72) 82%,
      #0e8f95 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 40, 70, 0.12) 0%,
      transparent 35%,
      transparent 70%,
      rgba(13, 40, 70, 0.18) 100%
    );
}

.ft-mvv-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.8s ease;
}

.ft-mvv-cta-banner.is-visible:hover .ft-mvv-cta-media img {
  transform: scale(1.04);
}

.ft-mvv-cta-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.4rem, 3.5vw, 2.4rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(
      105deg,
      rgba(14, 143, 149, 0.55) 0%,
      rgba(20, 184, 186, 0.12) 28%,
      transparent 55%
    );
}

.ft-mvv-cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(8, 60, 70, 0.18);
}

.ft-mvv-cta-title span {
  color: #eafdff;
}

.ft-mvv-cta-copy p {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32rem;
}

.ft-mvv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ft-mvv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ft-mvv-cta-btn:hover {
  transform: translateY(-2px);
}

.ft-mvv-cta-btn--teal {
  background: #fff;
  color: #0f8f93;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.ft-mvv-cta-btn--teal:hover {
  color: #0c7478;
}

.ft-mvv-cta-btn--navy {
  background: #21264a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.ft-mvv-cta-btn--navy:hover {
  color: #fff;
}

@keyframes ft-mvv-ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes ft-mvv-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes ft-mvv-glow {
  0%, 100% { opacity: 0.7; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(4%, 3%); }
}

@media (max-width: 980px) {
  .ft-mvv-band,
  .ft-mvv-band--vision {
    grid-template-columns: 1fr;
  }

  .ft-mvv-band--vision .ft-mvv-band-media {
    order: -1;
  }

  .ft-mvv-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-mvv-cta-banner {
    grid-template-columns: 1fr;
  }

  .ft-mvv-cta-media::after {
    background:
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 45%,
        rgba(20, 184, 186, 0.35) 72%,
        #0e8f95 100%
      );
  }

  .ft-mvv-cta-copy {
    background:
      linear-gradient(
        180deg,
        rgba(14, 143, 149, 0.45) 0%,
        transparent 40%
      );
  }
}

@media (max-width: 900px) {
  .ft-mvv-hero-features {
    grid-template-columns: 1fr;
  }

  .ft-mvv-hero + .ft-subnav .ft-subnav-inner {
    border-radius: 1.25rem;
    max-width: 100%;
  }

  .ft-mvv-seal-inner {
    flex-direction: column;
    text-align: center;
    border-radius: 1.35rem;
    padding: 1.1rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .ft-mvv-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-mvv-hero-bg img,
  .ft-mvv-hero-heart,
  .ft-mvv-hero-glow,
  .ft-mvv-hero-kicker,
  .ft-mvv-hero-title,
  .ft-mvv-hero-lead,
  .ft-mvv-hero-jumps,
  .ft-mvv-hero-features li,
  .ft-mvv-band,
  .ft-mvv-seal,
  .ft-mvv-values-head,
  .ft-mvv-value,
  .ft-mvv-cta-banner {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
