/* ===================== RESET & BASE ===================== */
:root {
    --ink: #0a0806;
    --panel: #141009;
    --panel-2: #1c160d;
    --gold: #c9a24a;
    --gold-bright: #e9c877;
    --silver: #adb3ba;
    --silver-bright: #e4e7ea;
    --cream: #ede4d3;
    --muted: #8f8577;
    --line: rgba(201, 162, 74, 0.22);
    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #0a0806;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

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

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================== HEADER / NAV ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 8, 6, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .4s ease, background .4s ease;
}

header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(10, 8, 6, 0.92);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo svg {
    width: 30px;
    height: 16px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    padding-top: 3px;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: color .25s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-cta {
    border: 1px solid var(--gold);
    color: var(--gold-bright) !important;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all .3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--ink) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 30%;
    opacity: 0.34;
    filter: grayscale(45%) contrast(1.1);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 8, 6, 1) 0%, rgba(10, 8, 6, 0.85) 38%, rgba(10, 8, 6, 0.55) 65%, rgba(10, 8, 6, 0.92) 100%),
        linear-gradient(180deg, rgba(10, 8, 6, 0.2) 0%, rgba(10, 8, 6, 1) 96%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: end;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-eyebrow .rule {
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(46px, 6.4vw, 84px);
    line-height: 0.98;
    color: var(--cream);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 500;
}

.hero-sub {
    margin-top: 26px;
    max-width: 440px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 162, 74, 0.25);
}

.btn-ghost {
    border-color: rgba(237, 228, 211, 0.28);
    color: var(--cream);
}

.btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(237, 228, 211, 0.06);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
    padding-left: 34px;
}

.hero-stat {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.hero-stat:last-child {
    border-bottom: none;
}

.hero-stat .num {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--gold-bright);
    font-weight: 600;
}

.hero-stat .lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 32px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ===================== SECTION SHARED ===================== */
section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-head {
    margin-bottom: 56px;
    max-width: 640px;
}

.section-head .eyebrow {
    margin-bottom: 16px;
    display: block;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--cream);
}

.section-head p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
}

/* ===================== SELETOR DE UNIDADE ===================== */
.switcher {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    position: relative;
}

.switcher button {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 2px;
    transition: color .35s ease;
}

.switcher button.active {
    color: var(--ink);
}

.switcher .thumb {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border-radius: 2px;
    transition: transform .45s cubic-bezier(.65, 0, .35, 1);
    z-index: 1;
}

[data-unit="premium"] .switcher .thumb {
    transform: translateX(100%);
}

.unit-meta {
    display: flex;
    gap: 48px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.unit-meta .item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 280px;
}

.unit-meta .item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--gold);
}

.unit-meta .item .t {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
}

.unit-meta .item .v {
    font-size: 14.5px;
    color: var(--cream);
    line-height: 1.5;
}

[data-field] {
    transition: opacity .3s ease;
}

/* ===================== DIVISOR NAVALHA ===================== */
.razor-divider {
    padding: 0 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.razor-divider svg {
    width: 100%;
    height: 44px;
}

.razor-line-path {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    transition: stroke-dashoffset 1.6s cubic-bezier(.65, 0, .35, 1);
}

.razor-divider.in-view .razor-line-path {
    stroke-dashoffset: 0;
}

/* ===================== PLANOS ===================== */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 56px;
}

.plan-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 44px 38px;
    position: relative;
    transition: border-color .4s ease, transform .4s ease;
}

.plan-card.gold {
    background: linear-gradient(165deg, #1d1607 0%, #141009 60%);
    border-color: rgba(201, 162, 74, 0.4);
}

.plan-card:hover {
    transform: translateY(-6px);
}

.plan-card .tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 16px;
    color: var(--ink);
    background: var(--gold-bright);
    font-weight: 700;
}

.plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.plan-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.plan-card.gold .plan-icon {
    border-color: rgba(201, 162, 74, 0.5);
}

.plan-icon svg {
    width: 22px;
    height: 22px;
    color: var(--silver-bright);
}

.plan-card.gold .plan-icon svg {
    color: var(--gold-bright);
}

.plan-head h3 {
    font-size: 22px;
    color: var(--cream);
}

.plan-head .sub {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

.plan-rows {
    display: flex;
    flex-direction: column;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 17px 0;
    border-top: 1px solid var(--line);
}

.plan-row .service {
    font-size: 14.5px;
    color: var(--cream);
}

.plan-row .price {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--gold-bright);
    white-space: nowrap;
}

