/**
 * Grupo Bolt — Holding Gateway Page
 * Modern, orange-accented, minimal company selector.
 * Cards: full image + orange overlay + text on top.
 */

/* ─── Orange palette ────────────────────────────────────────── */
:root {
  --bolt-orange: #F37021;
  --bolt-orange-dark: #D4600E;
  --bolt-orange-light: #FF8C42;
  --bolt-black: #0A0A0A;
}

/* ─── Gateway Container ─────────────────────────────────────── */
.holding-gateway {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bolt-black);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.holding-gateway::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Orange glow top-right */
.holding-gateway::after {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── Logo ──────────────────────────────────────────────────── */
.holding-gateway__logo {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.holding-gateway__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .holding-gateway__logo-img { height: 130px; }
  .holding-gateway__logo { margin-bottom: 72px; }
}

/* ─── Cards Container ───────────────────────────────────────── */
.holding-gateway__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .holding-gateway__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ─── Gateway Card — Full image + orange overlay ────────────── */
.gateway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease-out;
}

.gateway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(243, 112, 33, 0.15);
}

@media (min-width: 768px) {
  .gateway-card { min-height: 440px; }
}

/* Background image — covers entire card */
.gateway-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gateway-card:hover .gateway-card__bg {
  transform: scale(1.08);
}

/* Dark, sober overlay with transparency */
.gateway-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(243, 112, 33, 0.24) 0%,
      rgba(243, 112, 33, 0.42) 36%,
      rgba(18, 10, 6, 0.72) 58%,
      rgba(8, 8, 8, 0.96) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 140, 66, 0.30) 0%,
      rgba(243, 112, 33, 0.18) 28%,
      rgba(10, 10, 10, 0.08) 54%,
      rgba(10, 10, 10, 0.46) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.54) 0%,
      rgba(0, 0, 0, 0.18) 34%,
      rgba(0, 0, 0, 0) 62%
    );
  transition: background 0.45s ease-out, opacity 0.45s ease-out;
}

.gateway-card:hover .gateway-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(243, 112, 33, 0.30) 0%,
      rgba(243, 112, 33, 0.50) 36%,
      rgba(18, 10, 6, 0.78) 58%,
      rgba(8, 8, 8, 0.98) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 140, 66, 0.38) 0%,
      rgba(243, 112, 33, 0.24) 28%,
      rgba(10, 10, 10, 0.12) 54%,
      rgba(10, 10, 10, 0.54) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.22) 34%,
      rgba(0, 0, 0, 0) 62%
    );
}

/* Content — sits on top of overlay */
.gateway-card__content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.gateway-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.gateway-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 22px rgba(0,0,0,0.60);
}

.gateway-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.98);
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.52);
}

.gateway-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  background: var(--bolt-orange);
  border: none;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.3s ease-out, transform 0.3s ease-out;
}

.gateway-card:hover .gateway-card__cta {
  background: var(--bolt-orange-light);
  transform: translateX(4px);
}

/* ─── Footer ────────────────────────────────────────────────── */
.holding-gateway__footer {
  margin-top: 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.holding-gateway__footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin: 0;
}

.holding-gateway__credits {
  margin-top: 8px !important;
  font-size: 0.6875rem !important;
  color: rgba(255,255,255,0.6) !important;
}

.holding-gateway__credits a {
  color: var(--bolt-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-out;
}

.holding-gateway__credits a:hover {
  color: var(--bolt-orange-light);
}

@media (min-width: 768px) {
  .holding-gateway__footer { margin-top: 72px; }
}
