:root {
  --gold: #C9A24D;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD8;
  --black: #0D0D0D;
  --black-soft: #1A1A1A;
  --gray-dark: #3A3A3A;
  --gray-mid: #444444;
  --white: #FFFFFF;
  --cream: #FAFAF8;
  --cream-deep: #F4F1EA;
  --border: rgba(201, 162, 77, 0.25);
  --border-dark: rgba(13, 13, 13, 0.1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-gold: 0 8px 40px rgba(201, 162, 77, 0.18);
  --shadow-dark: 0 20px 60px rgba(13, 13, 13, 0.12);
  --shadow-card: 0 4px 24px rgba(13, 13, 13, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden
}

@media(min-width: 1101px) {
  body {
    zoom: 0.8;
  }
}

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

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  z-index: 1000;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1)
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: start
}

.nav-center {
  justify-self: center
}

.nav-social-icon {
  color: var(--white);
  opacity: 0.7;
  transition: all 0.18s ease;
  display: flex;
  align-items: center
}

.nav-social-icon:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px)
}

.navbar.scrolled .nav-social-icon {
  color: var(--black)
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark)
}

.nav-logo {
  height: 52px;
  transition: height 0.22s ease
}

.navbar.scrolled .nav-logo {
  height: 40px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  justify-self: end
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative
}

.navbar.scrolled .nav-links a {
  color: var(--black)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease
}

.nav-links a:hover::after {
  width: 100%
}

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

.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(201, 162, 77, .35)
}

.btn-nav:hover {
  background: var(--black) !important;
  color: var(--gold) !important;
  box-shadow: none !important;
  transform: translateY(-2px)
}

.btn-nav::after {
  display: none !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000000 !important;
  border-radius: 2px;
  transition: all 0.3s ease
}

.navbar.scrolled .hamburger span {
  background: var(--black)
}

.hamburger.open span {
  background: var(--white) !important
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s ease
}

.mobile-menu a:hover {
  color: var(--gold)
}

.mobile-menu .mob-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  letter-spacing: 2px
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  overflow: hidden
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('WhatsApp Image 2026-04-09 at 14.09.06 (1).jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.9) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(13, 13, 13, 0.85) 100%);
  z-index: 1
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 162, 77, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 162, 77, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 162, 77, .07) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(201, 162, 77, .04) 0%, transparent 50%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 80px 100px;
  gap: 80px
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero-eyebrow span {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(92px, 11vw, 150px);
  line-height: .92;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center
}

.hero-title .gold {
  color: var(--gold)
}

.hero-title .outlined {
  -webkit-text-stroke: 1px rgba(255, 255, 255, .25);
  color: transparent
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  max-width: 840px;
  text-align: center
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 30px rgba(201, 162, 77, .4)
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 162, 77, .3)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.18s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 4px
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hero-stat-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all .22s cubic-bezier(0.22, 1, 0.36, 1)
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent)
}

.hero-stat-card:hover {
  border-color: rgba(201, 162, 77, .4);
  background: rgba(201, 162, 77, .05)
}

.stat-big {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold)
}

.stat-lbl {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5
}

.stat-lbl strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500
}

.belt-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm)
}

.belt-bar span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-right: 6px
}

.hb {
  height: 8px;
  border-radius: 4px;
  flex: 1
}

.hb.w {
  background: #f0f0f0
}

.hb.b {
  background: #2e6cff
}

.hb.p {
  background: #7b3fe4
}

.hb.br {
  background: #7a4a2e
}

.hb.bk {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .15)
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25)
}

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

@keyframes sP {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

/* SECTION COMMONS */
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.s-tag-line {
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.s-tag span {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 108px);
  line-height: .95;
  color: var(--black);
  margin-bottom: 20px
}

.s-title .gold {
  color: var(--gold)
}

.s-sub {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gray-mid);
  line-height: 1.7
}

/* SOBRE */
.sobre {
  background: var(--cream);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.sobre::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1
}

.sobre::before {
  content: 'BASE';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 300px;
  line-height: 1;
  color: rgba(201, 162, 77, .035);
  pointer-events: none;
  white-space: nowrap
}

.sobre-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1
}

.sobre-text .s-sub {
  margin-top: 20px
}

.sobre-text p {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--gray-mid);
  letter-spacing: -0.01em
}

