@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── Variables ── */
:root {
  --negro:    #0a0a0a;
  --naranja:  #FE730E;
  --naranja2: #ff8c30;
  --blanco:   #ffffff;
  --gris:     #1a1a1a;
  --gris2:    #2a2a2a;
  --texto:    #e0e0e0;
  --radio:    1.2rem;
}

/* ── Reset ── */
*, *:before, *:after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  background-color: var(--negro);
  color: var(--texto);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Header ── */
.header {
  background-color: var(--negro);
  width: 100%;
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--gris2);
}

.logo-img {
  max-width: 22rem;
  height: auto;
  display: block;
  margin: 0 auto 1.8rem;
}

.hashtag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naranja);
  border: 1px solid var(--naranja);
  padding: 0.4rem 1.2rem;
  border-radius: 10rem;
}

/* ── Container ── */
.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

/* ── Section sublabel ── */
.section-sublabel {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: #888;
  margin-top: -0.8rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}

/* ── Section label ── */
.section-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--naranja);
  margin: 3.2rem 0 1.2rem;
}

/* ── Card base ── */
.link-card,
.link-card-featured,
.solid-card {
  display: flex;
  align-items: center;
  background-color: var(--gris);
  border: 1px solid var(--gris2);
  border-radius: var(--radio);
  overflow: hidden;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--blanco);
  transition: background-color .25s, border-color .25s, transform .18s;
}

.link-card:hover,
.link-card-featured:hover,
.solid-card:hover {
  background-color: var(--gris2);
  border-color: var(--naranja);
  transform: translateY(-2px);
}

/* ── Card image ── */
.card-img {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Card body ── */
.card-body { flex: 1; padding: 0 1.4rem; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--blanco);
}
.card-desc {
  font-size: 1.5rem;
  color: #888;
  margin-top: 0.3rem;
}

/* ── Arrow ── */
.card-arrow {
  font-size: 2rem;
  color: var(--naranja);
  padding-right: 1.6rem;
  flex-shrink: 0;
}

/* ── Featured card ── */
.link-card-featured {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1rem;
}
.featured-img-wrap {
  position: relative;
  width: 100%;
  height: 16rem;
  overflow: hidden;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.link-card-featured:hover .featured-img-wrap img { transform: scale(1.04); }

.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--naranja);
  color: var(--blanco);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 10rem;
}
.featured-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
}
.featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.2;
}
.featured-desc {
  font-size: 1.5rem;
  color: #888;
  margin-top: 0.3rem;
}

/* ── Solid card (destacada sin imagen propia, con ícono) ── */
.solid-card .card-img {
  background: var(--gris2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Botón naranja destacado (WhatsApp reservas) ── */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--naranja), var(--naranja2));
  border-radius: var(--radio);
  padding: 1.6rem 2rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--blanco);
  transition: filter .2s, transform .18s;
}
.cta-card:hover { filter: brightness(1.1); transform: translateY(-2px); }
.cta-icon { width: 5rem; height: 5rem; object-fit: contain; margin-right: 1.4rem; flex-shrink: 0; }
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.cta-desc { font-size: 1.3rem; opacity: 0.85; margin-top: 0.2rem; }

/* ── Grid 2 columnas ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.grid-card {
  display: flex;
  flex-direction: column;
  background: var(--gris);
  border: 1px solid var(--gris2);
  border-radius: var(--radio);
  overflow: hidden;
  text-decoration: none;
  color: var(--blanco);
  transition: border-color .25s, transform .18s;
}
.grid-card:hover { border-color: var(--naranja); transform: translateY(-2px); }
.grid-img { width: 100%; height: 10rem; object-fit: cover; display: block; }
.grid-body { padding: 1rem 1.2rem 1.2rem; }
.grid-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
.grid-desc { font-size: 1.4rem; color: #888; margin-top: 0.2rem; }

/* ── Teléfono / texto resaltado ── */
.phone-block {
  background: var(--gris);
  border: 1px solid var(--gris2);
  border-radius: var(--radio);
  padding: 1.8rem 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.phone-label {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 0.6rem;
}
.phone-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--naranja);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
}
.phone-number:hover { color: var(--naranja2); }

/* ── Web link ── */
.web-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: #888;
  text-decoration: none;
  margin: 2rem 0 1rem;
  transition: color .2s;
}
.web-link:hover { color: var(--naranja); }
.web-link svg { flex-shrink: 0; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--gris2);
  margin: 2.4rem 0;
}

/* ── Footer ── */
.footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gris2);
}
.footer-link img {
  max-width: 10rem;
  opacity: 0.4;
  transition: opacity .2s;
}
.footer-link:hover img { opacity: 0.7; }

/* ── Animación entrada ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.container > * {
  animation: fadeUp .4s ease both;
}
.container > *:nth-child(1)  { animation-delay: .05s; }
.container > *:nth-child(2)  { animation-delay: .10s; }
.container > *:nth-child(3)  { animation-delay: .15s; }
.container > *:nth-child(4)  { animation-delay: .20s; }
.container > *:nth-child(5)  { animation-delay: .25s; }
.container > *:nth-child(6)  { animation-delay: .30s; }
.container > *:nth-child(7)  { animation-delay: .35s; }
.container > *:nth-child(8)  { animation-delay: .40s; }
.container > *:nth-child(9)  { animation-delay: .45s; }
.container > *:nth-child(10) { animation-delay: .50s; }
.container > *:nth-child(11) { animation-delay: .55s; }
.container > *:nth-child(12) { animation-delay: .60s; }
