:root {
  color-scheme: dark;
  --club-black: #0d0d0d;
  --club-white: #f8f4ec;
  --club-gold: #c89b3c;
  --club-gold-soft: #e4c07a;
  --club-brown: #24170d;
  --club-border: rgba(200, 155, 60, 0.18);
  --club-surface: rgba(255, 255, 255, 0.04);
  --club-surface-strong: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(180deg, #111111 0%, #0d0d0d 45%, #15100b 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.container-base {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 4rem 0 4rem;
}

.page-hero {
  padding: 5rem 0 2rem;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(200, 155, 60, 0.06), transparent 35%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.04), transparent 38%);
  pointer-events: none;
}

.heading-hero,
.page-title,
.section-heading h2,
.section-title-left,
.spotlight-card h2,
.glass-card h2,
.leader-card h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heading-hero {
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 0.95;
  margin: 0;
}

.page-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin: 0;
}

.page-copy,
.section-heading p,
.section-copy-left {
  max-width: 760px;
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(248, 244, 236, 0.76);
}

.section-block {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--club-border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.section-title-left {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.eyebrow,
.card-kicker,
.plan-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--club-gold-soft);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e3c57d, #be8d2b);
  color: #120d08;
  box-shadow: 0 14px 40px rgba(200, 155, 60, 0.22);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  color: #16130f;
}

.btn-secondary:hover {
  background: #f4ede1;
  color: #16130f;
}

.btn-sm {
  min-height: 2.8rem;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
}

.nav-link {
  position: relative;
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(248, 244, 236, 0.78);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--club-white);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--club-gold-soft), var(--club-gold));
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--club-white);
  border-radius: 999px;
}

.hero-visual,
.glass-card,
.info-card,
.benefit-card,
.spotlight-card,
.plan-card,
.form-panel,
.contact-mini-card,
.leader-card,
.comparison-table,
.testimonial-card {
  border: 1px solid var(--club-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(13, 13, 13, 0.88);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.28);
}

.glass-card,
.spotlight-card,
.plan-card,
.form-panel,
.leader-card {
  border-radius: 28px;
  padding: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(29, 24, 18, 0.96), rgba(13, 13, 13, 0.96)),
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.32), transparent 24%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.glass-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.16), transparent 26%),
    rgba(13, 13, 13, 0.4);
}

.hero-vitrine {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
  border-radius: 22px;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top, rgba(200, 155, 60, 0.2), transparent 28%),
    rgba(13, 13, 13, 0.65);
}

.hero-vitrine-badge {
  justify-self: end;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #15110d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-vitrine-content {
  align-self: end;
  margin-top: auto;
}

.hero-vitrine-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.vitrine-tile {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1712;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vitrine-tile strong,
.vitrine-tile span {
  display: block;
}

.vitrine-tile strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.vitrine-tile span {
  color: rgba(26, 23, 18, 0.82);
  line-height: 1.6;
}

.vitrine-tile-highlight {
  background: linear-gradient(135deg, #e4c07a, #bc8828);
}

.glass-card h2,
.spotlight-card h2,
.leader-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

.glass-card p,
.spotlight-card p,
.info-card p,
.benefit-card p,
.contact-mini-card p,
.leader-card p {
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.8;
}

.feature-list,
.plan-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.plan-list li,
.footer-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.9rem;
  color: rgba(248, 244, 236, 0.78);
}

.feature-list li::before,
.plan-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--club-gold-soft), var(--club-gold));
}

.metric-card,
.info-card,
.benefit-card {
  padding: 1.4rem;
  border-radius: 22px;
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.metric-card strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.35rem;
  letter-spacing: 0.08em;
  color: #181410;
}

.metric-card span {
  color: rgba(24, 20, 16, 0.72);
  line-height: 1.5;
}

.category-rack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-rack span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 244, 236, 0.9);
  font-weight: 700;
}

.compact-top {
  padding-top: 1rem;
}

.product-shelf {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shelf-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--club-border);
  border-radius: 22px;
  background: #fbf7f1;
  color: #1a1712;
}

.product-shelf-linear {
  align-items: stretch;
}

.shelf-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.shelf-card p {
  margin: 0;
  color: rgba(26, 23, 18, 0.78);
  line-height: 1.7;
}

.shelf-card .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.shelf-card-floating {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.shelf-card-floating::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(228, 192, 122, 0.16), transparent 32%);
  pointer-events: none;
}

