/* Cards, products, forms, filters */

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Home promo cards — label bar over photo bottom */
.promo-card {
  position: relative;
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 46, 74, 0.14);
}

.promo-card.is-static,
.promo-card.is-static:hover {
  cursor: default;
  pointer-events: none;
  transform: none;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}

.promo-card.is-static:hover .promo-card__media img {
  transform: none;
}

.promo-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.promo-card:hover .promo-card__media img {
  transform: scale(1.04);
}

.promo-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.promo-card__label .arrow {
  color: #9aa3ad;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
}

/* Feature cards with description */
.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 46, 74, 0.14);
}

.feature-card.is-static,
.feature-card.is-static:hover {
  cursor: default;
  pointer-events: none;
  transform: none;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}

.feature-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.feature-card__body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.feature-card__body h3 .arrow {
  color: var(--text-muted);
  font-weight: 500;
}

.feature-card__body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* App card */
.app-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
  background: #c9dff5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.app-card__bg {
  position: absolute;
  inset: 0;
}

.app-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.88) 55%, #fff 100%);
}

.app-card__content {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.app-card__top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.app-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

.app-card__phone {
  width: min(140px, 42%);
  margin: 0.25rem auto 0;
  position: relative;
  z-index: 1;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.store-btn small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1;
}

/* Product cards (inner pages) */
.product-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card__media {
  aspect-ratio: 1;
  background: #f5f8fb;
  padding: 0.75rem;
  display: grid;
  place-items: center;
}

.product-card__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-card__body h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.price-from {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-header);
}

.price--free {
  color: #14804a;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e8f4ff;
  color: var(--blue-header);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange-cta);
  color: #fff;
}

.btn-secondary {
  background: var(--blue-header);
  color: #fff;
}

.btn-teal {
  background: var(--teal-buy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blue-header);
  border: 2px solid var(--blue-header);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--text);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--blue-header);
  border-color: var(--blue-header);
  color: #fff;
}

.attraction-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 1rem 1.05rem;
}

.attraction-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.attraction-card .height {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-header);
  margin: 0 0 0.35rem;
}

.attraction-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.form-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.highlight-strip {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .highlight-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  text-align: center;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 1.15rem;
}

.highlight-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 0.65rem;
}

.highlight-item h3 {
  font-size: 0.98rem;
  font-weight: 800;
}

.highlight-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.gallery-3 {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gallery-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-3 img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.mapa-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  background: #fff;
}

.mapa-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.premium-benefits {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .premium-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.premium-benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 0.95rem;
}

.premium-benefit img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.premium-benefit h3 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
}

.premium-benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .two-col {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contact-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-header);
}

.accordion details {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
}

.calendar-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.day-chip {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 0.55rem 0.75rem;
  font-weight: 800;
  font-size: 0.88rem;
}

.day-chip span {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
}
