/* ============================================================
   JULIO SENIOR BARBER — Premium CSS
   Refatorado: Hero CSS Grid, media queries unificadas, sem calc() fragil
   ============================================================ */

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

:root {
  --gold: #C8A96E;
  --gold-light: #DFC28A;
  --gold-dark: #A0823E;
  --black: #080808;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --white: #FFFFFF;
  --white-muted: rgba(255, 255, 255, 0.5);
  --white-subtle: rgba(255, 255, 255, 0.08);
  --text-primary: #E8E0D0;
  --text-secondary: rgba(232, 224, 208, 0.65);
  --border: rgba(200, 169, 110, 0.15);
  --border-light: rgba(255, 255, 255, 0.07);
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --font-bebas: 'Bebas Neue', cursive;
  --section-gap: 120px;
  --container-max: 1280px;
  --container-pad: 40px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  font-family: var(--font-sans);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), opacity 0.2s;
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease);
  opacity: 0.6;
}

.cursor-outline.hovered {
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 110, 0.08);
  border-color: var(--gold-light);
  opacity: 1;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 24px;
  animation: pulseGold 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: loadBar 2s var(--ease) forwards;
}

@keyframes loadBar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulseGold {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-padding {
  padding: var(--section-gap) 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-tag.light {
  color: var(--gold-light);
}

.section-tag.light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-tag {
  justify-content: center;
}

.section-header .section-tag::before {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(200, 169, 110, 0.25);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 18px 28px;
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}

.btn-whatsapp i {
  color: #25D366;
  font-size: 18px;
}

.btn-whatsapp:hover {
  border-color: #25D366;
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease);
}

#header.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: padding 0.4s var(--ease);
}

#header.scrolled .nav-container {
  padding: 18px 48px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-self: start;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 5px;
}

.nav-logo .logo-sub {
  font-size: 8px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s;
  position: relative;
}

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

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

.nav-link:hover::after,
.nav-link.active-nav::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.3s var(--ease);
  justify-self: end;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO — CSS GRID (ARQUITETURA DEFINITIVA)
   Grid de 2 colunas: sem position absolute no hero-bg.
   Overlay cobre toda a hero via position absolute no container.
   Zero calc(), zero gaps, zero linhas brancas.
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 48fr 52fr;
  background-color: var(--black);
  overflow: hidden;
}

/* Overlay cobre TODA a hero — elimina qualquer linha de juncao */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--black) 0%,
      var(--black) 30%,
      rgba(8, 8, 8, 0.85) 45%,
      rgba(8, 8, 8, 0.3) 60%,
      transparent 100%),
    linear-gradient(to top, var(--black) 0%, transparent 20%),
    linear-gradient(to bottom, var(--black) 0%, transparent 15%);
  z-index: 2;
  pointer-events: none;
}

/* Coluna esquerda: texto — grid-column garante posicao independente da ordem DOM */
.hero-content {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
  padding-right: 48px;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.hero-left {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}

/* Coluna direita: imagem
   - display: grid faz o <picture> (filho direto) esticar para 100% da celula
   - overflow: hidden garante que o zoom nao vaze para fora
   - sem contain: layout (conflitava com o parallax JS)
   ============================================================ */
.hero-bg {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  /* faz o <picture> preencher 100% x 100% */
  overflow: hidden;
  background-color: var(--black);
  padding-top: 0;
  align-items: start;
}

/* <picture> precisa de display: block + height: 100% para que <img> herde a altura */
.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

/* A imagem ocupa toda a celula grid.
   object-position: right top ancora o barbeiro (posicionado a direita na foto)
   na borda direita do container — elimina o fundo cinza exposto.
   Sem animation CSS — o JS parallax controla o transform sem conflito. */
.hero-img {
  display: block;
  width: 100%;
  height: 141%;
  object-fit: cover;
  object-position: 90% top;
  will-change: transform;
  transform: scale(1.0);
  /* escala base para cobrir area ao rolar */
  transform-origin: 72% top;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  writing-mode: vertical-rl;
}

/* Hero Typography */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  margin-bottom: 4vh;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 7.5vw, 120px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 3vh;
  letter-spacing: -1.5px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 5vh;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5vh;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  padding: 22px 52px;
  font-size: 14px;
  letter-spacing: 3px;
}

.hero-actions .btn-whatsapp {
  padding: 20px 36px;
  font-size: 14px;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 4vh;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-schedule {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.hero-schedule i {
  color: var(--gold);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}

.ticker .sep {
  color: var(--black-4);
  padding: 0 4px;
  font-size: 8px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

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

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  background: var(--black-2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  position: relative;
  overflow: hidden;
}

.sobre-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.88);
  transition: transform 0.8s var(--ease), filter 0.6s;
}

.sobre-img-wrap:hover .sobre-img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.sobre-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(200, 169, 110, 0.3);
  z-index: 2;
}

