/* =========================================
   REGALOS CORPORATIVOS — estilos de página
   ========================================= */

/* Hero variante corp */
.corp-page #promo-hero {
  background:
    radial-gradient(circle at top left, rgba(185, 77, 40, 0.24), transparent 30%),
    linear-gradient(140deg, rgba(20, 39, 54, 0.78), rgba(13, 28, 41, 0.58)),
    url("../img/mk_banner_new.jpg") center / cover no-repeat;
  min-height: clamp(320px, 48vh, 480px);
}

.corp-page #promo-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  margin-bottom: 0.75rem;
}

.corp-page #promo-hero .lead {
  color: rgba(255, 248, 239, 0.85);
  font-size: clamp(0.97rem, 1.4vw, 1.1rem);
}

/* bg-light override para el fondo de la página */
.landing-homologated .bg-light {
  background: transparent !important;
}

/* =========================================
   CAROUSEL (#hotCarousel)
   ========================================= */
#hotCarousel {
  --banner-ratio: 16 / 5;
  --banner-max-h: 460px;
}

#hotCarousel .carousel-inner {
  width: 100%;
  aspect-ratio: var(--banner-ratio);
  max-height: var(--banner-max-h);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: 0 12px 40px rgba(13, 45, 74, 0.12);
}

#hotCarousel .carousel-item {
  height: 100%;
  background: transparent;
}

#hotCarousel .carousel-item .row {
  height: 100%;
  margin: 0;
}

#hotCarousel .carousel-item .row > [class*="col-"] {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#hotCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(255, 252, 246, 0.96);
}

#hotCarousel .carousel-item .p-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

#hotCarousel .carousel-item .p-4 h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

#hotCarousel .carousel-control-prev,
#hotCarousel .carousel-control-next {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
  opacity: 1;
}

#hotCarousel .carousel-control-prev-icon,
#hotCarousel .carousel-control-next-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(18, 60, 85, 0.12);
  background-size: 38%;
  backdrop-filter: blur(6px);
}

/* =========================================
   SHOWCASE MOSAIC
   ========================================= */
.landing-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at top left, rgba(18, 60, 85, 0.04), transparent 24%);
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-areas:
    "main side1 side2"
    "main side1 side3";
  gap: 1rem;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(24, 33, 47, 0.07);
  box-shadow: 0 8px 28px rgba(13, 45, 74, 0.09);
  min-height: 220px;
  background: rgba(255, 252, 246, 0.92);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.24s ease;
}

.mosaic-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(24, 33, 47, 0.14);
  border-color: rgba(185, 77, 40, 0.2);
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.mosaic-tile:hover img {
  transform: scale(1.05);
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 52, 0.06) 20%, rgba(7, 31, 52, 0.64) 100%);
}

.tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 1rem 1.1rem;
}

.tile-caption h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.tile-caption p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  opacity: 0.92;
}

.tile-lg { grid-area: main; min-height: 420px; }
.tile-md { grid-area: side1; min-height: 420px; }
.tile-sm:nth-of-type(3) { grid-area: side2; }
.tile-sm:nth-of-type(4) { grid-area: side3; }

/* =========================================
   CATEGORY BLOCKS
   ========================================= */
.category-block {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.35rem 2rem;
  border: 1px solid rgba(24, 33, 47, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 6px 24px rgba(13, 45, 74, 0.07);
  margin-bottom: 1.25rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.24s ease;
}

.category-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(24, 33, 47, 0.12);
  border-color: rgba(185, 77, 40, 0.16);
}

.category-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.category-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 1.35rem;
  max-width: 860px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.cat-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 47, 0.06);
  box-shadow: 0 8px 20px rgba(13, 45, 74, 0.1);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.cat-img:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 32px rgba(13, 45, 74, 0.15);
}

/* =========================================
   WORK GRID
   ========================================= */
.work-grid {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.35rem 2rem;
  border: 1px solid rgba(24, 33, 47, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 6px 24px rgba(13, 45, 74, 0.07);
  margin-bottom: 1.25rem;
}

.work-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 47, 0.06);
  box-shadow: 0 8px 20px rgba(13, 45, 74, 0.1);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.work-img:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 32px rgba(13, 45, 74, 0.15);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .showcase-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "side1 side1"
      "side2 side3";
  }

  .tile-lg,
  .tile-md { min-height: 240px; }

  .cat-img,
  .work-img { height: 220px; }
}

@media (max-width: 767.98px) {
  #hotCarousel .carousel-inner { border-radius: 18px; }

  .showcase-mosaic { gap: 0.65rem; }

  .tile-sm { min-height: 150px; }

  .tile-caption h2 { font-size: 0.9rem; }
  .tile-caption p  { font-size: 0.78rem; }

  .cat-img,
  .work-img { height: 170px; }

  .category-block,
  .work-grid { padding: 1.3rem 1rem 1.5rem; }
}
