/* =========================
LO ESENCIAL
========================= */
.essential {
  background: var(--sand-alt);
}

.essential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.essential-card {
  background: var(--white);
  border: 1px solid var(--gold-12);
  padding: 1.5rem 1.3rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.essential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-md);
  border-color: var(--gold-24);
}

.card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-bg);
  border: 1px solid var(--gold-16);
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.6;
}

.card-icon svg circle[fill] {
  fill: var(--gold-soft);
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.services-link {
  text-align: center;
  margin-top: 2.5rem;
}

.services-link a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

.services-link a:hover {
  border-bottom-color: var(--gold-soft);
}

/* =========================
RESPONSIVE
========================= */

/* TABLET PORTRAIT: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .essential-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* MOBILE: 767px y menor */
@media (max-width: 767px) {
  .essential-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .essential-card {
    padding: 2rem 1.5rem;
  }
}
