/* Imperdur Sport: portada y página de patrocinio deportivo */
.sport-announcement {
  position: sticky;
  top: var(--imperdur-header-height, 76px);
  z-index: 996;
  overflow: hidden;
  max-height: 110px;
  background: #171717;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  transition: max-height .3s ease, opacity .25s ease;
}

.sport-announcement.is-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.sport-announcement-inner {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
}

.sport-announcement-main {
  display: flex;
  min-width: 0;
  min-height: 56px;
  flex: 1;
  align-items: center;
  gap: 20px;
  color: #fff;
  cursor: pointer;
}

.sport-announcement-message {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-size: 14px;
}

.sport-announcement-badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px 10px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #e03a3c;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.sport-announcement-cta {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 7px 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}

.sport-announcement-main:hover {
  color: #fff;
}

.sport-announcement-main:hover .sport-announcement-cta,
.sport-announcement-main:focus-visible .sport-announcement-cta {
  border-color: #e03a3c;
  background: #e03a3c;
}

.sport-announcement-close {
  display: inline-flex;
  width: 46px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.sport-announcement-close:hover,
.sport-announcement-close:focus-visible {
  background: rgba(224, 58, 60, .15);
  color: #ff5658;
}

.sport-banner {
  padding: 72px 0;
  background: #f8f9fa;
}

.sport-banner-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.sport-banner-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.sport-banner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 13, .94) 0%, rgba(8, 10, 13, .74) 42%, rgba(8, 10, 13, .15) 78%);
}

.sport-banner-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  max-width: 650px;
  padding: 64px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}

.sport-banner-kicker,
.sport-eyebrow,
.sport-section-kicker {
  display: inline-block;
  color: #e03a3c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sport-banner-overlay h2 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.sport-banner-overlay p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.65;
}

.sport-banner-button,
.sport-primary-button,
.instagram-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: #e03a3c;
  color: #fff;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sport-banner-button:hover,
.sport-primary-button:hover,
.instagram-button:hover {
  background: #bf2d30;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 58, 60, .28);
}

.footer-sport-link {
  color: #fff;
  font-weight: 700;
}

.footer-sport-link i {
  margin-right: 6px;
  color: #e03a3c;
}

.footer-sport-link:hover {
  color: #e03a3c;
}

/* Página Imperdur Sport */
.imperdur-sport-page {
  background: #fff;
}

.sport-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.sport-hero > img,
.sport-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sport-hero > img {
  object-fit: cover;
  object-position: center 38%;
}

.sport-hero-shade {
  background: linear-gradient(90deg, rgba(9, 11, 14, .94) 0%, rgba(9, 11, 14, .70) 44%, rgba(9, 11, 14, .18) 100%);
}

.sport-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  color: #fff;
}

.sport-hero-content h1 {
  margin: 12px 0 6px;
  color: #fff;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: .98;
}

.sport-hero-content > p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(21px, 2.5vw, 30px);
}

.sport-intro {
  padding: 100px 0;
}

.sport-intro h2,
.sport-closing h2 {
  margin: 10px 0 0;
  color: #171717;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.sport-intro p {
  color: #555;
  font-size: 17px;
  line-height: 1.75;
}

.sport-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.sport-value {
  display: flex;
  padding: 24px 20px;
  align-items: center;
  gap: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
  color: #222;
  font-size: 17px;
  font-weight: 700;
}

.sport-value i {
  color: #e03a3c;
  font-size: 26px;
}

.sport-teams {
  padding: 95px 0;
  background: #f6f7f8;
}

.sport-team-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  margin-top: 48px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .09);
}

.sport-team-card-reverse .sport-team-gallery {
  order: 2;
}

.sport-team-card-reverse .sport-team-copy {
  order: 1;
}

.sport-team-gallery {
  display: grid;
  grid-template-columns: 1fr 180px;
  min-height: 610px;
  gap: 4px;
  background: #161616;
}

.sport-team-gallery a,
.sport-team-gallery img {
  display: block;
  width: 100%;
  height: 100%;
}

.sport-team-gallery img {
  object-fit: cover;
}

.sport-team-gallery-mamanangay .sport-team-main img {
  object-position: center 38%;
}

.sport-team-detail img {
  object-position: center;
}

.sport-team-copy {
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
}

.sport-team-copy h3 {
  margin: 10px 0 20px;
  color: #151515;
  font-size: clamp(31px, 3vw, 43px);
}

.sport-team-copy p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.sport-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.sport-achievement {
  display: flex;
  min-height: 116px;
  padding: 17px 12px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ececec;
  border-bottom: 3px solid #e03a3c;
  border-radius: 11px;
  background: linear-gradient(145deg, #fff, #f7f7f7);
  text-align: left;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .05);
}

