:root {
  --bg: #0a0a0b;
  --surface: #131416;
  --surface-2: #1e2126;
  --metal: #2b2f36;
  --metal-line: #5a606a;
  --text: #f3f1ec;
  --text-dim: #c7c9ce;
  --muted: #8d939c;
  --action: #c1121f;
  --action-hover: #e3182d;
  --radius: 10px;
  --container: 1120px;
  --shadow: 0 14px 26px rgba(0, 0, 0, 0.42);
}

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

body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(227, 24, 45, 0.14), transparent 54%),
    radial-gradient(1200px 620px at -20% 120%, rgba(193, 18, 31, 0.2), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "Archivo", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 96, 106, 0.35);
}

.header-shell {
  position: relative;
  padding: 0.8rem 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

.header-col {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-col-center {
  justify-content: center;
}

.header-col-right {
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: grid;
}

.site-nav-mobile.is-open {
  display: grid;
}

.site-nav a {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.16s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

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

.btn-primary {
  background: var(--action);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(193, 18, 31, 0.32);
}

.btn-primary:hover {
  background: var(--action-hover);
}

.btn-secondary {
  background: rgba(19, 20, 22, 0.88);
  border-color: rgba(90, 96, 106, 0.7);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(227, 24, 45, 0.78);
}

.header-whatsapp,
.header-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(120, 126, 136, 0.45);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.16s ease;
}

.header-whatsapp {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  background: rgba(16, 24, 19, 0.96);
  color: #25d366;
}

.header-whatsapp svg {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.header-menu-toggle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  background: transparent;
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
}

.header-menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible,
.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(227, 24, 45, 0.58);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(90, 96, 106, 0.6);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand span {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.12;
}

.mobile-only {
  display: inline-flex;
}

.desktop-only {
  display: none;
}

.site-header .site-nav-mobile {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  padding: 1rem;
  border: 1px solid rgba(90, 96, 106, 0.45);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(30, 33, 38, 0.98), rgba(10, 10, 11, 0.98));
  box-shadow: var(--shadow);
  gap: 0.2rem;
}

.site-header .site-nav-mobile a {
  display: block;
  padding: 0.8rem 0.35rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  border-bottom: 1px solid rgba(90, 96, 106, 0.28);
}

.site-header .site-nav-mobile a:last-child {
  border-bottom: 0;
}

.header-cta {
  min-height: 42px;
  padding-inline: 0.85rem;
  font-size: 0.76rem;
}

.section {
  padding: 3.2rem 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--action-hover);
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 3.25rem);
}

h2 {
  font-size: clamp(2rem, 9vw, 2.8rem);
}

h3 {
  font-size: clamp(1.7rem, 7vw, 2rem);
}

p {
  margin: 0 0 0.8rem;
  color: var(--text-dim);
}

.lead {
  color: var(--text);
}

.hero {
  padding-top: 1.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.1rem;
}

.hero-copy {
  order: 1;
}

.hero-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.hero-actions .btn {
  width: 100%;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(90, 96, 106, 0.56);
  box-shadow: var(--shadow);
  min-height: 235px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}

.pre-sale {
  position: relative;
}

.pre-sale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(193, 18, 31, 0.12), transparent 58%),
    linear-gradient(160deg, rgba(10, 10, 11, 0.96), rgba(19, 20, 22, 0.95));
  z-index: -1;
}

.pre-sale-head p {
  color: var(--text);
}

.pre-sale-highlight {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(227, 24, 45, 0.62);
  background:
    linear-gradient(130deg, rgba(193, 18, 31, 0.28), rgba(19, 20, 22, 0.95)),
    var(--surface);
  padding: 1.05rem;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.55);
}

.price-block {
  border: 1px solid rgba(243, 241, 236, 0.24);
  border-radius: 10px;
  padding: 0.9rem;
  margin-bottom: 0.9rem;
  background: rgba(10, 10, 11, 0.48);
}

.price-label {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.price {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 12vw, 3.6rem);
  color: var(--text);
  line-height: 0.95;
}

.price-note {
  margin-top: 0.35rem;
  color: var(--text);
  font-weight: 600;
}

.benefit-list {
  margin: 0;
  padding-left: 1.15rem;
}

