:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #fff8eb;
  --surface-3: #efe8dc;
  --text: #1d2a24;
  --muted: #66746d;
  --primary: #0f7b5f;
  --primary-dark: #075b45;
  --accent: #f0a929;
  --line: #e5ded1;
  --shadow: 0 22px 55px rgba(29, 42, 36, .12);
  --soft-shadow: 0 12px 34px rgba(29, 42, 36, .08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 222, 209, .75);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -.03em; font-size: 1.25rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #24a879);
  color: white;
  box-shadow: 0 10px 25px rgba(15, 123, 95, .25);
}
.nav-actions { display: flex; align-items: center; gap: 18px; font-weight: 800; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 14px; padding: 8px 12px; font-weight: 900; }

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border .18s ease;
  font-size: .95rem;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 24px rgba(15, 123, 95, .22); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--surface); color: var(--primary); border: 1px solid var(--line); }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--line); }

.hero { padding: 68px 0 36px; }
.hero-marketplace {
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 169, 41, .28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(15, 123, 95, .20), transparent 34%),
    linear-gradient(180deg, #f8f3e9, #f7f4ee);
}
.hero-marketplace-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); line-height: .92; margin: 12px 0 18px; letter-spacing: -.085em; }
.hero-copy p { font-size: 1.15rem; color: var(--muted); line-height: 1.65; max-width: 680px; }
.eyebrow { color: var(--primary); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-visual { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; align-items: stretch; }
.hero-photo-card {
  min-height: 155px;
  border-radius: 30px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(15, 123, 95, .88), rgba(7, 91, 69, .96)),
    url("/assets/img/placeholder-nature.svg");
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.hero-photo-card::before { content: ""; position: absolute; inset: 20px 20px auto auto; width: 68px; height: 68px; border-radius: 20px; background: rgba(255,255,255,.12); transform: rotate(10deg); }
.hero-photo-card span { font-size: 2rem; position: relative; }
.hero-photo-card strong { font-size: 1.35rem; letter-spacing: -.04em; position: relative; }
.hero-photo-card small { color: rgba(255,255,255,.82); font-weight: 800; position: relative; }
.large-photo { grid-row: span 2; min-height: 330px; background: linear-gradient(145deg, rgba(29,42,36,.2), rgba(7,91,69,.92)), url("/assets/img/placeholder-cabana.svg"); background-size: cover; }
.hero-search-wrapper { margin-top: 26px; }

.section-heading { margin-bottom: 24px; }
.section-heading h1, .section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.06em; margin: 8px 0; line-height: 1; }
.section-heading p { color: var(--muted); line-height: 1.6; margin: 0; }
.center { text-align: center; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.results-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.search-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  align-items: end;
}
.search-panel-hero { grid-template-columns: 2fr 1fr 1fr auto; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; color: var(--muted); font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(15, 123, 95, .55); box-shadow: 0 0 0 4px rgba(15, 123, 95, .1); }
.btn-search { min-height: 50px; padding: 0 28px; }

