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

:root {
  --cream: #FFFBF6;
  --cream-dark: #F5E9DA;
  --gold: #C9920A;
  --gold-light: #E8B84A;
  --brown: #5C3A21;
  --brown-soft: #7A5235;
  --chocolate: #24150E;
  --white: #FFFFFF;
  --text: #24150E;
  --text-light: #5C4636;
  --muted: #8B7355;
  --green: #2F6B2F;
  --shadow: 0 8px 30px rgba(36, 21, 14, 0.09);
  --shadow-hover: 0 14px 40px rgba(36, 21, 14, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--chocolate);
}
a { text-decoration: none; color: inherit; transition: 0.2s ease; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92, 58, 33, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
}
.logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text span { color: var(--gold); font-weight: 400; }
.logo-com { color: var(--gold) !important; font-size: 0.82em; font-weight: 400 !important; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 8px;
}
.nav > a:hover { color: var(--brown); background: rgba(201, 146, 10, 0.08); }
.btn-nav {
  background: var(--brown) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 6px;
}
.btn-nav:hover { background: var(--chocolate) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
  padding: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #D4A017, #B8860B);
  color: var(--chocolate);
  box-shadow: 0 4px 18px rgba(184, 134, 11, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(184, 134, 11, 0.42);
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 35%, rgba(201, 146, 10, 0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 88% 15%, rgba(232, 160, 120, 0.1) 0%, transparent 42%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201, 146, 10, 0.14);
  color: var(--brown);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.1rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header.light h2,
.section-header.light .section-desc { color: #fff; }
.section-badge {
  display: inline-block;
  background: rgba(201, 146, 10, 0.14);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.section-header.light .section-badge {
  background: rgba(255,255,255,0.14);
  color: var(--gold-light);
}
.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* SEO intro */
.section-seo-intro,
.section-seo-extra,
.section-faq { background: var(--white); }
.content-block {
  max-width: 700px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin-bottom: 18px;
}
.content-block h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin: 26px 0 10px;
}
.content-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.content-block a { color: var(--gold); font-weight: 600; }
.content-block a:hover { text-decoration: underline; }

/* Qué es */
.section-que-es { background: var(--white); }
.que-es-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 36px;
  align-items: center;
}
.que-es-text p {
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 1.03rem;
  line-height: 1.75;
}
.que-es-text strong { color: var(--brown); }
.que-es-card {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(201, 146, 10, 0.18);
}
.card-icon { font-size: 2.8rem; margin-bottom: 12px; }
.que-es-card h3 { font-size: 1.3rem; color: var(--brown); margin-bottom: 10px; }
.que-es-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Receta */
.section-receta {
  background: linear-gradient(165deg, #4A3020 0%, var(--chocolate) 100%);
  color: #fff;
}
.receta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.receta-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px 18px;
  transition: 0.2s ease;
}
.receta-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.receta-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.receta-item h3 { font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.receta-item p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.55; }

/* Sabores */
.section-sabores { background: var(--cream); }
.sabores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}
a.sabor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px 12px 16px;
  border: 1px solid rgba(92, 58, 33, 0.06);
  box-shadow: 0 2px 12px rgba(36, 21, 14, 0.05);
  min-height: 142px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.sabor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 146, 10, 0.4);
}
.sabor-pending {
  border-style: dashed;
  background: #FFFdf8;
  opacity: 0.92;
}
.sabor-emoji { font-size: 2.1rem; margin-bottom: 8px; line-height: 1; }
.sabor-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 8px;
  line-height: 1.25;
}
.sabor-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--brown);
  background: rgba(201, 146, 10, 0.14);
  padding: 3px 9px;
  border-radius: 50px;
  margin-top: auto;
}
.sabor-badge.ok {
  background: rgba(47, 107, 47, 0.12);
  color: var(--green);
}
.sabores-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