.benefit-list li {
  margin-bottom: 0.45rem;
  color: var(--text-dim);
}

.pre-sale-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.section-head {
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  gap: 0.85rem;
}

.card {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(90, 96, 106, 0.5);
  background: linear-gradient(158deg, rgba(30, 33, 38, 0.9), rgba(19, 20, 22, 0.94));
  box-shadow: var(--shadow);
}

.card .btn {
  margin-top: 0.75rem;
  width: 100%;
}

.plan-card,
.unit-card,
.ambassador-card,
.partner-card {
  display: flex;
  flex-direction: column;
}

.plan-card .btn,
.unit-card .btn {
  margin-top: auto;
}

.card-price {
  margin: 0.2rem 0 0.52rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--text);
}

.featured-card {
  border-color: rgba(227, 24, 45, 0.72);
  background:
    linear-gradient(145deg, rgba(193, 18, 31, 0.22), rgba(19, 20, 22, 0.96)),
    var(--surface-2);
}

.pill {
  display: inline-flex;
  margin: 0 0 0.45rem;
  border: 1px solid rgba(243, 241, 236, 0.42);
  border-radius: 999px;
  padding: 0.16rem 0.56rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
}

.pill-small {
  max-width: fit-content;
  padding: 0.12rem 0.44rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.visual-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr 1fr;
}

.visual-grid img {
  border-radius: 8px;
  min-height: 120px;
  max-height: 170px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(90, 96, 106, 0.4);
  filter: contrast(1.08) saturate(0.9);
}

.visual-text {
  margin-top: 0.9rem;
}

.section-cta {
  margin-top: 0.85rem;
}

#horarios .hours-card,
#horarios .section-cta {
  width: min(100%, 26rem);
}

#horarios .section-cta {
  display: flex;
}

.hours-card {
  border-radius: var(--radius);
  border: 1px solid rgba(90, 96, 106, 0.52);
  background: rgba(19, 20, 22, 0.88);
  padding: 1rem;
}

.hours-card p {
  margin-bottom: 0.5rem;
}

.hours-card strong {
  color: var(--text);
}

.unit-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.15rem 0 0.85rem;
}

.unit-title-row,
.ambassador-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.unit-title-row h3,
.ambassador-head h3 {
  margin-bottom: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 236, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 24, 45, 0.7);
  background: rgba(227, 24, 45, 0.12);
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.social-link-muted {
  opacity: 0.32;
}

.unit-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin-bottom: 0.75rem;
  border-radius: 16px;
  padding: 1rem;
  border: 1px dashed rgba(90, 96, 106, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12)),
    rgba(19, 20, 22, 0.82);
}

.unit-map-link {
  width: 100%;
}

.unit-map-placeholder {
  border: 1px dashed rgba(90, 96, 106, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12)),
    rgba(19, 20, 22, 0.82);
}

.ambassador-card img,
.partner-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(90, 96, 106, 0.44);
}

.ambassador-card img {
  height: 290px;
  object-fit: cover;
}

.partner-card img {
  height: 180px;
  object-fit: cover;
}

.partner-image-fixa {
  object-position: center 22%;
}

.ambassador-card .social-link {
  margin-top: 0;
}

.ambassador-head {
  margin-bottom: 0.35rem;
}

.partner-card {
  align-items: center;
  text-align: center;
}

