:root {
  --bg: #9929ca;
  --bg-soft: #9929ca;
  --surface: #9929ca;
  --surface-alt: #9929ca;
  --text: #f4f1fa;
  --muted: #d4c4e8;
  --primary: #e3e300;
  --primary-dark: #b8b800;
  --accent: #6d74e8;
  --accent-light: #8b91f0;
  --border: #a84dd4;
  --purple-rgb: 153, 41, 202;
  --bg-dark-rgb: 153, 41, 202;
  --accent-rgb: 109, 116, 232;
  --surface-rgb: 153, 41, 202;
  --glow-purple: 0 0 28px rgba(var(--accent-rgb), 0.35);
  --glow-purple-soft: 0 0 18px rgba(var(--accent-rgb), 0.22);
  --copy-sm: 0.875rem;
  --copy-sm-lh: 1.45;
  --copy-sm-color: #ddd6f0;
  --copy-sm-weight: 500;
  --copy-xs: 0.8125rem;
  --copy-xs-lh: 1.42;
  /* Títulos de seção (h2 e equivalentes) — mesmo tamanho em desktop e mobile */
  --section-title-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Evita inflação/redução automática de fonte no Safari/Chrome mobile (diferente do resize no PC) */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #9929ca;
  color: var(--text);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: clamp(2.35rem, 5vw, 3.5rem) 0;
}

@media (max-width: 780px) {
  /* ~+2px na base (16→18px): melhor leitura no celular, mantendo proporções em rem */
  html {
    font-size: 112.5%;
  }

  /* Títulos um pouco mais “colados” ao bloco anterior (menos respiro vazio no topo) */
  #modalidades.section,
  #planos.section,
  #avaliacoes-google.section {
    padding-top: 1.35rem;
  }
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: var(--section-title-size);
  margin-bottom: 0.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: var(--glow-purple-soft);
}

.section-head p,
.plan-includes li,
.plan-card li,
.planos-intro,
.about-content p,
.premium-benefit-text,
.premium-benefit-check,
.info-card p,
.activities p {
  font-size: var(--copy-sm);
  line-height: var(--copy-sm-lh);
  font-weight: var(--copy-sm-weight);
  font-style: normal;
  color: var(--copy-sm-color);
}

.section-head p {
  color: var(--muted);
}

.planos-intro {
  color: var(--muted);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(var(--purple-rgb), 0.55) 0%,
      rgba(var(--purple-rgb), 0.72) 50%,
      rgba(var(--purple-rgb), 0.65) 100%
    ),
    url("images/banner.webp") center/cover no-repeat;
}