/* Puntos de venta */
.section-puntos {
  background: linear-gradient(165deg, #3A281A 0%, #1A100A 100%);
  overflow: hidden;
}
.puntos-subtitle {
  color: var(--gold-light);
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
}
.puntos-grid-abiertos {
  max-width: 760px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.punto-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: 0.2s ease;
}
.punto-card:hover { background: rgba(255,255,255,0.12); }
.punto-city {
  display: inline-block;
  background: var(--gold);
  color: var(--chocolate);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.punto-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.punto-dir, .punto-horario {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 5px;
  line-height: 1.45;
}
.punto-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.puntos-ciudades-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.ciudad-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 18px;
  min-height: 150px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.ciudad-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(232, 184, 74, 0.4);
  transform: translateY(-3px);
}
.ciudad-card .punto-city { margin-bottom: 10px; }
.ciudad-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.ciudad-card .punto-dir {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  margin: 0 0 12px;
  flex: 1;
  line-height: 1.4;
}
.ciudad-card .punto-link {
  margin-top: auto;
  color: var(--gold-light);
  font-size: 0.86rem;
}

.ciudades-busqueda { margin: 48px 0 36px; text-align: center; }
.ciudades-title { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.ciudades-desc { color: rgba(255,255,255,0.68); margin-bottom: 20px; font-size: 0.98rem; }
.ciudades-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ciudad-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold-light);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.ciudad-tag:hover {
  background: rgba(201, 146, 10, 0.22);
  color: #fff;
  border-color: var(--gold);
}

.franquicia-cta {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 44px 28px;
  border: 1px dashed rgba(255,255,255,0.18);
  margin-top: 40px;
}
.franquicia-cta h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.franquicia-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Ready */
.section-ready { background: var(--cream-dark); padding: 80px 0; }
.ready-box {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 146, 10, 0.1);
}
.ready-badge {
  display: inline-block;
  background: rgba(201, 146, 10, 0.12);
  color: var(--brown);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.ready-content h2 { font-size: 1.75rem; margin-bottom: 12px; }
.ready-content p { color: var(--text-light); margin-bottom: 22px; line-height: 1.7; }
.cake-emoji {
  font-size: 6.5rem;
  text-align: center;
  filter: drop-shadow(0 8px 16px rgba(36,21,14,0.12));
}

/* FAQ */
.faq-item {
  margin-bottom: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(92, 58, 33, 0.08);
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--brown); }
.faq-item p { color: var(--text-light); font-size: 0.98rem; line-height: 1.65; }

/* Footer */
.footer {
  background: var(--chocolate);
  color: rgba(255,255,255,0.78);
  padding: 52px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  max-width: 280px;
  opacity: 0.7;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-links a { font-size: 0.88rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--gold-light); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 8px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== INTERNAL PAGES ===== */
.page-main {
  padding: 100px 0 72px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,146,10,0.06) 0%, transparent 55%),
    var(--cream);
  min-height: 100vh;
}
.page-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px 44px;
  box-shadow: 0 6px 32px rgba(36, 21, 14, 0.08);
  border: 1px solid rgba(92, 58, 33, 0.06);
}
.page-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}
.page-breadcrumb a:hover { text-decoration: underline; }

.page-card h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--chocolate);
  margin-bottom: 14px;
  line-height: 1.3;
  word-wrap: break-word;
}
.page-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}
.page-meta {
  display: inline-block;
  background: rgba(47, 107, 47, 0.1);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.page-card h2 {
  font-size: 1.28rem;
  color: var(--brown);
  margin: 32px 0 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(92, 58, 33, 0.08);
}
.page-card p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 1.02rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-list {
  list-style: none;
  margin: 14px 0 8px;
  padding: 0;
}
.page-list li {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.55;
  border: 1px solid rgba(92, 58, 33, 0.05);
  font-size: 0.95rem;
}
.page-list li strong { color: var(--brown); }
.page-list a { color: var(--gold); font-weight: 600; }

.page-cta-box {
  background: linear-gradient(145deg, #FFFBF6, #F5E9DA);
  border-radius: 18px;
  padding: 32px 24px;
  margin-top: 36px;
  border: 1px solid rgba(201, 146, 10, 0.2);
  text-align: center;
}
.page-cta-box h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-size: 1.2rem;
}
.page-cta-box p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.page-cta-box .btn {
  margin: 6px;
}
.page-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.55;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(92,58,33,0.1);
    box-shadow: var(--shadow);
  }
  .nav.open > a { padding: 12px 14px; }
  .menu-toggle { display: block; }
  .que-es-grid { grid-template-columns: 1fr; }
  .receta-grid { grid-template-columns: 1fr 1fr; }
  .puntos-ciudades-grid { grid-template-columns: 1fr 1fr; }
  .ready-box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .cake-emoji { font-size: 4.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .page-card { padding: 28px 20px 32px; }
}

@media (max-width: 600px) {
  .receta-grid,
  .puntos-grid-abiertos,
  .puntos-ciudades-grid { grid-template-columns: 1fr; }
  .sabores-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
}


