@font-face {
  font-family: "MyCustomFont";
  src: url("fonts/TTF/Rex-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================================================
       CSS VARIABLES
       ================================================ */
:root {
  --purple: #512944;
  --purple-dark: #3a1d31;
  --purple-light: #6b3a5e;
  --gold: #85754e;
  --gold-light: #a8966a;
  --gold-glow: rgba(133, 117, 78, 0.35);
  --black: #0a0a0a;
  --surface: #111111;
  --surface-2: #181818;
  --border: rgba(133, 117, 78, 0.18);
  --grey: #666666;
  --grey-light: #aaaaaa;
  --white: #f5f5f5;
  --font-heading: "MyCustomFont", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
}

/* ================================================
       RESET & BASE
       ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 117, 78, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 117, 78, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ================================================
       TYPOGRAPHY
       ================================================ */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold {
  color: var(--gold);
}
.purple-text {
  color: var(--purple-light);
}

/* ================================================
       LAYOUT
       ================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  z-index: 1;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .label {
  margin-bottom: 0.75rem;
  display: block;
}

/* ================================================
       BUTTONS
       ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 245, 245, 0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--purple {
  background: var(--purple);
  color: var(--white);
}
.btn--purple:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

/* ================================================
       NAVIGATION
       ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition:
    background 0.35s ease,
    padding 0.35s ease;
  overflow: hidden;
}

.site-header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}
.nav__logo-text span {
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.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 {
  color: var(--white);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-toggle {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--grey-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.38rem 0.7rem;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.lang-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  padding: 0.4rem 0.5rem;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease;
}
.nav__hamburger:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
}
.nav__mobile.open {
  transform: translateX(0);
}
.nav__mobile .mobile-link,
.nav__mobile .mobile-call-link {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav__mobile .mobile-link:hover,
.nav__mobile .mobile-call-link:hover {
  color: var(--gold);
}
.nav__mobile .mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}
.nav__mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--grey-light);
  background: transparent;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.nav__mobile-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.nav__mobile .mobile-lang {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}
.nav__mobile .mobile-lang:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ================================================
       HERO
       ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 80% 50%,
      rgba(81, 41, 68, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 80% at 20% 80%,
      rgba(81, 41, 68, 0.25) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 60% 20%,
      rgba(133, 117, 78, 0.12) 0%,
      transparent 50%
    ),
    #0a0a0a;
}
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__lines::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    160deg,
    rgba(133, 117, 78, 0.06) 0%,
    transparent 50%
  );
  transform: skewX(-12deg);
}
.hero__diagonal-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--black);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  animation: fadeSlideUp 0.8s ease 0.4s both;
  margin-bottom: 1.5rem;
}
.hero__headline .line-2 {
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--grey-light);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideUp 0.8s ease 0.8s both;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeSlideUp 0.8s ease 1s both;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

.hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(10, 10, 10, 0.85) 20%,
    rgba(10, 10, 10, 0.4) 55%,
    rgba(10, 10, 10, 0.05) 100%
  );
  z-index: 2;
}
.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(81, 41, 68, 0.15) 0%,
    transparent 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 2;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.45;
  filter: brightness(0.65) contrast(1.1) saturate(0.85);
  animation: heroImgFadeIn 1.4s ease 0.5s both;
}

@keyframes heroImgFadeIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 0.45;
    transform: scale(1);
  }
}
@media (max-width: 900px) {
  .hero__image-wrap {
    width: 55%;
  }
  .hero__image {
    opacity: 0.28;
  }
}
@media (max-width: 640px) {
  .hero__image-wrap {
    display: none;
  }
}

/* ================================================
       PLANS (PLANOS DE ASSINATURA)
       ================================================ */
.plans {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.plans::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/image-15.webp");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.4;
  filter: grayscale(50%) contrast(1.2);
  z-index: 0;
}
.plans > .container {
  position: relative;
  z-index: 1;
}
.plans__subtitle {
  font-size: 0.85rem;
  color: #f5f5f5c2;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
.plans__category {
  margin-bottom: 1.5rem;
}
.plans__category-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.plans__category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid;
}
.plans__category-badge--limited {
  color: var(--grey-light);
  border-color: var(--grey);
}

/* Slider Container */
.plans__slider-wrap {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Notice: scroll-behavior: smooth has been deliberately removed to resolve drag/snapping conflicts */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.plans__slider-wrap::-webkit-scrollbar {
  display: none;
}
.plans__slider {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  user-select: none;
}

/* Cards */
.plan-card {
  flex: 0 0 300px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.plan-card-0{
   border-color: var(--gold);
}
/* ── Imagem Fundo do Card (Estilo Dribbble) ── */
.plan-card__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px; /* Altura que a imagem vai ocupar no topo */
  object-fit: cover;
  z-index: 0;
  opacity: 0.5; /* Escurece a imagem para o texto ler-se bem */
  pointer-events: none; /* Impede que a imagem interfira no clique ou scroll */

  /* Faz a imagem desaparecer gradualmente na parte de baixo */
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
/* Modificador para colocar a imagem no fundo do card com fade para cima */
.plan-card__bg-img--bottom {
  top: auto;
  bottom: 0;
  height: 60%; /* Cobre a metade inferior do card */
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent 100%);
  mask-image: linear-gradient(to top, black 20%, transparent 100%);
}

/* Garante que TODO o conteúdo do card fica acima da imagem */
.plan-card > *:not(.plan-card__bg-img) {
  position: relative;
  z-index: 1;
}
.plan-card:hover {
  transform: translateY(-5px);
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.plan-card--limited::before {
  background: var(--grey);
}
.plan-card--unlimited::before {
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.plan-card--featured::before {
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
}
.plan-card--featured {
  border-color: rgba(133, 117, 78, 0.45);
  box-shadow: 0 0 40px rgba(133, 117, 78, 0.15);
  animation: pulse-glow 4s ease-in-out infinite;
}

.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.plan-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.7;
}
.plan-card--featured .plan-card__icon {
  opacity: 1;
}
.plan-card__badge {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid;
}
.plan-card__badge--limited {
  color: var(--grey-light);
  border-color: var(--grey);
}
.plan-card__badge--unlimited {
  color: var(--gold);
  border-color: var(--gold);
}
.plan-card__badge--featured {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.plan-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.plan-card__amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.plan-card__period {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.plan-card__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  margin-bottom: 1.75rem;
}
.plan-card__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.45;
}
.plan-card__perks li i {
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.plan-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem;
  font-size: 0.75rem;
  margin-top: auto;
}

.plans__slider-divider {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  width: 60px;
  align-self: stretch;
}
.plans__slider-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.plans__slider-divider-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.plans__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.plans__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.plans__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.plans__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.plans__dots {
  display: flex;
  gap: 0.5rem;
}
.plans__dot {
  width: 22px;
  height: 3px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease;
}
.plans__dot.active {
  background: var(--gold);
  width: 36px;
}

@media (max-width: 1024px) {
  .plan-card {
    flex: 0 0 280px;
  }
}
@media (max-width: 768px) {
  .plan-card {
    flex: 0 0 calc(85vw);
  }
  .plans__slider-divider {
    display: none;
  }
}
@media (max-width: 480px) {
  .plan-card {
    flex: 0 0 calc(90vw);
  }
}

/* ================================================
       SERVICES (SERVIÇOS)
       ================================================ */
.services__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.9rem 2rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  margin-bottom: -1px;
  background: transparent;
  cursor: pointer;
}
.tab-btn:hover {
  color: var(--white);
}
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}
.service-item {
  background: var(--surface);
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
}
.service-item:hover {
  background: var(--surface-2);
}
.service-item:hover .service-item__name {
  color: var(--gold);
}
.service-item__info {
  flex: 1;
}
.service-item__name {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  margin-bottom: 0.2rem;
}
.service-item__duration {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.08em;
}
.service-item__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 1.5rem;
  white-space: nowrap;
}

/* ================================================
       TEAM (EQUIPA)
       ================================================ */
.team {
  background: var(--surface);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.barber-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.barber-card:hover {
  transform: translateY(-6px);
  border-color: rgba(133, 117, 78, 0.4);
}
.barber-card__photo {
  max-height: 400px;
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--black) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.barber-card__photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--surface-2), transparent);
}
.barber-card__avatar {
  font-size: 6rem;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.barber-card__info {
  padding: 1.5rem;
}
.barber-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.barber-card__title {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.barber-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.barber-stat {
  text-align: center;
}
.barber-stat__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.barber-stat__label {
  font-size: 0.62rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.barber-card__select {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.8rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}
.barber-card:hover .barber-card__select {
  color: var(--gold);
  border-color: var(--gold);
}

/* ================================================
       GALLERY
       ================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 3/4;
}
.gallery__item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery__item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8) contrast(1.1);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================
       REVIEWS
       ================================================ */
.reviews {
  background: var(--surface);
}
.reviews__track-wrap {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--grey-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}
.review-meta {
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}
.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.reviews__dot {
  width: 24px;
  height: 3px;
  background: var(--border);
  transition:
    background 0.3s ease,
    width 0.3s ease;
  cursor: pointer;
  border: none;
}
.reviews__dot.active {
  background: var(--gold);
  width: 40px;
}

/* ================================================
       BOOKING FORM (RESERVAR)
       ================================================ */
.booking {
  background: var(--black);
}
.booking__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.booking__info {
  position: sticky;
  top: 8rem;
}
.booking__contact-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.booking__contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.booking__contact-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 0.25rem;
}
.booking__contact-value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Form */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.6rem;
}
.form-input,
.form-select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-input::placeholder {
  color: var(--grey);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2385754E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option {
  background: #1a1a1a;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.time-slot {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 0.4rem;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--grey-light);
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover {
  border-color: var(--gold);
  color: var(--white);
}
.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.form-honeypot {
  display: none;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--grey-light);
  cursor: pointer;
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 1px;
}
.form-error {
  font-size: 0.72rem;
  color: #e05a5a;
  margin-top: 0.4rem;
  display: none;
}
.form-error.visible {
  display: block;
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ================================================
       WHATSAPP FLOAT BUTTON
       ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ================================================
       SUCCESS OVERLAY
       ================================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.success-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.success-box {
  text-align: center;
  max-width: 480px;
  padding: 4rem 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.success-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.success-msg {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ================================================
       FOOTER
       ================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer__logo-text span {
  color: var(--gold);
}
.footer__tagline {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 30ch;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--grey);
  transition: var(--transition);
}
.footer__social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--grey-light);
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

/* ================================================
       SCROLL ANIMATIONS
       ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
       ANIMATIONS
       ================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--gold-glow);
  }
  50% {
    box-shadow:
      0 0 45px var(--gold-glow),
      0 0 80px rgba(133, 117, 78, 0.12);
  }
}
.plan-card--promax {
  animation: pulse-glow 4s ease-in-out infinite;
}

.divider-diagonal {
  height: 80px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}
.divider-diagonal--reverse {
  background: var(--black);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
  .booking__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking__info {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__actions .btn {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__actions {
    gap: 0.5rem;
  }
  .plans__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  .gallery__item:nth-child(4) {
    grid-column: auto;
    aspect-ratio: 3/4;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .review-card {
    flex: 0 0 85vw;
  }
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-mode-btns {
    flex-direction: column;
  }
  .booking-mode-card {
      flex: none;        /* desliga o flex sizing automático */
    width: 100%;       /* ocupa toda a largura */
    min-height: 110px; /* garante altura mínima visível */
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.78rem;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item {
    aspect-ratio: 4/3 !important;
    grid-column: auto !important;
  }
  .nav__logo-text {
    font-size: 1.1rem;
  }
}

/* ================================================
       ABOUT / BRAND STORY SECTION
       ================================================ */
.about {
  background: var(--black);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 1;
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__visual-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}
.about__visual-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--purple);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.about__visual-badge .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__visual-badge .text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.3rem;
  line-height: 1.3;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about__value {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.about__value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.about__value-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.about__value-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.about__value-text {
  font-size: 0.78rem;
  color: var(--grey-light);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__visual-badge {
    bottom: -1rem;
    right: -0.5rem;
    width: 100px;
    height: 100px;
  }
  .about__visual-badge .number {
    font-size: 1.7rem;
  }
  .about__values {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ================================================
       YOUTUBE FACADE (Gallery Video)
       ================================================ */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
  margin-top: 4px;
}
.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
  filter: brightness(0.7);
}
.yt-facade:hover .yt-facade__thumb {
  transform: scale(1.03);
  filter: brightness(0.55);
}
.yt-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  pointer-events: none;
}
.yt-facade__play-icon {
  width: 72px;
  height: 72px;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.yt-facade:hover .yt-facade__play-icon {
  transform: scale(1.12);
  background: var(--gold);
  color: var(--black);
}
.yt-facade__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0.8rem;
}
.yt-facade__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================
       MOBILE STICKY CTA BAR
       ================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.mobile-cta-bar a,
.mobile-cta-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.mobile-cta-bar .mcta-call {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-cta-bar .mcta-call:hover {
  border-color: #25d366;
  color: #25d366;
}
.mobile-cta-bar .mcta-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.mobile-cta-bar .mcta-book:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
  .whatsapp-float {
    bottom: 5.5rem;
  }
}

/* ================================================
       SCROLL-TO-TOP BUTTON
       ================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 890;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    border-color 0.2s ease;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  border-color: var(--gold);
  background: var(--surface-2);
}
@media (max-width: 768px) {
  .scroll-top {
    bottom: 5.5rem;
    left: 1rem;
  }
}

/* ================================================
       BOOKING MODE CHOOSER
       ================================================ */
.booking-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.btn--call {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(37, 211, 102, 0.5);
}
.btn--call:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
}
.btn--wa-quick {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}
.btn--wa-quick:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  transform: translateY(-2px);
}