.sobre-text .btn-primary {
  margin-top: 40px
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-dark)
}

.sstat {
  background: var(--black);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .18s ease
}

.sstat:hover {
  background: var(--black-soft)
}

.sstat:nth-child(2) {
  background: var(--gold)
}

.sstat:nth-child(2):hover {
  background: #b8903e
}

.snum {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--gold)
}

.sstat:nth-child(2) .snum {
  color: var(--white)
}

.slbl {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  line-height: 1.4
}

/* BENEFITS */
.benefits {
  background: var(--white);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.benefits::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1
}

.benefits-head {
  max-width: 1300px;
  margin: 0 auto 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px
}

.benefits-head .s-sub {
  max-width: 340px;
  text-align: right
}

.benefits-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px
}

.ben-item {
  background: var(--cream);
  padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: all .2s ease;
  position: relative;
  overflow: hidden
}

.ben-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gold-pale);
  transition: height .2s ease
}

.ben-item:hover {
  border-top-color: var(--gold)
}

.ben-item:hover::before {
  height: 100%
}

.ben-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  background: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background .18s ease;
  color: var(--gold)
}

.ben-item:hover .ben-icon {
  background: var(--gold);
  color: var(--white)
}

.ben-item h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
  z-index: 1
}

.ben-item p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-mid);
  position: relative;
  z-index: 1
}

/* PLANOS */
.planos {
  background: var(--black);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.planos::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('WhatsApp Image 2026-04-09 at 14.09.05.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1
}

.planos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 162, 77, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 162, 77, .03) 1px, transparent 1px);
  background-size: 40px 40px
}

.planos .s-title {
  color: var(--white)
}

.planos .s-sub {
  color: rgba(255, 255, 255, .4)
}

.planos .s-tag span {
  color: var(--gold)
}

.planos-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.planos-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 4px;
  margin-top: 32px
}

.tog-btn {
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all .18s ease;
  font-family: var(--font-body)
}

.tog-btn.active {
  background: var(--gold);
  color: var(--white)
}

.anual-badge {
  display: inline-block;
  margin-left: 8px;
  background: rgba(201, 162, 77, .2);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px
}

.plan-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  transition: all .22s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden
}

.plan-card:hover {
  border-color: rgba(201, 162, 77, .3);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5)
}

.plan-card.featured {
  background: var(--gold);
  border-color: transparent
}

.plan-card.featured:hover {
  box-shadow: 0 32px 80px rgba(201, 162, 77, .3)
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--black);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px
}

.plan-card.featured .plan-badge {
  background: rgba(0, 0, 0, .25);
  color: var(--white)
}

.plan-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px
}

.plan-card.featured .plan-tag {
  color: rgba(255, 255, 255, .7)
}

.plan-name {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 8px
}

.plan-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 32px
}

.plan-card.featured .plan-desc {
  color: rgba(255, 255, 255, .75)
}

.plan-price {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.plan-card.featured .plan-price {
  border-bottom-color: rgba(255, 255, 255, .2)
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 5px
}

.price-cur {
  font-size: 20px;
  color: rgba(255, 255, 255, .5);
  margin-top: 8px
}

.price-amt {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  color: var(--white)
}

.price-per {
  font-size: 14px;
  color: rgba(255, 255, 255, .4)
}

.price-note {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  color: var(--gold-light)
}

.plan-card.featured .price-note {
  color: rgba(255, 255, 255, .85)
}

.price-note.show {
  display: block
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1
}

.plan-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, .65)
}

.plan-card.featured .plan-feats li {
  color: rgba(255, 255, 255, .9)
}

.feat-chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 162, 77, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold)
}

.plan-card.featured .feat-chk {
  background: rgba(255, 255, 255, .2);
  color: var(--white)
}

.pbelt-row {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-right: 4px
}

.pb {
  height: 6px;
  border-radius: 3px;
  width: 24px
}

.pb.w {
  background: #f0f0f0
}

.pb.b {
  background: #2e6cff
}

.pb.p {
  background: #7b3fe4
}

.pb.br {
  background: #7a4a2e
}

.pb.bk {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .2)
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none
}

.btn-plan:hover {
  background: var(--gold);
  border-color: var(--gold)
}

.plan-card.featured .btn-plan {
  background: var(--white);
  color: var(--black);
  border-color: var(--white)
}