/* ===== Internal pages (forced clean layout) ===== */
.page-main {
  padding: 104px 0 80px !important;
  background: #F5E9DA !important;
  min-height: 100vh;
}
.page-wrap {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}
.page-card {
  display: block !important;
  background: #ffffff !important;
  border-radius: 22px !important;
  padding: 40px 36px 44px !important;
  box-shadow: 0 8px 36px rgba(36, 21, 14, 0.1) !important;
  border: 1px solid rgba(92, 58, 33, 0.08) !important;
  color: #24150E;
}
.page-breadcrumb {
  font-size: 0.82rem;
  color: #8B7355;
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #C9920A; font-weight: 600; text-decoration: none; }
.page-card h1 {
  font-size: clamp(1.55rem, 4vw, 2.05rem) !important;
  color: #24150E !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}
.page-lead {
  font-size: 1.08rem !important;
  color: #5C4636 !important;
  margin-bottom: 14px !important;
  line-height: 1.65 !important;
}
.page-meta {
  display: inline-block !important;
  background: rgba(47, 107, 47, 0.12) !important;
  color: #2F6B2F !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 7px 14px !important;
  border-radius: 10px !important;
  margin-bottom: 8px !important;
}
.page-card h2 {
  font-size: 1.25rem !important;
  color: #5C3A21 !important;
  margin: 28px 0 12px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(92, 58, 33, 0.1) !important;
}
.page-card p {
  color: #5C4636 !important;
  line-height: 1.75 !important;
  margin-bottom: 12px !important;
  font-size: 1.02rem !important;
}
.page-list {
  list-style: none !important;
  margin: 12px 0 8px !important;
  padding: 0 !important;
}
.page-list li {
  background: #FFFBF6 !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin-bottom: 10px !important;
  color: #5C4636 !important;
  line-height: 1.55 !important;
  border: 1px solid rgba(92, 58, 33, 0.08) !important;
  font-size: 0.95rem !important;
}
.page-list li strong { color: #5C3A21 !important; }
.page-cta-box {
  background: linear-gradient(145deg, #FFFBF6, #F5E9DA) !important;
  border-radius: 18px !important;
  padding: 28px 22px !important;
  margin-top: 28px !important;
  border: 1px solid rgba(201, 146, 10, 0.25) !important;
  text-align: center !important;
}
.page-cta-box h3 {
  margin: 0 0 8px !important;
  color: #24150E !important;
  font-size: 1.15rem !important;
}
.page-cta-box .btn { margin: 6px !important; }

/* Share */
.share-box {
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(92, 58, 33, 0.1) !important;
  text-align: center !important;
}
.share-label {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #8B7355 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.share-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
}
.share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 18px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  font-family: inherit !important;
  text-decoration: none !important;
  transition: transform 0.15s ease !important;
  color: #fff !important;
}
.share-btn:hover { transform: translateY(-2px); text-decoration: none !important; }
.share-wa { background: #25D366 !important; color: #fff !important; }
.share-x { background: #111111 !important; color: #fff !important; }
.share-fb { background: #1877F2 !important; color: #fff !important; }
.share-copy {
  background: #F5E9DA !important;
  color: #5C3A21 !important;
  border: 1px solid rgba(92,58,33,0.2) !important;
}

/* Cookie banner — complete */
.cookie-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  background: #24150E !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 18px 16px !important;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.28) !important;
  display: none !important;
}
.cookie-banner.is-visible {
  display: block !important;
}
.cookie-inner {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px 20px !important;
  justify-content: space-between !important;
}
.cookie-text {
  flex: 1 1 280px !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.88) !important;
  margin: 0 !important;
}
.cookie-text a {
  color: #E8B84A !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}
.cookie-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}
.cookie-btn {
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 22px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  font-family: inherit !important;
  line-height: 1 !important;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #D4A017, #B8860B) !important;
  color: #24150E !important;
}
.cookie-btn-reject {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
}
.cookie-btn-reject:hover {
  border-color: #fff !important;
}

@media (max-width: 600px) {
  .page-card { padding: 26px 18px 30px !important; }
  .cookie-inner { flex-direction: column !important; align-items: stretch !important; }
  .cookie-actions { width: 100% !important; }
  .cookie-btn { flex: 1 !important; text-align: center !important; }
}


/* City cards grid — force layout (no overlap) */
.section-puntos .puntos-ciudades-grid,
.puntos-ciudades-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  align-items: stretch !important;
}
.section-puntos a.ciudad-card,
a.ciudad-card,
.ciudad-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  position: relative !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-height: 158px !important;
  height: auto !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 16px !important;
  padding: 20px 18px !important;
  text-decoration: none !important;
  color: #fff !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
a.ciudad-card:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(232, 184, 74, 0.45) !important;
  transform: translateY(-3px) !important;
}
a.ciudad-card .punto-city {
  display: inline-block !important;
  background: #D4A017 !important;
  color: #24150E !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  padding: 4px 11px !important;
  border-radius: 50px !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  float: none !important;
}
a.ciudad-card h3 {
  display: block !important;
  width: 100% !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.05rem !important;
  color: #ffffff !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
a.ciudad-card .punto-dir {
  display: block !important;
  width: 100% !important;
  font-size: 0.84rem !important;
  color: rgba(255,255,255,0.65) !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.4 !important;
  flex: 1 1 auto !important;
}
a.ciudad-card .punto-link {
  display: inline-block !important;
  margin-top: auto !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: #E8B84A !important;
  float: none !important;
}

@media (max-width: 900px) {
  .puntos-ciudades-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .puntos-ciudades-grid {
    grid-template-columns: 1fr !important;
  }
}
