/* ─── Design tokens ───────────────────────────────────────────────────── */
:root {
  --brand-blue: #0d73b2;
}

/* ─── Layout helpers ──────────────────────────────────────────────────── */
.guides-section {
  /* Estira la sección a todo el viewport */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  /* Ajusta tu fondo */
  background: url('../assets/1.x/general_assets/landing_page/card_background.png') 
              no-repeat center top/cover;
  padding: 5rem 0;
  z-index: 0;
}

.landing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;  /* ⭐️ aquí ocurre la magia: centra las filas */
  align-items: flex-start;  /* evita que se estiren verticalmente */
}

/* ─── Card base ───────────────────────────────────────────────────────── */
.landing-card {
  position: relative;
  width: 280px;
  height: 320px;
  border-radius: 20px;
  background: #fafafa;
  border: 1px solid #95c0ff;
  border-radius: 8px;
  overflow: hidden;               /* mantiene las esquinas redondeadas */
  text-decoration: none;          /* sin subrayado */
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.10),
    0 0 12px rgba(255, 255, 255, 0.30);
  z-index: 1;                    /* sobre el fondo */
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 1rem;
}

.landing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 0 16px rgba(255, 255, 255, 0.35);
}

/* ─── Illustration ───────────────────────────────────────────────────── */
.landing-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;                 
  z-index: 0;                   
}

/* ─── Gradient overlay ───────────────────────────────────────────────── */
.landing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    var(--brand-blue) 0%,
    rgba(13, 115, 178, 0.85) 25%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: 0;                    
}

.landing-card:hover::after {
  transform: scaleY(1.15);       
}

/* ─── Title ───────────────────────────────────────────────────────────── */
.landing-card .title {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  pointer-events: none;          
  white-space: nowrap;
  z-index: 1;
}

/* ─── Accessibility: focus visible ───────────────────────────────────── */
.landing-card:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 4px;
}