body[data-unit="sp"] .hero {
  background:
    linear-gradient(
      135deg,
      rgba(var(--purple-rgb), 0.55) 0%,
      rgba(var(--purple-rgb), 0.72) 50%,
      rgba(var(--purple-rgb), 0.65) 100%
    ),
    url("images/banner-saopaulo.webp") center/cover no-repeat;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 4%;
  min-height: 3.25rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(var(--purple-rgb), 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e3e300;
  border-image: none;
  box-shadow:
    0 0 22px rgba(var(--accent-rgb), 0.28),
    0 0 18px rgba(227, 227, 0, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 0 14px rgba(227, 227, 0, 0.35));
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.nav.shrunk {
  padding: 0.4rem 4%;
  min-height: 2.85rem;
  background: rgba(var(--purple-rgb), 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.menu-open {
  border-bottom: none;
}

.nav.shrunk .brand {
  width: 4.75rem;
  height: 2.5rem;
}

.nav.shrunk .brand img {
  width: 5.5rem;
  height: 5.5rem;
}

.nav.shrunk .nav-links {
  gap: 1rem;
}

.nav.shrunk .nav-links a {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

.nav.shrunk .btn-nav {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  width: 6.5rem;
  height: 3.25rem;
  flex-shrink: 0;
  overflow: visible;
  z-index: 2;
}

.brand img {
  width: 9rem;
  height: 9rem;
  max-width: none;
  object-fit: contain;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5);
}

.nav-item-cta {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.nav-item-cta .btn-nav {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
  color: #1c1d1d;
}

.nav-links .nav-item-cta a.btn-primary:hover {
  color: #062012;
}

.menu-btn {
  display: none;
}

.hero-content {
  text-align: center;
  max-width: min(640px, 100%);
}

.tag {
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  letter-spacing: 0.125rem;
  display: inline-block;
  background: rgba(227, 227, 0, 0.16);
  color: var(--primary);
  border: 1px solid rgba(227, 227, 0, 0.45);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.375rem, 6vw, 4.875rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.hero h1 .destaque {
    color: transparent;
    -webkit-text-stroke: 0.08rem #e3e300;
    font-style: italic;
    font-weight: 900;
}

.hero-description {
  color: #e4dff0;
  margin-bottom: 1.8rem;
  max-width: 62ch;
  text-align: center;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.unit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(227, 227, 0, 0.35);
  border-radius: 999px;
  background: rgba(var(--surface-rgb), 0.7);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.unit-pill:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.unit-pill strong {
  color: var(--primary);
  font-weight: 800;
}

.unit-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(227, 227, 0, 0.6);
}

.unit-pill-action {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(227, 227, 0, 0.18);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.unit-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(var(--surface-rgb), 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.unit-modal.closing {
  opacity: 0;
  pointer-events: none;
}

body.unit-locked {
  overflow: hidden;
}

body.unit-locked .hero,
body.unit-locked main,
body.unit-locked .footer,
body.unit-locked .whatsapp-float {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.unit-modal-card {
  width: min(440px, 100%);
  background: #9929ca;
  border: 1px solid rgba(227, 227, 0, 0.35);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 25px rgba(227, 227, 0, 0.18);
}

.unit-modal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 0.8rem;
}

.unit-modal-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.unit-modal-card > p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.unit-modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.unit-modal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(var(--surface-rgb), 0.85);
  color: var(--text);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s ease;
}

.unit-modal-option:hover:not(.disabled) {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.unit-modal-option-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.unit-modal-option-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.unit-modal-option.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.unit-modal-option.disabled .unit-modal-option-sub {
  color: var(--primary);
  font-weight: 700;
}

.unit-modal-hint {
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 1rem;
}

.unit-modal-hint.warn {
  color: var(--primary);
  font-weight: 700;
}

.btn {
  border: none;
  padding: 0.82rem 1.15rem;
  border-radius: 0.7rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: clamp(0.8125rem, 1vw, 1.0625rem);
  font-weight: 700;
  padding: clamp(0.625rem, 1vw, 1rem) clamp(1.125rem, 2vw, 2rem);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #1c1d1d;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.about-content p {
  margin-bottom: 0.85rem;
}

.eyebrow {
  color: var(--primary) !important;
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.about-photo,
.about-media {
  position: relative;
  border: 1px solid rgba(227, 227, 0, 0.35);
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.about-photo img,
.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--surface-alt);
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(var(--purple-rgb), 0.45) 0%,
    rgba(var(--purple-rgb), 0.35) 35%,
    rgba(var(--purple-rgb), 0.65) 70%,
    rgba(var(--purple-rgb), 0.88) 100%
  );
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  cursor: zoom-in;
}

.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(var(--purple-rgb), 0), rgba(var(--purple-rgb), 0.82) 55%, rgba(var(--purple-rgb), 0.95));
}

.slide-content h3 {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75), 0 2px 12px rgba(0, 0, 0, 0.55);
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.slide-content p {
  color: #f0ecf8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(var(--purple-rgb), 0.7);
  color: #fff;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.section-dark {
  background: #9929ca;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-switcher {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin: 0 auto 1.4rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(var(--surface-rgb), 0.9);
}

.plan-switcher.plan-switcher-gru {
  width: min(430px, 100%);
  grid-template-columns: repeat(2, 1fr);
}

.plan-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: calc(1rem + 1px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-tab.active {
  color: #1c1d1d;
  background: var(--primary);
}

.premium-tab:not(.active) {
  color: var(--primary);
}

.plans-panels {
  max-width: 960px;
  margin: 0 auto;
}

.plan-annual-benefits-row {
  width: 100%;
  margin-top: 1.25rem;
}

.plan-annual-benefits-row .premium-benefits-block {
  margin-top: 0;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--glow-purple-soft);
}

.plan-panel {
  display: none;
}

.plan-panel.active {
  display: block;
}

.plan-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.plan-card h3 {
  margin-bottom: 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
}

.plan-card li {
  margin-bottom: 0.52rem;
}

.plan-note {
  color: var(--primary);
  font-weight: 800;
  text-align: right;
}

.plan-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.plan-price-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.1rem 1rem;
  background: rgba(var(--surface-rgb), 0.58);
}

.plan-price-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.plan-prices .price {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.plan-prices .price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.cash-price {
  color: #e2ddf0;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0;
}

.plan-cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
}

.plan-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.plan-includes li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
}

.plan-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.plan-includes li:last-child {
  margin-bottom: 0;
}

.plan-panel-pilates.active {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow:
    var(--glow-purple-soft),
    0 0 28px rgba(var(--accent-rgb), 0.15);
}

.plan-tab-pilates:not(.active) {
  color: var(--text);
}

.premium-benefits-block {
  --premium-carousel-gutter: 2.5rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.premium-benefits-headline {
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: var(--section-title-size);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 0.4rem;
  max-width: none;
  padding: 0;
  white-space: normal;
  text-shadow: var(--glow-purple-soft);
}

.premium-benefits-headline .premium-highlight {
  display: inline;
}

.premium-highlight {
  color: var(--primary);
}

.premium-benefits-carousel {
  padding: 0;
}

.premium-benefits-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.premium-benefits-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.premium-benefit-slide {
  min-width: 0;
  flex-shrink: 0;
}

.premium-benefit-card {
  display: grid;
  grid-template-columns: auto 1fr minmax(140px, 38%);
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 200px;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #9929ca;
  box-shadow: var(--glow-purple-soft);
  overflow: visible;
}

.premium-benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(var(--accent-rgb), 0.65);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--purple-rgb), 0.25);
  flex-shrink: 0;
}

.premium-benefit-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.premium-benefit-content {
  min-width: 0;
}

.premium-benefit-title {
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  line-height: 1.05;
  color: #fff;
}

.premium-benefit-text {
  margin: 0 0 0.65rem;
}

.premium-benefit-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
}

