/* ========================= */
/* COV HERO                  */
/* ========================= */
.cov-hero {
  position: relative;
  color: #fff;
  background: var(--blue);
  overflow: hidden;
  padding: 0;
}

.cov-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../media/fondo.jpeg") center / cover no-repeat;
  mix-blend-mode: overlay;
  opacity: .55;
  filter: saturate(1.1) contrast(1.05);
}

.cov-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 360px at 10% 20%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(800px 360px at 75% 10%, rgba(216,15,95,.20), transparent 60%),
    linear-gradient(135deg, rgba(11,47,102,.94), rgba(11,47,102,.78));
}

.cov-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding-top: 90px;
  padding-bottom: 110px;
  align-items: center;
}

.cov-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.60);
  font-weight: 900;
  font-size: 13px;
}
.cov-breadcrumb a {
  color: rgba(255,255,255,.60);
  transition: color .15s;
}
.cov-breadcrumb a:hover { color: #fff; }
.cov-breadcrumb i { font-size: 10px; }

.cov-hero__content .kicker { margin-bottom: 14px; }

.cov-hero__content h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -.4px;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
}

.cov-hero__content p {
  margin: 0 0 20px;
  font-size: 16.5px;
  color: rgba(255,255,255,.86);
  max-width: 58ch;
  line-height: 1.55;
}

.cov-hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cov-hero__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cov-hero__cardTop {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cov-hero__card h3 { margin: 0 0 6px; font-size: 16px; }
.cov-hero__card p  { margin: 0; font-size: 14px; color: rgba(255,255,255,.80); }

.cov-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cov-hero__actions .btn { flex: 1 1 140px; justify-content: center; }

/* COV HERO responsive */
@media (max-width: 980px) {
  .cov-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 72px;
    gap: 28px;
  }
  .cov-hero__content h1 { font-size: clamp(26px, 8vw, 38px); }
  .cov-hero__content p  { font-size: 15px; }
  .cov-hero__chips { gap: 8px; }
  .chip { padding: 8px 10px; font-size: 12px; }
}

@media (max-width: 560px) {
  .cov-hero__inner {
    padding-top: 72px;
    padding-bottom: 60px;
    gap: 24px;
  }
  .cov-hero__content h1 { font-size: clamp(22px, 7vw, 30px); line-height: 1.12; }
  .cov-hero__content p  { font-size: 14px; margin-bottom: 14px; }
  .cov-hero__card { padding: 16px; gap: 12px; }
  .cov-hero__chips { gap: 6px; }
  .cov-hero__actions .btn { flex-basis: 120px; }
}


/* ========================= */
/* FEATURED AREAS GRID       */
/* ========================= */
.cov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* Last two cards: centered in a 3-col grid */
.cov-card:nth-child(4) { grid-column: 1 / 2; margin-left: auto; width: 100%; }
.cov-card:nth-child(5) { grid-column: 2 / 3; margin-right: auto; width: 100%; }

.cov-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cov-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,.14);
}

.cov-card__img {
  height: 220px;
  background: var(--blue) center / cover no-repeat;
  position: relative;
  flex: 0 0 auto;
  transition: filter .22s ease;
}
.cov-card:hover .cov-card__img {
  filter: brightness(1.06) saturate(1.05);
}

.cov-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,47,102,.82) 0%, rgba(11,47,102,.25) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.cov-card__location {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #fff;
  font-weight: 1100;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.40);
}

.cov-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cov-card__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.2px;
  color: #111827;
}

.cov-card__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.55;
}

.cov-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cov-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216,15,95,.08);
  border: 1px solid rgba(216,15,95,.16);
  color: #7a0b36;
  font-weight: 1100;
  font-size: 12px;
  white-space: nowrap;
}

.cov-card__actions {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cov-card__actions .btn { font-size: 13px; padding: 10px 14px; }

.cov-card__more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 1100;
  color: var(--blue);
  font-size: 14px;
  transition: color .15s ease, gap .15s ease;
}
.cov-card:hover .cov-card__more {
  color: var(--pink);
  gap: 12px;
}