.float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.float-text {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.sobre-accent-line {
  position: absolute;
  top: 32px;
  left: -16px;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.sobre-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.sobre-pillars {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-subtle);
  border: 1px solid var(--border);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
}

.pillar i {
  color: var(--gold);
  font-size: 14px;
}

.pillar:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICOS
   ============================================================ */
.servicos {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.servicos::before {
  content: 'SERVICES';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-bebas);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold);
}

.service-card--vip {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, var(--black) 100%);
}

.vip-badge-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s var(--ease);
}

.service-icon-wrap i {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-icon-wrap {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.service-card:hover .service-icon-wrap i {
  transform: scale(1.2) rotate(-5deg);
}

.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 10px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 28px;
}

.service-footer {
  margin-top: auto;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.service-cta:hover {
  gap: 14px;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
}

.dif-card {
  background: var(--black-3);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.dif-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.dif-card:hover::after {
  width: 100%;
}

.dif-card:hover {
  background: var(--black-4);
}

.dif-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s var(--ease);
}

.dif-icon i {
  color: var(--gold);
  font-size: 22px;
}

.dif-card:hover .dif-icon {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  transform: scale(1.1);
}

.dif-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.dif-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.experiencia {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.experiencia-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.exp-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.exp-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.exp-step:not(:last-child) .step-line {
  display: block;
}

.step-num {
  font-family: var(--font-bebas);
  font-size: 72px;
  color: rgba(200, 169, 110, 0.08);
  line-height: 1;
  margin-bottom: -20px;
}

.step-line {
  position: absolute;
  top: 110px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease);
}

.step-icon i {
  color: var(--gold);
  font-size: 24px;
}

.exp-step:hover .step-icon {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  transform: scale(1.1) rotate(5deg);
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.galeria::before {
  content: 'GALLERY';
  position: absolute;
  top: 60px;
  right: 40px;
  font-family: var(--font-bebas);
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 8px;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.75) saturate(0.7);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-overlay i {
  font-size: 28px;
  color: var(--gold);
}

.gallery-overlay span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-img-wrap:hover img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(0.9);
}

.gallery-img-wrap:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================================
   PARA QUEM E
   ============================================================ */
.para-quem {
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}

.para-quem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background: linear-gradient(to right, rgba(200, 169, 110, 0.04), transparent);
  pointer-events: none;
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.pq-content .section-title {
  margin-bottom: 24px;
}

.pq-content .pq-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.pq-list {
  display: flex;
  flex-direction: column;
}

.pq-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}

.pq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.pq-item:hover {
  padding-left: 16px;
  border-color: rgba(200, 169, 110, 0.3);
}

.pq-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.pq-icon i {
  color: var(--gold);
  font-size: 16px;
}

.pq-item:hover .pq-icon {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.pq-text-wrap h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.pq-text-wrap p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: var(--black-3);
  border: 1px solid var(--border-light);
  padding: 40px;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}

.testimonial-card:hover::before {
  height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.t-quote {
  color: var(--gold);
  opacity: 0.3;
  font-size: 28px;
  margin-bottom: 20px;
}

.t-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  letter-spacing: 1px;
}

.t-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.t-info span {
  font-size: 11px;
  color: var(--text-secondary);
}

.t-stars {
  margin-left: auto;
}

.t-stars i {
  color: var(--gold);
  font-size: 10px;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  background: var(--black);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================================
   AGENDAMENTO
   ============================================================ */
.agendamento {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.agendamento::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(200, 169, 110, 0.04));
  pointer-events: none;
}

.agendamento-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.ag-content .section-title {
  margin-bottom: 24px;
}

.ag-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.ag-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ag-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.ag-info-item i {
  color: var(--gold);
  font-size: 18px;
  width: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ag-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}

.ag-info-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ag-form-wrap {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 56px 48px;
  position: relative;
}

.ag-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
}

.ag-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  transition: all 0.3s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.04);
}

.form-group select {
  cursor: pointer;
  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='%23C8A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--black-3);
  color: var(--white);
}

.form-group input[type="date"] {
  color-scheme: dark;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 8px;
}

.btn-submit:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.25);
}

.btn-submit i {
  font-size: 20px;
}

/* Form feedback — estilos estaticos (nao via JS) */
.form-feedback {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInFeedback 0.3s ease;
}

.form-feedback.error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #f87171;
}

.form-feedback.success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

