:root {
  --bg: #060606;
  --bg-soft: #111111;
  --panel: #181818;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --accent: #f2b705;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  line-height: 1.45;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(242, 183, 5, 0.17), transparent 30%),
    radial-gradient(circle at 8% 5%, rgba(242, 183, 5, 0.15), transparent 24%),
    linear-gradient(170deg, #050505 0%, #0b0b0b 45%, #070707 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.entry-gate {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #050505 url("/assets/img/fondo.png") center top / contain no-repeat;
}

.entry-gate__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(242, 183, 5, 0.18), transparent 38%),
    linear-gradient(170deg, rgba(8, 8, 8, 0.28), rgba(5, 5, 5, 0.55));
  pointer-events: none;
}

.entry-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #121212;
  box-shadow: var(--shadow);
}

.entry-gate__cta-block {
  position: absolute;
  left: clamp(520px, calc(27vw + 170px), 560px);
  top: clamp(227px, calc(47vh - 15px), 405px);
  z-index: 2;
  display: grid;
  gap: clamp(400px, 45vh, 520px);
  justify-items: center;
}

.entry-gate__btn--stripe {
  position: static;
  border: 2px solid rgba(0, 0, 0, 0.36);
}

.entry-gate__phrase-box {
  width: clamp(280px, 32vw, 430px);
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(242, 183, 5, 0.22);
  background: rgba(10, 10, 10, 0.58);
  color: #f2f2f2;
  font-weight: 900;
  font-size: clamp(1.12rem, 1.9vw, 1.7rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.12;
  transform: translateY(-200px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.66);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-height: 104px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  width: 294px;
  max-width: 294px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}


.brand__text {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 12px;
  font-size: 1.12rem;
  margin-left: 2px;
  align-items: center;
  flex-wrap: nowrap;
}

.topbar__inner > .btn {
  margin-left: auto;
  white-space: nowrap;
  min-width: 190px;
  padding: 12px 20px;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.1;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #111;
  border-color: rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  background: #ffcf3b;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn--big {
  font-size: 1.02rem;
  padding: 14px 18px;
}

.hero {
  padding: 42px 0 56px;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/fondo.png") center center / cover no-repeat;
  opacity: 0.62;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 6, 6, 0.45) 0%, rgba(6, 6, 6, 0.2) 45%, rgba(6, 6, 6, 0.5) 100%);
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 760px;
}

.hero-badge {
  display: grid;
  grid-template-columns: 1fr;
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
  margin-bottom: 14px;
}

.hero-badge__cell {
  min-height: 118px;
  display: flex;
  align-items: center;
}

.hero-badge__cell--logo {
  justify-content: center;
  padding: 10px 14px;
}