.plan-card.featured .btn-plan:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black)
}

/* REVIEWS */
.reviews {
  background: var(--cream-deep);
  padding: 120px 80px;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.reviews::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1
}

.reviews-inner {
  max-width: 1300px;
  margin: 0 auto
}

.rev-track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 56px
}

.rev-track-wrap::before,
.rev-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.rev-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-deep), transparent)
}

.rev-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream-deep), transparent)
}

.rev-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: revScroll 30s linear infinite
}

.rev-track:hover {
  animation-play-state: paused
}

@keyframes revScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.rev-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all .18s ease
}

.rev-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px)
}

.rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px
}

.rev-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 24px
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0
}

.rev-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--black)
}

.rev-meta {
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 2px
}

/* CADASTRO */
.cadastro {
  background: var(--white);
  padding: 120px 80px
}

.cad-inner {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 80px 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden
}

.cad-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('basefoto.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0
}

.cad-inner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, .12), transparent 70%);
  z-index: 1
}

.cad-text {
  position: relative;
  z-index: 1
}

.cad-text .s-tag span,
.cad-text .s-tag-line {
  color: var(--gold);
  background: var(--gold)
}

.cad-text .s-title {
  color: var(--white);
  font-size: 64px
}

.cad-text p {
  font-size: 19px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-top: 16px
}

.cad-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0
}

/* HORÁRIOS */
.horarios {
  background: var(--white);
  padding: 100px 80px;
  border-top: 1px solid var(--border-dark)
}

.hor-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start
}

.hor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px
}

.hor-block {
  background: var(--cream);
  padding: 28px 24px
}

.hor-block:nth-child(odd) {
  background: var(--cream-deep)
}

.hor-dia {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.hor-hora {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--black)
}

.hor-tipo {
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 4px
}

/* FAQ */
.faq {
  background: var(--cream);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: -1
}

.faq-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start
}

.faq-left {
  position: sticky;
  top: 120px
}

.faq-left .s-sub {
  margin-top: 20px
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.faq-item {
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark)
}

.faq-item:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border-top: 1px solid var(--border-dark)
}

.faq-item:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm)
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  transition: color .15s ease
}

.faq-q:hover {
  color: var(--gold)
}

.faq-item.open .faq-q {
  color: var(--gold)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s ease;
  color: var(--gray-mid)
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg)
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0.22, 1, 0.36, 1)
}

.faq-item.open .faq-ans {
  max-height: 300px
}

.faq-ans p {
  padding: 0 28px 24px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--gray-mid)
}

/* LOCALIZACAO */
.localizacao {
  background: var(--white);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.localizacao::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('base.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1
}

.loc-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold)
}

.loc-info-t strong {
  display: block;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 4px
}

.loc-info-t p {
  font-size: 20px;
  color: var(--gray-mid);
  line-height: 1.6
}

.loc-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: all .18s ease
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white)
}

.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark)
}

.loc-map iframe {
  width: 100%;
  height: 440px;
  border: none;
  filter: grayscale(20%) contrast(1.05)
}

/* CTA FINAL */
.cta-final {
  background: var(--black);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border)
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 77, 0.15) 0%, transparent 70%);
  z-index: 0
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto
}

.cta-final .s-title {
  color: var(--white);
  font-size: clamp(64px, 10vw, 110px)
}

.cta-final .s-title .gold {
  color: var(--gold)
}

.cta-final .s-tag {
  justify-content: center
}

.cta-final .s-tag span {
  color: rgba(255, 255, 255, .7)
}

.cta-final .s-tag-line {
  background: rgba(255, 255, 255, .4)
}

.cta-final p {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--gold);
  margin: 24px auto 48px;
  line-height: 1.65;
  max-width: 700px
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--white);
  color: var(--black);
  transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2)
}

.btn-white:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateY(-3px)
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 80px 80px 40px
}

.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px
}

.foot-brand img {
  height: 48px;
  margin-bottom: 20px
}

.foot-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  max-width: 280px
}

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 24px
}

.soc-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .35);
  transition: all .18s ease
}

.soc-link:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.foot-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.foot-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  transition: color .15s ease
}

.foot-col ul a:hover {
  color: var(--white)
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.foot-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .2)
}

.foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin: 0 8px
}