.plan-row .price small {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.plan-card.silver .plan-row .price {
    color: var(--silver-bright);
}

.plan-benefits {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.plan-benefits .t {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.plan-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.plan-benefits li {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    color: var(--cream);
    align-items: flex-start;
}

.plan-benefits li svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.plan-cta {
    display: block;
    text-align: center;
    margin-top: 30px;
    padding: 14px;
    border: 1px solid rgba(237, 228, 211, 0.25);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    transition: all .3s ease;
}

.plan-card.gold .plan-cta {
    border-color: rgba(201, 162, 74, 0.5);
    color: var(--gold-bright);
}

.plan-cta:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.plan-card.gold .plan-cta:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

/* ===================== PLANOS: GRID DINÂMICO ===================== */
.plans-grid{ display:grid; gap:26px; margin-top:56px; }
.plans-grid.cols-2{ grid-template-columns:repeat(2, 1fr); }
.plans-grid.cols-3{ grid-template-columns:repeat(3, 1fr); }

/* ===================== PLANO VIP ===================== */
.plan-card.vip{
  background:linear-gradient(165deg, #201304 0%, #120c06 60%);
  border-color:rgba(233,200,119,0.55);
  box-shadow:0 0 0 1px rgba(233,200,119,0.08) inset;
}
.plan-card.vip .tag{ background:var(--cream); color:var(--ink); }
.plan-card.vip .plan-icon{ border-color:rgba(233,200,119,0.6); }
.plan-card.vip .plan-icon svg{ color:var(--gold-bright); }
.plan-card.vip .plan-row .price{ color:var(--gold-bright); }
.plan-card.vip .plan-cta{ border-color:rgba(233,200,119,0.6); color:var(--gold-bright); }
.plan-card.vip .plan-cta:hover{ background:var(--gold-bright); border-color:var(--gold-bright); color:var(--ink); }

/* ===================== HORÁRIO ===================== */
.schedule-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.schedule-title {
    margin-top: 16px;
    font-size: clamp(28px, 3.4vw, 40px);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    margin-top: 34px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.schedule-row:last-child {
    border-bottom: 1px solid var(--line);
}

.schedule-row .day {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--cream);
}

.schedule-row .hours {
    font-size: 14px;
    color: var(--gold-bright);
}

.schedule-row.closed .hours {
    color: var(--muted);
}

.schedule-note {
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.clock-frame {
    aspect-ratio: 1/1;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.clock-frame::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(201, 162, 74, 0.15);
    border-radius: 50%;
}

.clock-center {
    text-align: center;
}

.clock-center .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    margin: 0 auto 14px;
    box-shadow: 0 0 14px var(--gold-bright);
}

.clock-center .big {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    color: var(--cream);
}

.clock-center .small {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ===================== GALERIA ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 3/4;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) contrast(1.05);
    transition: transform .7s ease, filter .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1.05);
}

.gallery-item .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(10, 8, 6, 0.9), transparent);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s ease;
}

.gallery-item:hover .cap {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== LOCALIZAÇÃO ===================== */
.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.location-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card h3 {
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 6px;
}

.location-card .sub {
    color: var(--muted);
    font-size: 13px;
}

.location-card .addr {
    color: var(--gold-bright);
    font-size: 15px;
    margin-top: 14px;
    line-height: 1.6;
}

.location-card .whats {
    margin-top: 26px;
    margin-bottom: 22px;
    font-size: 22px;
    font-family: 'Fraunces', serif;
    color: var(--cream);
}

.map-box {
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 8, 6, 0.55), rgba(10, 8, 6, 0.75)),
        repeating-linear-gradient(0deg, rgba(201, 162, 74, 0.06) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(201, 162, 74, 0.06) 0 1px, transparent 1px 42px);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    text-align: center;
}

.map-pin svg {
    width: 30px;
    height: 30px;
    color: var(--gold-bright);
    margin-bottom: 10px;
}

.map-pin .l1 {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--cream);
}

