:root {
  --bg: #1e0927;
  --bg-soft: #1a0d28;
  --surface: #241538;
  --surface-alt: #322050;
  --text: #f4f1fa;
  --muted: #b8aee0;
  --primary: #e3e418;
  --primary-dark: #b8b814;
  --accent: #6d74e8;
  --accent-light: #8b91f0;
  --border: #574878;
  --purple-rgb: 30, 9, 39;
  --accent-rgb: 109, 116, 232;
  --surface-rgb: 36, 21, 56;
  --glow-purple: 0 0 28px rgba(var(--accent-rgb), 0.35);
  --glow-purple-soft: 0 0 18px rgba(var(--accent-rgb), 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(var(--accent-rgb), 0.18), transparent 55%),
    linear-gradient(180deg, #2a1440 0%, #1e0927 45%, #140a20 100%);
  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: 4.8rem 0;
}

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

.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  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 {
  color: var(--muted);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), 0.32) 0%,
      rgba(45, 20, 70, 0.62) 45%,
      rgba(var(--purple-rgb), 0.78) 100%
    ),
    url("images/banner.jpg") 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 #e3e418;
  border-image: none;
  box-shadow:
    0 0 22px rgba(var(--accent-rgb), 0.28),
    0 0 18px rgba(227, 228, 24, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 0 14px rgba(227, 228, 24, 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, 228, 24, 0.16);
  color: var(--primary);
  border: 1px solid rgba(227, 228, 24, 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 #e3e418;
    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, 228, 24, 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, 228, 24, 0.6);
}

.unit-pill-action {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(227, 228, 24, 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: linear-gradient(180deg, #1c0f2b, var(--bg-soft));
  border: 1px solid rgba(227, 228, 24, 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, 228, 24, 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: 2rem;
  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 {
  color: #e2ddf0;
  margin-bottom: 0.85rem;
}

.eyebrow {
  color: var(--primary) !important;
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.about-photo {
  position: relative;
  border: 1px solid rgba(227, 228, 24, 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 {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  overflow: hidden;
  background: #0d0816;
}

.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(12, 6, 20, 0.5) 0%,
    rgba(12, 6, 20, 0.35) 35%,
    rgba(12, 6, 20, 0.72) 70%,
    rgba(12, 6, 20, 0.92) 100%
  );
}

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

.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(12, 6, 20, 0), rgba(12, 6, 20, 0.88) 55%, rgba(12, 6, 20, 0.98));
}

.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:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(var(--accent-rgb), 0.14), transparent 70%),
    linear-gradient(180deg, #2e1a48 0%, var(--bg-soft) 55%, #110a1a 100%);
}

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

.plan-switcher {
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: 1fr 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-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  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: 880px;
  margin: 0 auto;
}

.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 {
  color: #ddd6f0;
  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(42, 26, 64, 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;
}

.activities {
  margin: 0 0 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: rgba(18, 10, 32, 0.7);
  overflow: hidden;
}

.activities summary {
  padding: 0.9rem 1rem;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.activities p {
  padding: 0 1rem 1rem;
  color: #ddd6f0;
}

.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(14, 8, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  background: linear-gradient(180deg, var(--surface-alt), var(--bg-soft));
  border: 1px solid rgba(227, 228, 24, 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, 228, 24, 0.55);
  box-shadow: 0 0 0 1px rgba(227, 228, 24, 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, 228, 24, 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, 228, 24, 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;
}

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

.partner-card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(var(--accent-rgb), 0.08) 100%);
  border-radius: 0.9rem;
  padding: 1.25rem;
  box-shadow: var(--glow-purple-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: var(--glow-purple);
}

.partner-card h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.partner-card p {
  color: #ddd6f0;
}

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

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: var(--glow-purple), 0 18px 36px rgba(0, 0, 0, 0.35);
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card p {
  color: #ddd6f0;
  font-size: 0.95rem;
}

.section-highlight {
  background:
    radial-gradient(ellipse 80% 50% at 80% 50%, rgba(var(--accent-rgb), 0.12), transparent 65%),
    linear-gradient(180deg, #1a0f2e 0%, #26173a 50%, #140a20 100%);
}

.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: linear-gradient(145deg, var(--surface-alt), rgba(var(--accent-rgb), 0.1));
  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 {
  color: #ece8f6;
  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 {
  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 {
    order: -1;
  }

  .partners-grid,
  .plan-prices,
  .modal-options,
  .unit-modal-options {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 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: #e3e418;
    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 #e3e418;
    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;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.8rem;
    padding-bottom: 0.35rem;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 7px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
  }

  .gallery-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }

  .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 #e3e418;
    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;
  }
}