.premium-check-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}

.premium-check-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #1c1d1d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.premium-benefit-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  position: relative;
  min-height: 160px;
}

.premium-benefit-visual img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  transform: translateY(4px);
}

@media (max-width: 780px) {
  .premium-benefits-block .carousel-head-row {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.45rem 0.65rem;
    margin-bottom: 0.85rem;
  }

  .premium-benefits-block .premium-benefits-head-cell {
    flex: 1;
    min-width: 0;
  }

  .premium-benefits-block .carousel-side-nav--head {
    width: auto;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.15rem;
    justify-content: flex-end;
  }

  .premium-benefits-block {
    --premium-carousel-gutter: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .premium-benefits-block .premium-benefits-headline {
    text-align: left;
    margin-bottom: 0;
    padding: 0;
    white-space: normal;
  }

  .premium-benefits-carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .premium-benefit-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: unset;
    grid-template-rows: unset;
    min-height: 0;
    padding: 0.85rem 0.75rem;
    gap: 0.5rem;
    text-align: left;
    border-radius: 0.85rem;
  }

  .premium-benefit-icon {
    margin: 0 auto;
    width: 52px;
    height: 52px;
  }

  .premium-benefit-icon img {
    width: 30px;
    height: 30px;
  }

  .premium-benefit-content {
    width: 100%;
    text-align: left;
  }

  .premium-benefit-title {
    text-align: left;
    font-size: 1rem;
    line-height: 1.22;
    font-weight: 800;
    margin-bottom: 0.35rem;
  }

  .premium-benefit-text {
    margin-bottom: 0.45rem;
    font-size: var(--copy-xs);
    line-height: var(--copy-xs-lh);
    font-weight: var(--copy-sm-weight);
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
  }

  .premium-benefit-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem 0.5rem;
    align-items: start;
    justify-content: stretch;
    font-size: var(--copy-xs);
    line-height: var(--copy-xs-lh);
    font-weight: var(--copy-sm-weight);
  }

  .premium-benefit-check-msg {
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
    min-width: 0;
  }

  .premium-benefit-visual {
    display: none !important;
  }
}

.activities {
  margin: 0 0 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: #9929ca;
  overflow: hidden;
}

.activities summary {
  padding: 0.9rem 1rem;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.activities p {
  padding: 0 1rem 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--purple-rgb), 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  background: #9929ca;
  border: 1px solid rgba(227, 227, 0, 0.3);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.modal-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0.4rem 0 0.5rem;
}

.modal-desc {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  text-align: left;
}

.modal-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(var(--surface-rgb), 0.85);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.modal-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.modal-option.featured {
  border-color: rgba(227, 227, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(227, 227, 0, 0.18);
}

.modal-option-title {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.2rem;
}

.modal-option-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.modal-option-price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.modal-option-cta {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(227, 227, 0, 0.18);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-align: center;
}

.modal-option-tag {
  position: absolute;
  top: -0.6rem;
  right: 0.8rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  color: #1c1d1d;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.featured {
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px rgba(227, 227, 0, 0.28),
    var(--glow-purple),
    0 20px 45px rgba(0, 0, 0, 0.3);
}

.badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #001109;
  background: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.carousel-side-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0;
  padding: 0;
}