.hero-badge__logo {
  width: 530px;
  height: 106px;
  object-fit: contain;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: 0.9;
  margin: 16px 0 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.accent {
  color: var(--accent);
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.micro {
  color: #d0d0d0;
  font-size: 0.9rem;
}

.hero__side {
  display: grid;
  gap: 14px;
}

.offer-card {
  border-radius: var(--radius);
  border: 1px solid rgba(242, 183, 5, 0.45);
  background: linear-gradient(180deg, rgba(242, 183, 5, 0.22), rgba(242, 183, 5, 0.05));
  padding: 18px;
  box-shadow: var(--shadow);
}

.offer-card--inline {
  width: min(380px, 100%);
  margin-top: 14px;
  text-align: center;
}

.offer-card--inline .btn {
  margin-inline: auto;
}

.offer-card--inline .offer-card__price {
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  line-height: 1.05;
  white-space: nowrap;
}

.offer-card__kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.offer-card__price {
  margin: 8px 0 4px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.offer-card__meta {
  margin: 0 0 12px;
  color: #f7f7f7;
}

.hero__art {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section {
  padding: 62px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  margin: 0;
}

.section__sub {
  margin: 0 0 22px;
  color: var(--muted);
}

.overview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.fact-card__num {
  margin: 0;
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 800;
}

.fact-card__label {
  margin: 4px 0 0;
  color: #d6d6d6;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

#espacios h2,
#espacios .section__sub {
  text-align: center;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card h3 {
  padding: 14px 14px 6px;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
}

.team-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 33%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.team-carousel::-webkit-scrollbar {
  height: 9px;
}

.team-carousel::-webkit-scrollbar-thumb {
  background: rgba(242, 183, 5, 0.45);
  border-radius: 999px;
}

.team-slide {
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #151515;
}

.team-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-slide h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 1.02rem;
}

.team-slide--wide {
  grid-column: span 2;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rate-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(242, 183, 5, 0.12), rgba(16, 16, 16, 0.96));
  padding: 16px;
}

.rate-card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0 0 10px;
}

.rate-card__price {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
}

.rate-card__meta {
  margin: 6px 0 0;
  color: #d8d8d8;
  font-size: 0.92rem;
}

.rate-card--wide {
  grid-column: span 2;
}

.rates-note {
  margin: 14px 0 0;
  color: #d9d9d9;
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  display: inline-flex;
  border: 1px solid rgba(242, 183, 5, 0.4);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 700;
  font-size: 0.9rem;
}

.intensity-cards {
  display: grid;
  gap: 10px;
}

.intensity-cards article {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(242, 183, 5, 0.1), rgba(242, 183, 5, 0.03));
}

.intensity-cards p {
  margin: 8px 0 0;
  color: #dbdbdb;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--panel);
}

.option-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.photo {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hours {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
}

.hours__row:first-child {
  border-top: 0;
}

.hours__row span {
  color: var(--muted);
}

.contact {
  margin-top: 16px;
  color: #d3d3d3;
}

.contact p {
  margin: 6px 0;
}

.social-section {
  margin-top: 16px;
}

.social-section h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.map {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #21c45d;
  color: #fff;
  box-shadow: var(--shadow);
}

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: #b8b8b8;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  white-space: nowrap;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__tag {
  color: #d7b34c;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.legal-links a,
.legal-links__btn {
  color: #cfcfcf;
  text-decoration: underline;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
  padding: 12px 14px;
}

.cookie-banner p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal__panel {
  width: min(460px, 96vw);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111;
  padding: 16px;
}

.cookie-modal__panel h3 {
  margin: 0 0 12px;
}

.cookie-option {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  margin: 8px 0;
}

.cookie-modal__actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 1000px) {
  .hero__grid,
  .split-highlight,
  .two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 46px;
  }

  .hero::before {
    opacity: 0.52;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-carousel {
    grid-auto-columns: minmax(260px, 55%);
  }
}

@media (max-width: 760px) {
  .entry-gate__cta-block {
    left: 50%;
    top: auto;
    bottom: clamp(20px, 8vh, 46px);
    transform: translateX(-50%);
    gap: 14px;
  }

  .entry-gate__btn--stripe {
    padding: 12px 22px;
  }

  .entry-gate__phrase-box {
    width: min(88vw, 340px);
    min-height: 84px;
    font-size: 1.06rem;
    letter-spacing: 0.04em;
    transform: none;
  }

  .nav {
    display: none;
  }

  .brand__logo {
    width: 170px;
    max-width: 170px;
    height: 32px;
  }

  .hero-badge__cell--logo {
    border: 0;
  }

  .hero-badge__cell {
    min-height: 90px;
  }

  .hero-badge__logo {
    width: 360px;
    height: 72px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero::before {
    opacity: 0.46;
  }

  .spaces-grid,
  .rates-grid,
  .options-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .team-carousel {
    grid-auto-columns: minmax(240px, 84%);
  }

  .team-slide--wide {
    grid-column: auto;
  }

  .rate-card--wide {
    grid-column: auto;
  }

  .overview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-line {
    flex-wrap: wrap;
    gap: 10px;
  }

  .legal-links {
    order: 3;
    width: 100%;
    gap: 10px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