.partner-head {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.partner-head h3 {
  margin: 0;
  text-align: center;
}

.partner-head .social-link {
  width: 2rem;
  height: 2rem;
}

.final-cta {
  border-top: 1px solid rgba(90, 96, 106, 0.34);
  padding-bottom: 5.4rem;
}

.final-cta-inner {
  border-radius: 14px;
  border: 1px solid rgba(227, 24, 45, 0.65);
  background:
    linear-gradient(125deg, rgba(227, 24, 45, 0.16), rgba(10, 10, 11, 0.95)),
    var(--surface);
  padding: 1.05rem;
}

.final-actions {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(90, 96, 106, 0.34);
  background: rgba(10, 10, 11, 0.94);
}

.site-footer-row {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer-brand {
  display: grid;
  gap: 0.35rem;
}

.site-footer-name {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer-tagline {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.site-footer-copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(90, 96, 106, 0.34);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.footer-link,
.footer-manage {
  padding: 0;
  border: 0;
  color: var(--text-dim);
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-link:hover,
.footer-manage:hover,
.footer-link:focus-visible,
.footer-manage:focus-visible {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  border-top: 1px solid rgba(90, 96, 106, 0.7);
  background: rgba(10, 10, 11, 0.98);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

.has-cookie-consent .cookie-banner {
  display: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.cookie-banner-content p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  justify-self: start;
}

.cookie-banner-actions {
  display: grid;
  gap: 0.55rem;
  justify-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-banner-actions .btn {
  min-height: 44px;
}

.cookie-banner-actions [data-cookie-manage] {
  grid-column: 1 / -1;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.cookie-modal-dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(90, 96, 106, 0.72);
  background: linear-gradient(150deg, rgba(30, 33, 38, 0.98), rgba(10, 10, 11, 0.98));
  padding: 1rem;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.55);
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.cookie-modal-head h2 {
  margin-bottom: 0;
}

.cookie-modal-close {
  border: 1px solid rgba(90, 96, 106, 0.7);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  background: rgba(19, 20, 22, 0.88);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.cookie-group {
  border: 1px solid rgba(90, 96, 106, 0.5);
  border-radius: 10px;
  margin: 0 0 0.8rem;
  padding: 0.8rem;
}

.cookie-group legend {
  padding: 0 0.3rem;
  color: var(--text);
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dim);
}

.cookie-row:last-child {
  margin-bottom: 0;
}

.cookie-row input[type="checkbox"] {
  inline-size: 1.1rem;
  block-size: 1.1rem;
  accent-color: var(--action);
}

.cookie-modal-actions {
  display: grid;
  gap: 0.58rem;
  margin-top: 1rem;
}

.cookie-modal-open {
  overflow: hidden;
}

.privacy-main {
  padding: 2rem 0 5rem;
}

.privacy-card {
  border-radius: 12px;
  border: 1px solid rgba(90, 96, 106, 0.52);
  background: linear-gradient(158deg, rgba(30, 33, 38, 0.9), rgba(19, 20, 22, 0.94));
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.privacy-card h1 {
  font-size: clamp(2rem, 8vw, 2.8rem);
}

.privacy-card h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
  margin-top: 1.2rem;
}

.privacy-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.floating-whatsapp {
  position: fixed;
  right: 0.95rem;
  bottom: 6.3rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 236, 0.3);
  background: var(--action-hover);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.74rem 1rem;
  text-transform: uppercase;
  box-shadow: 0 14px 22px rgba(193, 18, 31, 0.44);
}

.floating-whatsapp:hover {
  transform: translateY(-1px);
}

@media (min-width: 760px) {
  .header-shell {
    padding: 0.95rem 0;
  }

  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    min-height: 68px;
  }

  .header-col {
    flex: initial;
  }

  .header-col-center {
    justify-content: center;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: inline-flex;
  }

  .site-nav.desktop-only {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .site-nav.desktop-only a {
    font-size: 0.88rem;
    color: var(--text-dim);
  }

  .site-nav.desktop-only a:hover,
  .site-nav.desktop-only a:focus-visible {
    color: var(--text);
  }

  .site-nav-mobile {
    display: none !important;
  }

  .header-cta {
    font-size: 0.82rem;
    min-height: 44px;
    padding-inline: 1rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.3rem;
    align-items: stretch;
  }

  .hero-copy {
    padding-right: 0.4rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 460px;
  }

  .pre-sale-highlight {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1rem;
    align-items: start;
  }

  .pre-sale-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visual-grid img {
    min-height: 180px;
    max-height: 220px;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-row {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .site-footer-top {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-footer-copy {
    grid-column: 1 / -1;
  }

  .cookie-banner-content {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-banner-content p {
    max-width: none;
  }

  .cookie-banner-actions {
    grid-template-columns: repeat(3, auto);
    justify-self: end;
    align-items: center;
  }

  .cookie-modal-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .header-row {
    min-height: 86px;
  }

  .brand img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
  }

  .section {
    padding: 5rem 0;
  }

  .pre-sale-highlight {
    padding: 1.3rem;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .card,
  .final-cta-inner {
    padding: 1.25rem;
  }
}