.carousel-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 0.85rem;
}

.carousel-head-row .section-head {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.premium-benefits-head-cell {
  flex: 1;
  min-width: 0;
}

.carousel-head-row .premium-benefits-headline {
  margin-bottom: 0;
}

.carousel-side-nav--head {
  flex-direction: row;
  align-self: flex-start;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding-top: 0.2rem;
}

@media (max-width: 520px) {
  .carousel-head-row {
    flex-wrap: wrap;
  }

  .carousel-side-nav--head {
    width: 100%;
    justify-content: flex-end;
    padding-top: 0;
  }
}

.reviews-carousel,
.premium-benefits-carousel {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
}

.gallery-carousel-btn,
.reviews-carousel-btn,
.premium-benefits-btn,
.carousel-guarulhos-btn {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  margin: 0;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(var(--purple-rgb), 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-carousel-btn:hover,
.reviews-carousel-btn:hover,
.premium-benefits-btn:hover,
.carousel-guarulhos-btn:hover {
  background: rgba(var(--accent-rgb), 0.88);
  border-color: var(--primary);
  color: #0a0a0a;
}

.carousel-head-row .carousel-guarulhos-btn,
.carousel-head-row .gallery-carousel-btn,
.carousel-head-row .reviews-carousel-btn,
.carousel-head-row .premium-benefits-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 2.1rem;
  height: 2.1rem;
  min-width: 2.1rem;
  min-height: 2.1rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 0.3rem;
}

.carousel-head-row .carousel-guarulhos-btn:hover,
.carousel-head-row .gallery-carousel-btn:hover,
.carousel-head-row .reviews-carousel-btn:hover,
.carousel-head-row .premium-benefits-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.95);
  color: #fff;
}

/* Carrosséis: modalidades, benefícios do plano anual, avaliações Google */
#modalidades .carousel-guarulhos-btn,
#modalidades .carousel-head-row .carousel-guarulhos-btn,
#planos .premium-benefits-btn,
#planos .carousel-head-row .premium-benefits-btn,
#avaliacoes-google .reviews-carousel-btn,
#avaliacoes-google .carousel-head-row .reviews-carousel-btn {
  background: #e3e300 !important;
  border: 1px solid #e3e300 !important;
  color: #9929ca !important;
}

#modalidades .carousel-guarulhos-btn:hover,
#modalidades .carousel-head-row .carousel-guarulhos-btn:hover,
#planos .premium-benefits-btn:hover,
#planos .carousel-head-row .premium-benefits-btn:hover,
#avaliacoes-google .reviews-carousel-btn:hover,
#avaliacoes-google .carousel-head-row .reviews-carousel-btn:hover {
  background: #d4d430 !important;
  border-color: #9929ca !important;
  color: #9929ca !important;
}

.google-reviews-section .section-head h2 {
  font-size: var(--section-title-size);
  text-transform: uppercase;
}

.google-reviews-section .section-head p {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--muted);
}

.reviews-carousel-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.reviews-carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  align-items: stretch;
}

.review-slide {
  min-width: 0;
  flex-shrink: 0;
  display: flex;
}

.review-card {
  border-radius: 0.95rem;
  border: 1px solid var(--border);
  background: #9929ca;
  box-shadow: var(--glow-purple-soft);
  padding: 1.35rem 1.25rem 1.25rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex: 1;
}