/* COV AREAS responsive */
@media (max-width: 980px) {
  .cov-grid { grid-template-columns: repeat(2, 1fr); }
  .cov-card:nth-child(4),
  .cov-card:nth-child(5) { grid-column: auto; margin: 0; }
  .cov-card:last-child:nth-child(odd) { grid-column: span 2; max-width: 560px; margin: 0 auto; }
  .cov-card__img { height: 200px; }
}

@media (max-width: 600px) {
  .cov-grid { grid-template-columns: 1fr; }
  .cov-card:last-child:nth-child(odd) { grid-column: span 1; max-width: 100%; }
  .cov-card__img { height: 180px; }
}


/* ========================= */
/* FAQ                       */
/* ========================= */
.cov-faq {
  background: linear-gradient(180deg, rgba(11,47,102,.05), rgba(216,15,95,.04));
}

.cov-faq__wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.cov-faq__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216,15,95,.08);
  border: 1px solid rgba(216,15,95,.16);
  color: #7a0b36;
  font-weight: 1100;
  font-size: 13px;
  margin-bottom: 14px;
  width: fit-content;
}

.cov-faq__left h2 { margin: 0 0 10px; }
.cov-faq__left p  { margin: 0 0 20px; color: var(--muted); font-weight: 900; line-height: 1.6; }

/* Accordion */
.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow .18s ease;
}
.faq__item.is-open {
  box-shadow: 0 14px 32px rgba(216,15,95,.10);
  border-color: rgba(216,15,95,.18);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font: inherit;
  font-weight: 1100;
  font-size: 15px;
  color: #111827;
  cursor: pointer;
  transition: color .15s ease;
}
.faq__item.is-open .faq__q { color: var(--pink); }

.faq__chev {
  flex: 0 0 auto;
  font-size: 13px;
  color: var(--muted);
  transition: transform .22s ease, color .15s ease;
}
.faq__item.is-open .faq__chev {
  transform: rotate(180deg);
  color: var(--pink);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
}
.faq__a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.65;
  font-size: 14.5px;
}
.faq__item.is-open .faq__a {
  max-height: 300px;
}

/* FAQ responsive */
@media (max-width: 980px) {
  .cov-faq__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ========================= */
/* CTA                       */
/* ========================= */
.cov-cta {
  padding: 64px 0;
  background:
    radial-gradient(900px 320px at 5% 50%, rgba(11,47,102,.08), transparent 60%),
    radial-gradient(900px 320px at 95% 50%, rgba(216,15,95,.08), transparent 60%);
}

.cov-cta__box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cov-cta__box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 200px at 0% 50%, rgba(216,15,95,.07), transparent 55%),
    radial-gradient(700px 200px at 100% 50%, rgba(11,47,102,.08), transparent 55%);
  pointer-events: none;
}
.cov-cta__box > * { position: relative; }

.cov-cta__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 1100;
  font-size: 13px;
  margin-bottom: 10px;
}

.cov-cta__left h2 { margin: 0 0 8px; font-size: clamp(20px, 2.4vw, 30px); }
.cov-cta__left p { margin: 0; color: var(--muted); font-weight: 900; max-width: 52ch; line-height: 1.55; }

.cov-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cov-cta__ghost {
  border-color: rgba(11,47,102,.20) !important;
  color: var(--blue) !important;
}

/* COV CTA responsive */
@media (max-width: 980px) {
  .cov-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
  }
  .cov-cta__kicker { margin: 0 auto 10px; }
  .cov-cta__left p { margin: 0 auto; }
  .cov-cta__actions { width: 100%; }
  .cov-cta__actions .btn { flex: 1; justify-content: center; }
}


/* ========================= */
/* NAV ACTIVE STATE          */
/* ========================= */
.nav__link--active {
  background: rgba(216,15,95,.08);
  color: var(--pink);
}

/* footer margin override */
.footer { margin-top: 0; }

.footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer__cols  { display: contents; }

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols  { display: grid; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}