.shelf-label {
  align-self: flex-start;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #17130f;
  color: #f5f0e6;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.instagram-showcase {
  padding: 1rem;
  border: 1px solid var(--club-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(13, 13, 13, 0.9);
}

.feature-video {
  display: block;
  width: 100%;
  border-radius: 22px;
  background: #090909;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.video-callout-card,
.portrait-placeholder {
  margin-top: 1.25rem;
  padding: 1.35rem;
  border: 1px solid var(--club-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.video-callout-card strong,
.portrait-placeholder h3 {
  display: block;
  margin-bottom: 0.65rem;
}

.video-callout-card p,
.portrait-placeholder p {
  margin: 0 0 1rem;
  color: rgba(248, 244, 236, 0.74);
  line-height: 1.8;
}

.portrait-placeholder-polished {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 13, 13, 0.92);
}

.portrait-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(228, 192, 122, 0.16);
  color: var(--club-gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.portrait-artboard {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.portrait-frame {
  position: relative;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(228, 192, 122, 0.3), transparent 24%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.3), rgba(17, 17, 17, 0.92)),
    linear-gradient(135deg, #25180d, #0f0f0f 65%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.portrait-glow {
  position: absolute;
  inset: auto 12% -18% 12%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 192, 122, 0.34), rgba(228, 192, 122, 0));
  filter: blur(20px);
}

.portrait-copy {
  position: relative;
  z-index: 1;
  max-width: 320px;
}

.portrait-copy strong,
.portrait-copy span {
  display: block;
}

.portrait-copy strong {
  margin-bottom: 0.55rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-copy span {
  color: rgba(248, 244, 236, 0.74);
  line-height: 1.7;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(228, 192, 122, 0.22), rgba(200, 155, 60, 0.22));
  border: 1px solid rgba(228, 192, 122, 0.25);
  font-weight: 800;
  color: var(--club-gold-soft);
  margin-bottom: 1rem;
}

.info-card h3,
.benefit-card h3,
.plan-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.tag-grid,
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag-grid span,
.partner-strip span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--club-border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(248, 244, 236, 0.78);
}

.timeline-mini {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-mini div {
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--club-gold);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 16px 16px 0;
}

.timeline-mini strong {
  display: block;
  color: var(--club-gold-soft);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
}

.plan-card-featured {
  position: relative;
  border-color: rgba(228, 192, 122, 0.4);
  background:
    linear-gradient(180deg, rgba(228, 192, 122, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(13, 13, 13, 0.93);
}

.plan-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--club-white);
}

.plan-price span {
  font-size: 1.3rem;
  color: rgba(248, 244, 236, 0.6);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(248, 244, 236, 0.85);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--club-white);
  padding: 0.95rem 1rem;
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(248, 244, 236, 0.4);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(200, 155, 60, 0.34);
  outline-offset: 2px;
  border-color: rgba(200, 155, 60, 0.4);
}

.status-message {
  min-height: 1.5rem;
  font-size: 0.95rem;
  color: var(--club-gold-soft);
}

.testimonial-slider {
  display: grid;
  gap: 1.5rem;
}

.testimonial-track {
  position: relative;
  min-height: 250px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 2rem;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(248, 244, 236, 0.82);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 1rem;
}

.testimonial-card span {
  color: rgba(248, 244, 236, 0.55);
}

.slider-controls {
  display: flex;
  gap: 0.8rem;
}

.slider-controls button {
  border: 1px solid var(--club-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--club-white);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--club-border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--club-white);
  padding: 1.2rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.25rem 0;
  color: rgba(248, 244, 236, 0.68);
  line-height: 1.8;
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-content p {
  padding-bottom: 1.2rem;
}

.leader-card {
  text-align: center;
}

.leader-avatar {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--club-gold-soft), var(--club-gold));
  color: #120d08;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
}

.comparison-table {
  border-radius: 28px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}

.comparison-row span {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-head {
  background: rgba(228, 192, 122, 0.08);
  font-weight: 800;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--club-gold-soft);
}

.footer-list a,
.contact-mini-card a {
  color: rgba(248, 244, 236, 0.8);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1db954);
  color: #061a0d;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(29, 185, 84, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(6, 26, 13, 0.9);
}

.instagram-showcase iframe,
.instagram-showcase blockquote,
.instagram-showcase video {
  width: 100% !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1.1rem;
    border: 1px solid var(--club-border);
    border-radius: 24px;
    background: rgba(13, 13, 13, 0.97);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }

  .nav-panel.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-section {
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .testimonial-track {
    min-height: 330px;
  }

  .product-shelf {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    font-size: 0.94rem;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .testimonial-card,
  .faq-content {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