.review-stars {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.review-name {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: #fff;
}

.review-quote {
  margin: 0;
  flex: 1;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: var(--copy-sm);
  line-height: var(--copy-sm-lh);
  font-weight: var(--copy-sm-weight);
  color: var(--copy-sm-color);
}

@media (max-width: 780px) {
  .plan-tab {
    font-size: 0.95rem;
  }

  .google-reviews-section .carousel-head-row {
    margin-bottom: 1.15rem;
  }

  .gallery-carousel-btn,
  .reviews-carousel-btn,
  .premium-benefits-btn,
  .carousel-guarulhos-btn,
  .carousel-head-row .carousel-guarulhos-btn,
  .carousel-head-row .gallery-carousel-btn,
  .carousel-head-row .reviews-carousel-btn,
  .carousel-head-row .premium-benefits-btn {
    width: 2.05rem;
    height: 2.05rem;
    min-width: 2.05rem;
    min-height: 2.05rem;
    font-size: 1.05rem;
  }

  .review-card {
    min-height: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 0.95rem 1.05rem;
    gap: 0.5rem;
  }

  .review-quote {
    flex: none;
    font-size: var(--copy-xs);
    line-height: var(--copy-xs-lh);
    font-weight: var(--copy-sm-weight);
  }

  .review-name {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .review-stars {
    font-size: 1.05rem;
  }
}

.section-highlight {
  background: #9929ca;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hours-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 1rem;
}

.hours-card p {
  margin-bottom: 0.6rem;
  color: #ece8f6;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: #9929ca;
  border: 1px solid var(--border);
  padding: 1.1rem;
  border-radius: 1rem;
  box-shadow: var(--glow-purple-soft);
}

.info-card h3 {
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.info-card p {
  margin-bottom: 0.35rem;
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.map-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.contact-info p {
  color: #e2ddf0;
  margin-bottom: 0.55rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin: 0;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact-sep {
  margin: 0 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0 1.6rem;
  color: var(--muted);
  text-align: center;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 0.7rem;
}

@media (max-width: 960px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .about-section,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-media {
    order: -1;
  }

  .plan-prices,
  .modal-options,
  .unit-modal-options {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 780px) {
  .menu-btn {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    font-family: "Montserrat", sans-serif;
  }

  .menu-btn.open {
    color: #e3e300;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    padding: 0.35rem 0.65rem;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .brand {
    width: 5.5rem;
    height: 3rem;
  }

  .brand img {
    width: 7.5rem;
    height: 7.5rem;
  }

  .nav.shrunk .brand {
    width: 4.25rem;
    height: 2.5rem;
  }

  .nav.shrunk .brand img {
    width: 5rem;
    height: 5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(var(--purple-rgb), 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e3e300;
    border-radius: 0 0 0.7rem 0.7rem;
    padding: 0.75rem 0.75rem 0.7rem;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-item-cta {
    margin-left: 0;
    margin-top: 0.35rem;
    padding-left: 0;
    border-left: none;
  }

  .nav-item-cta .btn-nav {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .slide img {
    height: 280px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .hero {
    height: 100vh;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    text-transform: uppercase;
    text-align: center;
    max-width: 18rem;
    margin: 0 auto 1.5rem auto;
}

.hero h1 .destaque {
    color: transparent;
    -webkit-text-stroke: 0.08rem #e3e300;
    font-style: italic;
    font-weight: 900;
}

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions .btn {
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    font-weight: 700;
    padding: clamp(0.6rem, 2vw, 0.9rem)
           clamp(1.2rem, 4vw, 1.6rem);
    border-radius: 0.35rem;
    text-transform: uppercase;
  }

  .hero .tag {
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    letter-spacing: clamp(0.15rem, 1vw, 0.28rem);
    font-weight: 600;
  }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--surface);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 780px) {
  .whatsapp-tooltip {
    display: none;
  }
}

body[data-unit="guarulhos"] #heroTitle {
  text-transform: uppercase;
}

.about-hours-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.about-hours-card {
  background: #9929ca;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--glow-purple-soft);
}

.about-hours-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.about-hours-card strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--primary);
  line-height: 1.3;
}

body[data-unit="guarulhos"] .about-section {
  align-items: start;
}

.about-media.about-video {
  border-color: rgba(var(--accent-rgb), 0.35);
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
}

.about-video video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  background: var(--surface-alt);
}

.about-video video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(var(--bg-dark-rgb), 0.92));
}

.carousel-guarulhos {
  margin-bottom: 1.5rem;
}

.carousel-guarulhos-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.carousel-guarulhos-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.slide-guarulhos {
  min-width: 0;
}

.slide-guarulhos-media {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
  box-shadow: var(--glow-purple-soft);
}

.slide-guarulhos-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.slide-guarulhos-media h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.65rem 0.85rem;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 2.1vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1c1d1d;
  background: var(--primary);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 14, 0.92);
  backdrop-filter: blur(6px);
}

.image-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(var(--purple-rgb), 0.85);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-close:hover {
  background: var(--primary);
  color: #1c1d1d;
  transform: scale(1.05);
}

@media (max-width: 780px) {
  .about-hours-cards {
    grid-template-columns: 1fr;
  }

  body[data-unit="guarulhos"] .about-media.about-video {
    min-height: auto;
  }

  body[data-unit="guarulhos"] .about-video video {
    flex: none;
    min-height: 240px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .section-head {
    margin-bottom: 1.1rem;
  }
}
