/* =============================================
   CONTACT PAGE — Figma node 49:2590
   Title + subtitle · País/Região/Marca selectors · spa cards grid
   ============================================= */

.page-contactos {
  background: var(--color-bg);
  /* Header pill is fixed; push content below it (no hero on this page) */
  padding-top: clamp(140px, 14vw, 180px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.contactos__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1;
}

.contactos__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 31px;
  color: var(--color-dark);
  text-align: center;
  margin: 0 auto clamp(36px, 4vw, 56px);
  max-width: 540px;
}

/* -----------------------------------------------
   SELECTORS — País / Região / Marca
   ----------------------------------------------- */
.contactos__filters {
  display: flex;
  gap: 14px;   /* Figma: 14px between the three selectors */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.contactos__select {
  position: relative;
  display: block;
  width: 182px;
  max-width: 100%;
}

/* The "+" affordance on the right (Figma) */
.contactos__select::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  pointer-events: none;
}

.contactos__select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 33px;
  padding: 0 30px 0 14px;
  background: rgba(209, 186, 158, 0.69);
  border: 1px solid rgba(79, 52, 27, 0.13);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brown);
  cursor: pointer;
  line-height: 33px;
}

.contactos__select select:focus {
  outline: none;
  border-color: rgba(79, 52, 27, 0.4);
}

/* Hide options disabled by the cascade (JS toggles [hidden]) */
.contactos__select select option[hidden] { display: none; }

/* -----------------------------------------------
   SPA CARDS GRID — 3 columns
   ----------------------------------------------- */
.contactos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 16px;   /* Figma: 22px between rows, 16px between columns */
}

@media (max-width: 900px) {
  .contactos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contactos__grid { grid-template-columns: 1fr; }
}

.spa-card {
  background: #d3ba9b;
  border-radius: 22px;
  padding: 31px 32px;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Hidden by the filters */
.spa-card[hidden] { display: none; }

.spa-card__name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #452910;
  margin: 0;
}

.spa-card__collection {
  display: block;
  font-weight: 700;
}

.spa-card__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spa-card__email,
.spa-card__phone {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  color: var(--color-brown);
  text-decoration: none;
  width: fit-content;
}
.spa-card__email:hover,
.spa-card__phone:hover { text-decoration: underline; }

.contactos__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-brown);
  font-size: 18px;
  padding: 32px 0;
}