.booking-mode-chooser {
  margin-bottom: 2rem;
}
.booking-mode-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 1rem;
  display: block;
}
.booking-mode-btns {
  display: flex;
  gap: 1rem;
}
.booking-mode-card {
  flex: 1 1 0;
  padding: 1.4rem 1.2rem;
  background: var(--surface-2);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-mode-card:hover {
  border-color: var(--gold);
}
.booking-mode-card.active {
  border-color: var(--gold);
  background: rgba(133, 117, 78, 0.08);
}
.booking-mode-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.booking-mode-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
  color: var(--grey-light);
  transition: color 0.2s ease;
}
.booking-mode-card.active .booking-mode-card__icon {
  color: var(--gold);
}
.booking-mode-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.booking-mode-card__sub {
  font-size: 0.7rem;
  color: var(--grey);
  line-height: 1.4;
}

.booking-panel {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.4s ease;
}
.booking-panel.panel-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  max-height: 1900px;
}
.home-location-field {
  margin-top: 0.5rem;
}
textarea.form-input {
  resize: vertical;
  min-height: 90px;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ================================================
       YOUTUBE 3-VIDEO GRID
       ================================================ */
.yt-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.yt-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.yt-section__channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  transition: var(--transition);
}
.yt-section__channel-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.yt-section__channel-link i {
  color: #ff0000;
}
.yt-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.yt-grid__item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.yt-grid__item--featured {
  grid-row: 1 / 3;
}
.yt-grid__item--featured .yt-facade__play-icon {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}
.yt-grid__item .yt-facade {
  width: 100%;
  height: 100%;
  min-height: 220px;
  margin-top: 0;
}
.yt-grid__item--featured .yt-facade {
  min-height: 440px;
}
.yt-facade__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 2.5rem 1.2rem 1rem;
  pointer-events: none;
}
.yt-facade__meta-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.yt-grid__item--featured .yt-facade__meta-title {
  font-size: 1rem;
}
.yt-facade__meta-duration {
  font-size: 0.68rem;
  color: var(--grey-light);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .yt-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .yt-grid__item--featured {
    grid-row: auto;
  }
  .yt-grid__item .yt-facade,
  .yt-grid__item--featured .yt-facade {
    min-height: 55vw;
  }
  .yt-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================
       LOCATION / MAP SECTION
       ================================================ */
.location {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.location__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: stretch;
}
.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.location__detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.location__detail-icon {
  width: 46px;
  height: 46px;
  background: rgba(133, 117, 78, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.location__detail-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.3rem;
}
.location__detail-value {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}
.location__detail-value a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.location__detail-value a:hover {
  opacity: 0.75;
}
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.location__map-wrap {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 400px;
}
.location__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.3s ease;
}
.location__map-wrap:hover iframe {
  filter: grayscale(0%) contrast(1);
}
.location__map-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 20px solid var(--gold);
  border-bottom: 20px solid transparent;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  .location__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location__map-wrap {
    min-height: 300px;
  }
  .location__map-wrap iframe {
    min-height: 300px;
  }
}