.sport-achievement-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 58, 60, .10);
  color: #e03a3c;
  font-size: 16px;
}

.sport-achievement strong,
.sport-achievement small {
  display: block;
}

.sport-achievement strong {
  color: #e03a3c;
  font-size: 17px;
  line-height: 1.2;
}

.sport-achievement small {
  margin-top: 4px;
  color: #555;
  font-size: 11px;
  line-height: 1.25;
}

.sport-cheer {
  margin-top: 10px;
  color: #e03a3c !important;
  font-weight: 800;
}

.sport-prospect {
  padding: 100px 0;
}

.sport-prospect-grid {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.sport-prospect-photo img {
  display: block;
  width: 100%;
  border: 5px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .38);
}

.sport-prospect-copy h2 {
  margin: 8px 0 4px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
}

.sport-prospect-tags {
  margin-bottom: 26px;
  color: #e03a3c !important;
  font-weight: 700;
}

.sport-prospect-copy > p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.75;
}

.sport-follow-box {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.sport-follow-box h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 23px;
}

.sport-follow-box > p {
  color: rgba(255, 255, 255, .72);
}

.sport-follow-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.sport-follow-goals > div {
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 13px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .22);
}

.sport-follow-goals strong {
  color: #fff;
  font-size: 24px;
}

.sport-follow-goals span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.3;
}

.instagram-button {
  background: linear-gradient(90deg, #833ab4, #e1306c, #f77737);
}

.instagram-button:hover {
  background: linear-gradient(90deg, #6d3196, #c72860, #dc642c);
}

.instagram-handle {
  display: inline-block;
  margin-left: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.sport-closing {
  padding: 95px 0;
}

.sport-closing p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: #666;
  font-size: 18px;
}

@media (max-width: 1199.98px) {
  .sport-team-card {
    grid-template-columns: 1fr;
  }

  .sport-team-card-reverse .sport-team-gallery,
  .sport-team-card-reverse .sport-team-copy {
    order: initial;
  }

  .sport-team-gallery {
    min-height: 560px;
  }
}

@media (max-width: 991.98px) {
  .sport-banner-panel,
  .sport-banner-overlay {
    min-height: 500px;
  }

  .sport-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sport-prospect-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sport-prospect-photo {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .sport-announcement-inner {
    min-height: 76px;
    gap: 6px;
  }

  .sport-announcement-main {
    min-height: 76px;
    gap: 10px;
  }

  .sport-announcement-message {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .sport-announcement-badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .sport-announcement-cta {
    padding: 6px 9px;
    font-size: 10px;
  }

  .sport-banner {
    padding: 48px 0;
  }

  .sport-banner-panel {
    min-height: 570px;
  }

  .sport-banner-panel > img {
    height: 58%;
    object-position: center 32%;
  }

  .sport-banner-panel::after {
    background: linear-gradient(0deg, rgba(8, 10, 13, .98) 0%, rgba(8, 10, 13, .94) 48%, rgba(8, 10, 13, .12) 82%);
  }

  .sport-banner-overlay {
    min-height: 570px;
    padding: 310px 26px 34px;
    justify-content: flex-end;
  }

  .sport-banner-overlay p {
    font-size: 16px;
  }

  .sport-hero {
    min-height: 620px;
  }

  .sport-hero > img {
    object-position: 55% center;
  }

  .sport-hero-shade {
    background: linear-gradient(0deg, rgba(9, 11, 14, .96) 0%, rgba(9, 11, 14, .64) 60%, rgba(9, 11, 14, .20) 100%);
  }

  .sport-hero-content {
    padding-top: 290px;
    align-self: flex-end;
  }

  .sport-intro,
  .sport-teams,
  .sport-prospect,
  .sport-closing {
    padding: 72px 0;
  }

  .sport-team-gallery {
    grid-template-columns: 1fr 120px;
    min-height: 470px;
  }

  .sport-team-copy {
    padding: 34px 26px;
  }

  .sport-achievements {
    grid-template-columns: 1fr;
  }

  .sport-achievement {
    min-height: 86px;
    justify-content: flex-start;
    padding: 15px 18px;
  }

  .sport-achievement strong {
    font-size: 18px;
  }

  .sport-follow-goals {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479.98px) {
  .sport-announcement-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sport-announcement-message span:last-child {
    display: none;
  }

  .sport-values-grid {
    grid-template-columns: 1fr;
  }

  .sport-team-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sport-team-main img {
    height: 390px;
  }

  .sport-team-detail img {
    height: 210px;
  }

  .instagram-button {
    width: 100%;
  }

  .instagram-handle {
    display: block;
    margin: 12px 0 0;
    text-align: center;
  }
}