.map-pin .l2 {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

/* ===================== FOOTER ===================== */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.foot-logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.foot-logo .brand-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.foot-logo span.gold {
    color: var(--gold);
}

.foot-links {
    display: flex;
    gap: 28px;
}

.foot-links a {
    font-size: 12px;
    color: var(--muted);
    transition: color .25s ease;
}

.foot-links a:hover {
    color: var(--cream);
}

.foot-copy {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 30px;
}

/* ===================== LOGO (NAV) ===================== */
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-mark{
  display:block;
  height:20px;
  width:auto;
  max-width:80px;
  flex-shrink:0;
}

.logo-text{
  /* font-family:'UnifrakturCook', cursive; */
  font-size:24px;
  font-weight:700;
  line-height:1;
  padding-top:4px;
  white-space:nowrap;
}
.logo-text span{ color:var(--gold); }

/* ===================== LOGO (FOOTER) ===================== */
.foot-logo{
  display:flex;
  align-items:center;
  gap:12px;
  /* font-family:'UnifrakturCook', cursive; */
  font-size:22px;
}

.foot-logo-mark{
  display:block;
  height:16px;
  width:auto;
  max-width:64px;
  flex-shrink:0;
}

.foot-logo .brand-suffix{
  font-family:'Space Grotesk', sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
  padding-top:2px;
}
.foot-logo span.gold{ color:var(--gold); }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.fixed-whats {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 162, 74, 0.35);
    transition: transform .3s ease;
}

.fixed-whats:hover {
    transform: scale(1.08);
}

.fixed-whats svg {
    width: 26px;
    height: 26px;
    color: var(--ink);
}

/* ===================== ANIMAÇÃO DE ENTRADA ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .razor-line-path {
        stroke-dashoffset: 0;
        transition: none;
    }
}


/* ===================== NAV TOGGLE (HAMBÚRGUER) ===================== */
/* ===================== TEXTO DO CTA: DESKTOP x MOBILE ===================== */
.cta-mobile{ display:none; }
.cta-desktop{ display:inline; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  width:32px;
  height:32px;
  padding:0;
  z-index:110;
  position:relative;
}

.nav-toggle span{
  width:22px;
  height:1.5px;
  background:var(--cream);
  transition:transform .35s ease, opacity .25s ease, background .3s ease;
}

/* transforma em X quando o menu está aberto */
.nav-toggle.active span:nth-child(1){
  transform:translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2){
  opacity:0;
}
.nav-toggle.active span:nth-child(3){
  transform:translateY(-6.5px) rotate(-45deg);
}

/* ===================== MENU MOBILE (PAINEL) ===================== */
@media (max-width:900px){

  .cta-desktop{ display:none; }
  .cta-mobile{ display:inline; }

  .nav-links{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(78vw, 320px);
    background:var(--panel);
    border-left:1px solid var(--line);
    padding:100px 32px 40px;
    z-index:105;
    transform:translateX(100%);
    transition:transform .45s cubic-bezier(.65,0,.35,1);
    overflow-y:auto;
  }

  .nav-links.mobile-open{
    transform:translateX(0);
  }

  .nav-links a{
    width:100%;
    padding:16px 0;
    border-bottom:1px solid var(--line);
    font-size:15px;
  }

  .nav-links .nav-cta{
    margin-top:24px;
    text-align:center;
    border-bottom:none;
       display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-top:28px;
    padding:16px 0;
    background:var(--gold);
    color:var(--ink)!important;
    border:none;
    border-radius:2px;
    font-weight:700;
    
  }

  .nav-links .nav-cta:hover{
    background:var(--gold-bright);
  }

  /* fundo escurecido atrás do menu */
  .nav-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(10,8,6,0.6);
    backdrop-filter:blur(2px);
    z-index:104;
    opacity:0;
    transition:opacity .35s ease;
  }
  .nav-overlay.active{
    display:block;
    opacity:1;
  }

  /* trava o scroll do fundo quando o menu está aberto */
  body.menu-open{
    overflow:hidden;
  }
}

  @media (max-width:1100px){
  .plans-grid.cols-3{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:900px){
  .plans-grid,
  .plans-grid.cols-2,
  .plans-grid.cols-3{ grid-template-columns:1fr; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width:900px) {
   

    .nav-toggle {
        display: flex;
    }

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

    .hero-stats {
        border-left: none;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 24px;
        flex-direction: row;
        overflow-x: auto;
    }

    .hero-stat {
        border-bottom: none;
        padding: 0 26px 0 0;
        flex-shrink: 0;
    }

 



    .schedule-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

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

    section {
        padding: 80px 0;
    }
}

@media (max-width:520px) {
    .wrap {
        padding: 0 20px;
    }

    nav {
        padding: 16px 20px;
    }

    .hero {
        padding-top: 120px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 12px;
    }
}