.category-strip { display: flex; gap: 10px; overflow-x: auto; padding: 22px 0 10px; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-pill {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 11px 15px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(29,42,36,.05);
}
.category-pill.active, .category-pill:hover { border-color: rgba(15,123,95,.35); color: var(--primary); background: #f0fbf6; }

.search-section { padding: 50px 0 34px; }
.compact-top { padding-top: 34px; }
.advanced-filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  margin-bottom: 18px;
}
.results-topline { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin: 8px 4px 18px; color: var(--muted); font-weight: 850; }
.microcopy { font-size: .88rem; }
.check-featured { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 900; }
.check-featured input { width: auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.marketplace-card { transition: transform .18s ease, box-shadow .18s ease; }
.marketplace-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(29, 42, 36, .12); }
.card-media {
  min-height: 210px;
  background: var(--surface-2);
  position: relative;
  display: block;
}
.card-media img { width: 100%; height: 220px; object-fit: cover; }
.badge-row { position: absolute; left: 14px; top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge, .badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .74rem;
  font-weight: 950;
}
.badge { background: var(--accent); color: #3d2a02; }
.badge-soft { background: rgba(255,255,255,.9); color: var(--primary); }
.static-badge { position: static; margin-bottom: 12px; }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { margin: 0; font-size: 1.2rem; letter-spacing: -.035em; }
.card p { color: var(--muted); line-height: 1.55; margin: 0; }
.meta { color: var(--muted); font-size: .9rem; font-weight: 850; display: flex; gap: 8px; flex-wrap: wrap; }
.price-row { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.price-row strong { font-size: 1rem; }
.price-row span { color: var(--muted); font-weight: 850; font-size: .88rem; }
.service-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.service-list span { background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); padding: 6px 9px; border-radius: 999px; font-size: .78rem; font-weight: 850; }
.card-actions { padding: 0 18px 18px; display: flex; gap: 10px; }
.card-actions .btn { flex: 1; }

.feature-section, .business-cta-section { padding: 36px 0; }
.feature-card, .business-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.soft-card { background: linear-gradient(135deg, var(--surface-2), var(--surface)); }
.feature-card h2, .business-cta h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin: 8px 0 12px; letter-spacing: -.06em; line-height: 1; }
.feature-card p, .business-cta p { color: var(--muted); line-height: 1.65; margin: 0; max-width: 680px; }
.business-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.business-cta .eyebrow, .business-cta p { color: rgba(255,255,255,.82); }
.business-cta .btn-primary { background: white; color: var(--primary); box-shadow: none; }

.publish-hero { padding: 72px 0 42px; background: radial-gradient(circle at 18% 20%, rgba(240,169,41,.24), transparent 30%), linear-gradient(180deg, #f8f3e9, var(--bg)); }
.publish-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 32px; align-items: center; }
.publish-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .95; margin: 12px 0 18px; letter-spacing: -.08em; }
.publish-hero p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.publish-benefits { display: grid; gap: 14px; }
.publish-benefits div { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 20px; box-shadow: var(--soft-shadow); }
.publish-benefits strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.publish-benefits span { color: var(--muted); line-height: 1.55; }

.plans-section { padding: 64px 0; background: var(--surface-3); }
.page-plans { background: transparent; }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 20px; }
.three-plans { grid-template-columns: repeat(3, 1fr); }
.plan-card { background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--soft-shadow); position: relative; }
.featured-plan { border-color: rgba(15, 123, 95, .35); transform: translateY(-6px); }
.muted-plan { opacity: .86; }
.plan-card h3 { margin: 0 0 8px; font-size: 1.45rem; }
.price { font-size: 2.4rem; font-weight: 950; margin: 0 0 8px; letter-spacing: -.06em; color: var(--primary); }
.price small { font-size: .9rem; color: var(--muted); }
.plan-card p { color: var(--muted); line-height: 1.6; }
.plan-card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; }

