/* Campaña visual: El mundo te espera */
.story-art {
  isolation: isolate;
  display: block;
  min-height: 570px;
  border-radius: 30px 30px 110px 30px;
  background: #073d56;
  box-shadow: 0 30px 70px rgba(4, 48, 67, .22);
  overflow: hidden;
  position: relative;
}

.story-art::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.story-art::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px 18px 92px 18px;
  z-index: 3;
  pointer-events: none;
}

.story-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.story-art:hover > img { transform: scale(1.035); }

.story-art-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 31, 49, .08) 22%, rgba(3, 31, 49, .28) 52%, rgba(3, 31, 49, .92) 100%), linear-gradient(90deg, rgba(3, 31, 49, .58), transparent 66%);
}

.story-art-copy {
  position: absolute;
  z-index: 4;
  left: 54px;
  right: 48px;
  bottom: 48px;
  color: #fff;
}

.story-art-copy .story-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: static;
  color: #a8f0eb;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.story-art-copy .story-brand::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--aqua);
}

.story-art-copy p {
  position: static;
  margin: 12px 0;
  color: #fff;
  font: 700 clamp(3.6rem, 6vw, 5.6rem)/.87 "Playfair Display", serif;
  letter-spacing: -.045em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.story-art-copy small {
  display: block;
  color: #e3f6f5;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.story-art-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 11px 17px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  transition: transform .2s, background .2s;
}

.story-art-copy a:hover {
  transform: translateY(-2px);
  background: #dff9f7;
}

.story-art-copy a span {
  position: static;
  color: var(--teal);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .story-art {
    min-height: 540px;
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .story-art {
    min-height: 470px;
    border-radius: 24px 24px 72px 24px;
  }

  .story-art::before {
    inset: 14px;
    border-radius: 14px 14px 58px 14px;
  }

  .story-art-copy {
    left: 34px;
    right: 30px;
    bottom: 34px;
  }

  .story-art-copy p { font-size: clamp(3.35rem, 17vw, 4.7rem); }
  .story-art-copy small { max-width: 260px; line-height: 1.45; }
  .story-art-copy a { margin-top: 18px; }
}
