/* El Poli · Página de propuestas de diseño (versiones.html) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Karla", system-ui, sans-serif;
  color: #e8e2d6;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(46, 68, 78, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(96, 74, 48, 0.35), transparent 55%),
    #0a1115;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

a {
  color: inherit;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.page {
  flex: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 56px;
}

.page-head {
  text-align: center;
  margin-bottom: 56px;
}

.page-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a06c;
}

.page-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.page-sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  color: rgba(232, 226, 214, 0.72);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 226, 214, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 108, 0.45);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

.card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a1115;
  background: #c9a06c;
  border-radius: 999px;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 28px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.card-tagline {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a06c;
}

.card-desc {
  margin: 0 0 24px;
  font-size: 15px;
  color: rgba(232, 226, 214, 0.72);
}

.card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid rgba(232, 226, 214, 0.22);
  color: #0a1115;
  background: #e8e2d6;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.card-btn svg {
  flex: none;
}

.card-btn:hover {
  background: #c9a06c;
  border-color: #c9a06c;
  color: #0a1115;
}

.page-foot {
  margin-top: 56px;
  text-align: center;
  font-size: 13px;
  color: rgba(232, 226, 214, 0.5);
}

.page-foot a {
  color: #c9a06c;
  text-decoration: none;
}

.page-foot a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .page {
    padding: 48px 18px 40px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