.detail-layout, .form-layout { padding: 46px 0 72px; }
.back-link { color: var(--primary); font-weight: 950; display: inline-block; margin-bottom: 18px; }
.detail-card, .form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); overflow: hidden; }
.detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.detail-content { padding: 34px; }
.detail-content h1 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.07em; margin: 10px 0 14px; }
.detail-content p { color: var(--muted); line-height: 1.7; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.detail-carousel { min-height: 100%; background: var(--surface-2); display: grid; grid-template-rows: 1fr auto; }
.carousel-main { position: relative; min-height: 430px; overflow: hidden; }
.carousel-main img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.carousel-control { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 0; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--primary); font-size: 2rem; line-height: 1; font-weight: 900; cursor: pointer; box-shadow: var(--soft-shadow); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-counter { position: absolute; right: 16px; bottom: 16px; background: rgba(29,42,36,.72); color: white; border-radius: 999px; padding: 8px 12px; font-size: .85rem; font-weight: 900; }
.carousel-thumbs { display: flex; gap: 10px; padding: 12px; overflow-x: auto; background: rgba(255,255,255,.78); }
.carousel-thumb { border: 2px solid transparent; padding: 0; width: 78px; height: 58px; border-radius: 14px; overflow: hidden; cursor: pointer; background: white; flex: 0 0 auto; }
.carousel-thumb.active { border-color: var(--primary); }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.info-box { background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; padding: 14px; }
.info-box strong { display: block; margin-bottom: 4px; }
.info-box span { color: var(--muted); }

.form-card { padding: 24px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field-full { grid-column: 1 / -1; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.preview-box { background: var(--surface-2); border: 1px solid var(--line); border-radius: 24px; padding: 20px; position: sticky; top: 96px; }
.preview-box h2 { margin-top: 0; }
pre { white-space: pre-wrap; word-break: break-word; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; color: var(--muted); line-height: 1.6; }

.site-footer { border-top: 1px solid var(--line); padding: 30px 0; background: var(--surface); margin-top: 42px; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: var(--muted); }
.footer-grid strong { color: var(--text); }
.footer-grid p { margin: 6px 0 0; }
.empty-state { background: var(--surface); border: 1px dashed var(--line); padding: 36px; border-radius: var(--radius); color: var(--muted); text-align: center; grid-column: 1 / -1; }

@media (max-width: 980px) {
  .hero-marketplace-grid, .publish-hero-grid, .detail-hero, .form-card { grid-template-columns: 1fr; }
  .search-panel-hero { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .three-plans, .plans-grid { grid-template-columns: 1fr; }
  .featured-plan { transform: none; }
  .split-heading { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 720px) {
  .nav { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav { flex-wrap: wrap; }
  .nav-actions { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 10px; padding: 8px 0 4px; }
  .nav-actions.open { display: flex; }
  .nav-actions .btn { width: 100%; }
  .hero { padding-top: 42px; }
  .hero-visual { grid-template-columns: 1fr; }
  .large-photo { min-height: 240px; }
  .search-panel-hero, .advanced-filters { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .results-topline, .feature-card, .business-cta, .footer-grid { flex-direction: column; align-items: flex-start; }
  .feature-card .btn, .business-cta .btn { width: 100%; }
  .form-grid, .info-grid { grid-template-columns: 1fr; }
  .carousel-main, .carousel-main img { min-height: 300px; }
  .card-actions { flex-direction: column; }
}

/* v9 hero carousel publicitario */
.hero-ad-carousel {
  position: relative;
  padding: 0 0 82px;
  background: var(--bg);
}
.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #10231c;
}
.hero-slide {
  position: relative;
  min-height: 620px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  transition: background-image .35s ease-in-out;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 19, .86) 0%, rgba(10, 24, 19, .58) 44%, rgba(10, 24, 19, .20) 100%),
    linear-gradient(180deg, rgba(10,24,19,.1), rgba(10,24,19,.35));
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 86px 0 150px;
}
.hero-copy-on-image {
  max-width: 760px;
  color: white;
}
.hero-copy-on-image .eyebrow {
  color: #ffe0a0;
}
.hero-copy-on-image h1 {
  color: white;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .92;
  margin: 12px 0 18px;
  letter-spacing: -.085em;
  text-shadow: 0 14px 38px rgba(0,0,0,.28);
}
.hero-copy-on-image p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
}
.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn-light {
  background: white;
  color: var(--primary);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.btn-hero-outline {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(8px);
}
.hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.hero-carousel-control:hover {
  background: rgba(255,255,255,.25);
}
.hero-carousel-prev { left: max(18px, calc((100vw - 1160px) / 2 - 74px)); }
.hero-carousel-next { right: max(18px, calc((100vw - 1160px) / 2 - 74px)); }
.hero-carousel-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-dot.active {
  width: 34px;
  background: white;
}
.hero-search-floating {
  position: relative;
  z-index: 8;
  margin-top: -74px;
}
.hero-search-floating .search-panel {
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 26px 60px rgba(29,42,36,.22);
}

@media (max-width: 980px) {
  .hero-carousel, .hero-slide { min-height: 600px; }
  .hero-slide-content { padding: 72px 0 142px; }
  .hero-carousel-prev { left: 16px; }
  .hero-carousel-next { right: 16px; }
}

@media (max-width: 720px) {
  .hero-ad-carousel { padding-bottom: 44px; }
  .hero-carousel, .hero-slide { min-height: 610px; }
  .hero-slide-content { padding: 58px 0 190px; }
  .hero-copy-on-image h1 { font-size: clamp(2.45rem, 13vw, 4.2rem); }
  .hero-copy-on-image p { font-size: .98rem; }
  .hero-slide-actions .btn { width: 100%; }
  .hero-carousel-control {
    top: auto;
    bottom: 132px;
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }
  .hero-carousel-prev { left: 18px; }
  .hero-carousel-next { right: 18px; }
  .hero-carousel-dots { bottom: 142px; }
  .hero-search-floating { margin-top: -132px; }
}

/* v10: separación clara entre publicidad, buscador y destacados */
.search-lab-section {
  margin-top: -38px;
  position: relative;
  z-index: 12;
  padding-bottom: 22px;
}
.search-lab-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 26px 70px rgba(29,42,36,.16);
}
.centered-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.centered-heading h2 {
  margin: 8px 0 10px;
}
.centered-heading p {
  color: var(--muted);
  line-height: 1.65;
}
.search-panel-main {
  grid-template-columns: 2fr 1fr 1fr auto;
}
.search-tools-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.featured-listings-section {
  padding: 34px 0 18px;
}
.featured-grid .marketplace-card {
  border-color: rgba(240,169,41,.42);
  box-shadow: 0 16px 38px rgba(240,169,41,.10);
}
.hero-ad-carousel {
  padding-bottom: 34px;
}
.category-strip {
  margin-top: 10px;
}
@media (max-width: 980px) {
  .search-panel-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .search-lab-section { margin-top: -24px; }
  .search-lab-card { padding: 20px; border-radius: 24px; }
  .search-panel-main, .advanced-filters { grid-template-columns: 1fr; }
}

/* v11: jerarquía visual corregida */
.hero-v11 {
  padding-bottom: 0;
}
.hero-v11 .hero-carousel,
.hero-v11 .hero-slide {
  min-height: 470px;
}
.hero-v11 .hero-slide-content {
  padding: 72px 0 88px;
}
.hero-v11 .hero-copy-on-image h1 {
  font-size: clamp(2.6rem, 6vw, 5.15rem);
}
.hero-v11 .hero-carousel-dots {
  bottom: 34px;
}
.hero-v11 .hero-carousel-control {
  background: rgba(255,255,255,.18);
}
.search-v11 {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 16px;
}
.search-v11 .search-lab-card {
  box-shadow: 0 18px 46px rgba(29,42,36,.10);
  border-radius: 34px;
}
.search-v11 .centered-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.explore-v11 {
  padding-top: 44px;
  padding-bottom: 54px;
}
.featured-band-v11 {
  background:
    radial-gradient(circle at 8% 18%, rgba(240,169,41,.16), transparent 28%),
    linear-gradient(180deg, #fff8eb, #f8f1e5);
  border-top: 1px solid rgba(240,169,41,.24);
  border-bottom: 1px solid rgba(229,222,209,.82);
  padding: 44px 0 54px;
  margin-top: 10px;
}
.featured-band-v11 .featured-listings-section {
  padding: 0;
}
.featured-band-v11 .featured-grid {
  grid-template-columns: repeat(3, 1fr);
}
.featured-band-v11 .marketplace-card {
  background: #fffdf7;
  border-color: rgba(240,169,41,.5);
}
.events-v11 {
  padding-top: 44px;
}
.site-footer-nav {
  padding: 0;
  margin-top: 42px;
}
.footer-nav {
  min-height: 82px;
}
.footer-actions {
  display: flex;
}
@media (max-width: 980px) {
  .hero-v11 .hero-carousel,
  .hero-v11 .hero-slide { min-height: 440px; }
  .hero-v11 .hero-slide-content { padding: 60px 0 74px; }
  .featured-band-v11 .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero-v11 .hero-carousel,
  .hero-v11 .hero-slide { min-height: 430px; }
  .hero-v11 .hero-slide-content { padding: 48px 0 86px; }
  .hero-v11 .hero-carousel-control {
    top: auto;
    bottom: 30px;
  }
  .hero-v11 .hero-carousel-dots { bottom: 44px; }
  .search-v11 { padding-top: 28px; }
  .featured-band-v11 .featured-grid { grid-template-columns: 1fr; }
  .footer-nav { min-height: auto; padding: 18px 0; flex-direction: column; align-items: flex-start; }
  .footer-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .footer-actions .btn { width: 100%; }
}

/* v12: buscador simplificado y carrusel con alto fijo */
.hero-v11 .hero-carousel,
.hero-v11 .hero-slide {
  height: 470px;
  min-height: 470px;
  max-height: 470px;
}
.hero-v11 .hero-slide {
  overflow: hidden;
}
.hero-v11 .hero-slide-content {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-v11 .hero-copy-on-image {
  max-width: 720px;
}
.compact-tools-row {
  margin-top: 14px;
}
.compact-tools-row .btn {
  min-height: 42px;
}
.search-panel-main {
  grid-template-columns: 2fr 1fr 1fr auto;
}
@media (max-width: 980px) {
  .hero-v11 .hero-carousel,
  .hero-v11 .hero-slide {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }
  .search-panel-main { grid-template-columns: 1fr 1fr; }
  .search-panel-main .field-large { grid-column: 1 / -1; }
  .search-panel-main .btn-search { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .hero-v11 .hero-carousel,
  .hero-v11 .hero-slide {
    height: 390px;
    min-height: 390px;
    max-height: 390px;
  }
  .hero-v11 .hero-slide-content { padding: 0 0 34px; }
  .hero-v11 .hero-copy-on-image p { max-width: 92%; }
  .search-panel-main { grid-template-columns: 1fr; }
  .search-panel-main .field-large,
  .search-panel-main .btn-search { grid-column: auto; }
}

/* v13: plan destacado activo */
.highlighted-plan {
  border-color: rgba(245, 166, 35, .45);
  background: linear-gradient(180deg, rgba(245, 166, 35, .10), var(--surface) 48%);
  transform: translateY(-3px);
}
.highlighted-plan .price {
  color: var(--text);
}
@media (max-width: 760px) {
  .highlighted-plan { transform: none; }
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}
.footer-contact a {
  color: var(--muted);
  font-weight: 700;
}
.footer-contact a:hover {
  color: var(--primary);
}
@media (max-width: 760px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 18px;
  }
  .footer-contact span { display: none; }
}


/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  filter: brightness(1.02);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