/* WHATSAPP */
.wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4)
}

.wa img {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .5);
  animation: waP 2s ease-out infinite
}

@keyframes waP {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .42s cubic-bezier(0.22, 1, 0.36, 1), transform .42s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.rd1 {
  transition-delay: .07s
}

.rd2 {
  transition-delay: .14s
}

.rd3 {
  transition-delay: .21s
}

.rd4 {
  transition-delay: .28s
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .navbar {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: center;
    padding: 14px 32px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .07) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08) !important
  }

  .nav-left {
    display: none
  }

  .nav-center {
    justify-self: center
  }

  .navbar.scrolled {
    padding: 12px 32px
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
  }

  .hero-inner {
    padding: 140px 48px 80px;
    gap: 48px
  }

  .sobre {
    padding: 100px 48px
  }

  .sobre-inner {
    gap: 60px
  }

  .benefits {
    padding: 100px 48px
  }

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

  .planos {
    padding: 100px 48px
  }

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

  .reviews {
    padding: 100px 48px
  }

  .cadastro {
    padding: 100px 48px
  }

  .horarios {
    padding: 80px 48px
  }

  .faq {
    padding: 100px 48px
  }

  .localizacao {
    padding: 100px 48px
  }

  .cta-final {
    padding: 100px 48px
  }

  footer {
    padding: 60px 48px 32px
  }
}

@media(max-width:900px) {

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 140px 32px 80px
  }

  .hero-right {
    display: none
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 48px auto 0
  }

  .cad-inner {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    text-align: center
  }

  .cad-action {
    display: flex;
    justify-content: center
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .faq-left {
    position: static
  }

  .loc-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .hor-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:640px) {
  .navbar {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: center;
    padding: 12px 18px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important
  }

  .nav-logo {
    height: 36px !important
  }

  .hamburger {
    position: absolute;
    right: 18px
  }

  .hero-inner {
    padding: 100px 20px 60px;
    gap: 40px
  }

  .hero-eyebrow {
    margin-bottom: 20px
  }

  .hero-title {
    font-size: clamp(48px, 12vw, 68px);
    margin-bottom: 20px
  }

  .hero-subtitle {
    font-size: 19px;
    margin-bottom: 32px
  }

  .s-title {
    font-size: clamp(38px, 10vw, 54px);
    margin-bottom: 16px;
    text-align: center
  }

  .s-sub {
    font-size: 18px;
    text-align: center
  }

  .s-tag {
    justify-content: center;
    width: 100%
  }

  .sobre {
    padding: 60px 20px
  }

  .sobre-text p {
    font-size: 17px;
    line-height: 1.6;
    text-align: center
  }
  
  .sobre-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefits {
    padding: 60px 20px
  }

  .ben-item p {
    font-size: 16px
  }

  .planos {
    padding: 60px 20px
  }

  .planos .s-title {
    font-size: 42px
  }

  .reviews {
    padding: 60px 20px
  }

  .cadastro {
    padding: 60px 20px
  }

  .horarios {
    padding: 60px 20px
  }

  .faq {
    padding: 60px 20px
  }

  .localizacao {
    padding: 60px 20px
  }

  .cta-final {
    padding: 80px 20px
  }

  .cta-final .s-title {
    font-size: 44px
  }

  .cta-final p {
    font-size: 17px
  }

  .hero-bg-img,
  .planos-bg,
  .reviews::after,
  .faq-bg,
  .cta-final::after {
    background-attachment: scroll !important;
    background-position: center 25% !important;
    background-size: cover !important
  }

  footer {
    padding: 40px 20px 24px
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  /* Layout grid resets */
  .sobre-stats {
    grid-template-columns: 1fr
  }

  .benefits-head {
    flex-direction: column
  }

  .benefits-head .s-sub {
    text-align: center
  }
  
  .faq-left, .loc-detail, .hor-left, .cad-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cad-sub, .hor-left p {
    text-align: center;
  }
  
  .foot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .loc-icon {
    margin-bottom: 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .hor-grid {
    grid-template-columns: 1fr
  }

  .cad-inner {
    padding: 40px 22px;
    border-radius: var(--radius-lg)
  }

  /* Background image fixes */
  .sobre::after,
  .benefits::after,
  .sobre-inner {
    background-attachment: scroll !important;
    background-position: center 30% !important
  }
}