@keyframes fadeInFeedback {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-question i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question span {
  color: var(--gold);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-bottom: 24px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
}

.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.25) saturate(0.5);
}

.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.7) 50%, rgba(8, 8, 8, 0.5) 100%);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 48px;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 48px;
  transition: all 0.3s var(--ease);
}

.btn-cta-final:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.3);
}

.btn-cta-final i {
  font-size: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 5px;
}

.footer-logo .logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 3px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 16px;
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-contact li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom i {
  color: var(--gold);
  font-size: 10px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  z-index: 900;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE — Telas Grandes 1920px+
   ============================================================ */
@media (min-width: 1920px) {
  :root {
    --container-max: 1600px;
    --section-gap: 160px;
  }

  .hero-content {
    padding-left: max(80px, calc((100vw - 1600px) / 2 + 80px));
  }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --section-gap: 90px;
    --container-pad: 32px;
  }

  .sobre-grid {
    gap: 64px;
  }

  .para-quem-grid {
    gap: 64px;
  }

  .agendamento-grid {
    gap: 64px;
  }

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

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

  .exp-steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .step-line {
    display: none;
  }

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

/* ============================================================
   CURSOR — Override mobile
   ============================================================ */
@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }
}
/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-visual {
    display: none;
  }

  .para-quem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .trust-indicators {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ============================================================
   VIEWPORTS BAIXOS (altura < 800px, largura > 768px)
   ============================================================ */
@media (min-width: 769px) and (max-height: 800px) {
  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .hero-badge {
    margin-bottom: 12px;
    padding: 6px 14px;
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(40px, 4.5vw, 64px);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 420px;
  }

  .hero-actions {
    margin-bottom: 20px;
    gap: 12px;
  }

  .hero-actions .btn-primary {
    padding: 14px 28px;
    font-size: 12px;
  }

  .hero-actions .btn-whatsapp {
    padding: 14px 24px;
    font-size: 12px;
  }

  .hero-stats {
    gap: 28px;
    margin-bottom: 20px;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 8.5px;
  }

  .hero-schedule {
    font-size: 11px;
  }
}

/* ============================================================
   MOBILE MENU + RESPONSIVE 768px (UNIFICADO)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
    --container-pad: 24px;
  }

  /* Nav mobile */
  .nav-container {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 100vw);
    height: 100vh;
    background: var(--black-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 8px;
    transition: right 0.5s var(--ease);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 32px;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white-muted);
    padding: 10px 0;
  }

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

  .nav-cta {
    display: none;
  }

  /* Hero mobile: coluna unica (Texto em cima, Imagem embaixo) */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 380px;
    height: auto;
    min-height: 100svh;
    padding-top: 72px;
    display: grid;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    order: 1;
    padding: 40px 24px 32px;
    align-items: center;
    text-align: center;
    height: auto;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-bg {
    grid-column: 1;
    grid-row: 2;
    order: 2;
    height: 380px;
    display: grid;
    position: relative;
  }

  .hero-bg picture {
    height: 380px;
  }

  /* Em mobile nao ha parallax, resetamos o transform para position neutra */
  .hero-img {
    height: 100%;
    width: 100%;
    transform: scale(1.0);
    object-position: center bottom;
    object-fit: cover;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, var(--black) 0%, rgba(8, 8, 8, 0.5) 30%, transparent 60%),
      linear-gradient(to top, var(--black) 0%, transparent 30%);
    position: absolute;
    inset: 0;
  }

  .hero-badge {
    margin: 0 auto 20px;
    font-size: 9px;
  }

  .section-title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero-title {
    font-size: clamp(44px, 10vw, 68px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    text-align: center;
    margin: 0 auto 28px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 28px;
    justify-content: center;
    margin: 0 auto 24px;
    flex-wrap: wrap;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-divider {
    display: none;
  }

  .hero-schedule {
    justify-content: center;
    font-size: 11px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Sections */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .exp-steps {
    grid-template-columns: 1fr;
  }

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

  .trust-indicators {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ag-form-wrap {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .cta-final-content {
    padding: 60px 24px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --container-pad: 20px;
  }

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

  .trust-indicators {
    grid-template-columns: 1fr;
  }

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

  .sobre-pillars {
    flex-direction: column;
  }

  .gallery-filter {
    flex-wrap: wrap;
  }
}

/* ============================================================
   RESPONSIVE — 360px (Minimo)
   ============================================================ */
@media (max-width: 360px) {
  :root {
    --container-pad: 16px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-whatsapp {
    padding: 16px 20px;
    font-size: 12px;
  }

  .nav-logo .logo-text {
    font-size: 18px;
  }
}