/* ================================================
       SOBRE PAGE — SHARED PAGE HERO
       ================================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--black);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 70% 40%,
      rgba(81, 41, 68, 0.6) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 80%,
      rgba(133, 117, 78, 0.1) 0%,
      transparent 55%
    ),
    #0a0a0a;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.page-hero__breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.page-hero__breadcrumb a:hover {
  opacity: 0.7;
}
.page-hero__breadcrumb span {
  color: var(--grey);
}
.page-hero__diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* ================================================
       SOBRE PAGE — STORY / TIMELINE
       ================================================ */
.story {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--black);
}
.story__intro {
  max-width: 70ch;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.story__intro p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--grey-light);
  line-height: 1.85;
  margin-top: 1.2rem;
}
.story__big-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 3rem 0;
  line-height: 1.3;
}
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline__item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px var(--gold);
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.timeline__text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.75;
  max-width: 55ch;
}

/* ================================================
       SOBRE PAGE — BRAND DNA
       ================================================ */
.brand-dna {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-dna__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-dna__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.brand-dna__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}
.brand-dna__img:first-child {
  margin-top: 2rem;
}
.brand-dna__color-palette {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.brand-dna__swatch {
  flex: 1;
  height: 36px;
  position: relative;
}
.brand-dna__swatch-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.4rem;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--grey);
  white-space: nowrap;
}
.brand-dna__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.brand-pillar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.4rem 1.2rem;
  transition: var(--transition);
}
.brand-pillar:hover {
  border-color: var(--gold);
}
.brand-pillar__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.brand-pillar__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.brand-pillar__text {
  font-size: 0.78rem;
  color: var(--grey-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .brand-dna__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .brand-dna__pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .brand-dna__pillars {
    grid-template-columns: 1fr;
  }
}

/* ================================================
       SOBRE PAGE — MANIFESTO BANNER
       ================================================ */
.manifesto {
  background: var(--purple-dark);
  border-top: 1px solid rgba(133, 117, 78, 0.3);
  border-bottom: 1px solid rgba(133, 117, 78, 0.3);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(133, 117, 78, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.manifesto__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.manifesto__quote span {
  color: var(--gold);
}
.manifesto__sub {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.6);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

/* ================================================
       SOBRE PAGE — CTA SECTION
       ================================================ */
.sobre-cta {
  background: var(--black);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}
.sobre-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ================================================
       CORREÇÃO DE RESPONSIVIDADE (< 480px)
       ================================================ */
@media (max-width: 480px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    padding: 0 1rem;
  }
  .nav__inner {
    gap: 0.5rem;
  }
  .nav__logo-text {
    font-size: 1.1rem;
  }
  .nav__actions .btn--primary {
    display: none;
  }
  .nav__actions {
    gap: 0.5rem;
  }

  .mobile-cta-bar {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }
  .mobile-cta-bar .btn {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    flex-shrink: 1;
    text-align: center;
    justify-content: center;
  }
}
.tit_l {
  color: #a8966a;
}
