/* ═══════════════════════════════════════════════
   ARAPUKA BARBER — Premium Dark Theme CSS
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e0c169;
  --gold-dark: #a88732;
  --copper: #d4a373;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --white: #f0f4ff;
  --white-pure: #ffffff;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 30px rgba(43, 127, 255, 0.18);
  --shadow-glow: 0 0 60px rgba(43, 127, 255, 0.1);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;

  /* Barreira: Anti-cópia global */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Restaura seleção de texto para campos de texto/formulários, senão quebra interação */
input,
textarea,
select {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* Campo invisível do Honeypot */
.honeypot-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

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

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

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(43, 127, 255, 0.35);
  animation: shimmer 3s ease infinite;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(43, 127, 255, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(43, 127, 255, 0.5);
  color: var(--gold-light);
  background: rgba(43, 127, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(43, 127, 255, 0.12);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}


@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ── SECTION LABELS / TITLES ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--gray-light);
  max-width: 520px;
  font-size: 1rem;
}

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

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

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(43, 127, 255, 0.15), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-symbol {
  color: var(--gold);
  font-size: 1.2rem;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-text em {
  font-style: normal;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

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

.nav-link.active::after {
  width: 60%;
}

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

.nav-link:hover::after {
  width: 60%;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}

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

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

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

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(43, 127, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 100%, rgba(26, 95, 212, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #080808 0%, #0a0a0a 40%, #080808 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

/* Animated background lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 127, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 127, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 80px 80px, 80px 80px;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(43, 127, 255, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(43, 127, 255, 0.06);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white-pure);
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(43, 127, 255, 0.5);
  border-bottom: 1.5px solid rgba(43, 127, 255, 0.5);
  transform: rotate(45deg);
  animation: bounceArrow 1.8s ease-in-out infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 0.5;
  }
}

/* Particle stars */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration, 3s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes twinkle {

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

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

/* ═══════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════ */
.sobre {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 127, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.sobre-gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  aspect-ratio: 4/5;
  padding-bottom: 60px;
  /* fix bottom badge overlap on mobile */
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(43, 127, 255, 0.15);
  display: block;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 127, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  background: rgba(10, 10, 10, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transform: translateY(15px);
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(43, 127, 255, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 0.8;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.sobre-badge-float {
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 10;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(43, 127, 255, 0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow), var(--shadow-gold);
  backdrop-filter: blur(12px);
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-content strong {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.badge-content small {
  color: var(--gray-light);
  font-size: 0.8rem;
  line-height: 1.2;
}

.sobre-desc {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.sobre-desc strong {
  color: var(--white);
}

.sobre-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  padding: 24px;
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.1);
  border-radius: var(--radius);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.stat-item strong {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold-light);
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(43, 127, 255, 0.15);
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(43, 127, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(43, 127, 255, 0.06);
}

.social-link.wpp:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}

/* ═══════════════════════════════════════════════
   PRODUTOS
   ═══════════════════════════════════════════════ */
.produtos {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.produtos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 127, 255, 0.2), transparent);
}

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.produto-card {
  background: var(--dark-3);
  border: 1px solid rgba(43, 127, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
  position: relative;
}

.produto-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.produto-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 127, 255, 0.25);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.produto-card:hover::after {
  opacity: 1;
}

.produto-imagem {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  background: #000;
  overflow: hidden;
}

.produto-imagem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.produto-card:hover .produto-imagem img {
  transform: scale(1.08);
}

.produto-conteudo {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.produto-conteudo h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.produto-tipo {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
}

.produto-conteudo p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.produto-indicacao {
  background: rgba(43, 127, 255, 0.05);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 24px;
  border-left: 2px solid var(--gold-dark);
}

.produto-indicacao strong {
  color: var(--white);
}

.produto-preco {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.price-value {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-cents {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════ */
.servicos {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 127, 255, 0.2), transparent);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servico-card {
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation-delay: var(--delay, 0s);
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 127, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.servico-card:hover {
  border-color: rgba(43, 127, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-gold);
  background: var(--dark-3);
}

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

.featured-card {
  background: linear-gradient(160deg, #0a1020 0%, #0d1428 100%);
  border-color: rgba(43, 127, 255, 0.3) !important;
  box-shadow: var(--shadow-gold);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.servico-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.card-price {
  margin-bottom: 20px;
}

.price-tag {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.price-tag sup {
  font-size: 0.9rem;
  vertical-align: super;
  font-weight: 400;
}

.card-cta {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid rgba(43, 127, 255, 0.35);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition-fast);
}

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

/* ═══════════════════════════════════════════════
   COMBOS
   ═══════════════════════════════════════════════ */
.combos {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.combos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(43, 127, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.combo-card {
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.combo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.combo-card:hover {
  border-color: rgba(43, 127, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.combo-card:hover::after {
  opacity: 1;
}

.combo-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.combo-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  color: var(--white);
}

.combo-card>p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.combo-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.combo-includes li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 4px;
}

.combos-note {
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(43, 127, 255, 0.2);
  border-radius: var(--radius);
  color: var(--gray-light);
  font-size: 0.9rem;
}

.combos-note strong {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════
   AGENDAMENTO
   ═══════════════════════════════════════════════ */
.agendamento {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.agendamento::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 127, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.agendamento-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.agendamento-info>p {
  color: var(--gray-light);
  margin-bottom: 36px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.agenda-horarios {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(43, 127, 255, 0.1);
}

.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--dark-2);
  transition: background var(--transition-fast);
}

.horario-item:hover {
  background: var(--dark-3);
}

.horario-item:not(:last-child) {
  border-bottom: 1px solid rgba(43, 127, 255, 0.06);
}

.horario-dias {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
}

.horario-horas {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.horario-item.closed .horario-horas {
  color: #e05555;
}

.agendamento-botoes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 600px) {
  .agendamento-botoes {
    flex-direction: row;
    justify-content: center;
  }
}

/* Form */
.agendamento-form-wrapper {
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.agendamento-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(43, 127, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(43, 127, 255, 0.45);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(0deg);
  cursor: pointer;
}

/* Form groups wrapper for visual validation icons */
.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding-right: 40px;
  /* Space for validation icon */
}

/* Validation success state (JS will add .is-valid class) */
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
  border-color: #25d366;
}

.form-group input.is-valid+.valid-icon,
.form-group select.is-valid+.valid-icon,
.form-group textarea.is-valid+.valid-icon {
  opacity: 1;
  transform: scale(1);
}

.valid-icon {
  position: absolute;
  right: 14px;
  top: 40px;
  color: #25d366;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-fast);
  pointer-events: none;
}

/* Input validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid {
  border-color: rgba(224, 85, 85, 0.35);
}

/* ═══════════════════════════════════════════════
   LOCALIZAÇÃO
   ═══════════════════════════════════════════════ */
.localizacao {
  padding: 120px 0;
  background: var(--dark);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.loc-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.loc-item p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.loc-item p a {
  color: var(--gold-light);
  transition: color var(--transition-fast);
}

.loc-item p a:hover {
  color: var(--white);
}

.loc-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(43, 127, 255, 0.12);
  box-shadow: var(--shadow);
}

.loc-map iframe {
  display: block;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(43, 127, 255, 0.1);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand>p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(43, 127, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--gray);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(43, 127, 255, 0.06);
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 0.87rem;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer-links ul a:hover {
  color: var(--gold-light);
}

.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gray);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(43, 127, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-tagline {
  color: var(--gold-dark) !important;
}

/* ═══════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════ */
.depoimentos {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.depoimento-card {
  background: var(--dark-3);
  border: 1px solid rgba(43, 127, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 127, 255, 0.2);
  box-shadow: var(--shadow);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.depoimento-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.depoimento-info h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.depoimento-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.depoimento-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  font-style: italic;
}

.depoimento-text::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--gold-dark);
  position: relative;
  top: 10px;
  left: -2px;
  line-height: 0;
}

/* ═══════════════════════════════════════════════
   FAQ - PERGUNTAS FREQUENTES
   ═══════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--dark);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(43, 127, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: transparent;
  border: none;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 11px;
  left: 4px;
  right: 4px;
  height: 2px;
}

.faq-icon::after {
  top: 4px;
  bottom: 4px;
  left: 11px;
  width: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Sufficient height for most answers */
}

/* ═══════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════ */
.wpp-float,
.insta-float {
  position: fixed;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: var(--transition);
}

.wpp-float {
  bottom: 28px;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.insta-float {
  bottom: 100px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
}

.insta-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(214, 36, 159, 0.6);
}

.wpp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}

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

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

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-hero {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

.reveal-hero {
  transform: translateY(30px) scale(0.98);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-hero.visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}

/* ═══════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE
   Base = mobile (<480px), depois min-width para telas maiores
   ═══════════════════════════════════════════════ */

/* ── BASE MOBILE (padrão — telas pequenas) ── */

/* Container com padding lateral generoso no mobile */
.container {
  padding: 0 18px;
}

/* Seções com padding vertical reduzido no mobile */
.sobre,
.produtos,
.servicos,
.combos,
.agendamento,
.localizacao {
  padding: 80px 0;
}

/* Header de seção centralizado */
.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.75rem;
}

.section-subtitle {
  font-size: 0.92rem;
  max-width: 100%;
}

/* ── HERO ── */
.hero-title {
  font-size: clamp(2rem, 9vw, 2.8rem);
}

.hero-subtitle {
  font-size: 0.95rem;
}

.hero-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
}

/* ── NAVBAR ── */
.nav-links {
  display: none;
}

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
}

.nav-links.open .nav-link {
  font-size: 1.4rem;
  color: var(--white);
  padding: 14px 40px;
  border-radius: 12px;
  background: rgba(43, 127, 255, 0.06);
  width: 260px;
  text-align: center;
}

.nav-links.open .nav-link::after {
  display: none;
}

/* ── SOBRE ── */
.sobre-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.sobre-visual {
  order: -1;
}

.sobre-img-wrapper {
  aspect-ratio: 4/3;
}

.sobre-badge-float {
  right: 12px;
  bottom: 16px;
}

.sobre-stats {
  flex-direction: column;
  gap: 0;
}

.sobre-stats .stat-item {
  padding: 16px 0;
}

.stat-divider {
  width: 100%;
  height: 1px;
}

.sobre-social {
  flex-direction: column;
  gap: 10px;
}

.social-link {
  justify-content: center;
  padding: 12px 20px;
}

/* ── SERVIÇOS ── */
.servicos-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.servico-card {
  padding: 28px 20px 22px;
  text-align: center;
}

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  margin-top: 4px;
}

/* ── COMBOS ── */
.combos-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 32px;
}

.combo-card {
  padding: 28px 20px;
  text-align: center;
  align-items: center;
}

.combo-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.combos-note {
  padding: 18px 16px;
  text-align: center;
}

/* ── AGENDAMENTO ── */
.agendamento-wrapper {
  grid-template-columns: 1fr;
  gap: 36px;
}

.agendamento-info>p {
  margin-bottom: 24px;
}

.agendamento-form-wrapper {
  padding: 28px 18px;
}

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

.btn-full {
  padding: 16px 20px;
  font-size: 0.95rem;
}

/* ── LOCALIZAÇÃO ── */
.loc-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.loc-map iframe {
  height: 260px;
}

.loc-info {
  gap: 20px;
}

.loc-info>.btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  padding: 56px 0 0;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  text-align: center;
}

.footer-brand .nav-logo {
  justify-content: center;
}

.footer-social {
  justify-content: center;
}

.footer-links ul {
  align-items: center;
}

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

/* ── BOTÕES FLUTUANTES ── */
.wpp-float,
.insta-float {
  right: 16px;
  width: 52px;
  height: 52px;
}

.wpp-float {
  bottom: 16px;
}

.insta-float {
  bottom: 80px;
}

/* ═══════════════════════════════════════════════
   TABLET  ≥ 600px
   ═══════════════════════════════════════════════ */
@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: none;
    width: auto;
    gap: 14px;
  }

  .hero-actions .btn {
    width: auto;
    padding: 15px 28px;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
  }

  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin: 0;
  }

  .combos-grid {
    max-width: none;
    margin: 0 0 32px;
  }

  .sobre-social {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .social-link {
    justify-content: flex-start;
    flex: 1 1 auto;
  }

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

  .footer-brand .nav-logo {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links ul {
    align-items: flex-start;
  }

  .wpp-float,
  .insta-float {
    right: 24px;
    width: 58px;
    height: 58px;
  }

  .wpp-float {
    bottom: 24px;
  }

  .insta-float {
    bottom: 94px;
  }
}

/* ═══════════════════════════════════════════════
   DESKTOP PEQUENO  ≥ 768px
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {

  .sobre,
  .produtos,
  .servicos,
  .combos,
  .agendamento,
  .localizacao {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .section-subtitle {
    font-size: 1rem;
    max-width: 520px;
  }

  .sobre-stats {
    flex-direction: row;
    gap: 24px;
  }

  .sobre-stats .stat-item {
    padding: 0;
  }

  .stat-divider {
    width: 1px;
    height: 36px;
  }

  .agendamento-form-wrapper {
    padding: 40px 36px;
  }

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

  .loc-map iframe {
    height: 350px;
  }

  .card-cta {
    display: inline-block;
    width: auto;
  }

  .combo-card {
    align-items: flex-start;
    text-align: left;
  }

  .combo-card .btn {
    width: auto;
  }

  .loc-info>.btn {
    width: auto;
  }
}

/* ═══════════════════════════════════════════════
   DESKTOP  ≥ 900px
   ═══════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

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

  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .sobre-visual {
    order: 0;
  }

  .sobre-img-wrapper {
    aspect-ratio: 4/5;
  }

  .sobre-gallery-grid {
    padding-bottom: 0;
    /* Reset mobile padding on larger screens */
  }

  .sobre-badge-float {
    right: -20px;
    bottom: 30px;
  }

  .sobre-social {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .combos-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 48px;
  }

  .loc-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .loc-map iframe {
    height: 400px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    text-align: left;
  }

  .footer-brand .nav-logo {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links ul {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 0;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════
   WIDE  ≥ 1100px
   ═══════════════════════════════════════════════ */
@media (min-width: 1100px) {

  .sobre,
  .produtos,
  .servicos,
  .combos,
  .galeria,
  .agendamento,
  .localizacao {
    padding: 120px 0;
  }

  .servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .agendamento-form-wrapper {
    padding: 48px;
  }
}

/* ═══════════════════════════════════════════════
   GALERIA
   ═══════════════════════════════════════════════ */
.galeria {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.galeria::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 127, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid principal – mobile: 1 col; cresce nos breakpoints */
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.galeria-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--dark-3);
  border: 1px solid rgba(43, 127, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  /* Placeholder visual enquanto imagem não carregar */
  background: linear-gradient(160deg, #0a1020 0%, #0d1428 100%);
}

.galeria-item:hover img {
  transform: scale(1.06);
}

.galeria-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(43, 127, 255, 0.15);
}

/* Overlay com rótulo */
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 25, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-pure);
  letter-spacing: 0.04em;
  background: rgba(43, 127, 255, 0.15);
  border: 1px solid rgba(43, 127, 255, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(6px);
}

/* Card CTA (último item da grid) */
.galeria-cta-card {
  background: linear-gradient(160deg, #060d1f 0%, #0a1428 100%);
  border: 1px dashed rgba(43, 127, 255, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.galeria-cta-card:hover {
  transform: none;
  box-shadow: none;
}

.galeria-cta-inner {
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.galeria-cta-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 4px;
}

.galeria-cta-inner h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
}

.galeria-cta-inner p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 4px;
}

/* Botão "Ver mais no Instagram" */
.galeria-follow {
  text-align: center;
  margin-top: 40px;
}

.galeria-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(131, 58, 180, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  background: rgba(131, 58, 180, 0.05);
  transition: var(--transition);
}

.galeria-follow-link:hover {
  border-color: #833AB4;
  color: #E1306C;
  background: rgba(131, 58, 180, 0.1);
  transform: translateY(-2px);
}

/* Responsivo – tablet (≥ 560px): 2 colunas */
@media (min-width: 560px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsivo – desktop (≥ 900px): 3 colunas */
@media (min-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .galeria-item {
    aspect-ratio: 3 / 4;
  }
}

/* Placeholder visual quando a imagem não estiver disponível */
.galeria-item img[src$=".webp"]::after {
  content: '✂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.06;
  background: linear-gradient(160deg, #0a1020 0%, #0d1428 100%);
}

/* %% PREFERS REDUCED MOTION (Acessibilidade) %% */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* INLINE STYLE REPLACEMENTS FOR CSP COMPLIANCE */
.delay-0 {
  --delay: 0s;
}

.delay-80 {
  --delay: 0.08s;
}

.delay-100 {
  --delay: 0.1s;
}

.delay-150 {
  --delay: 0.15s;
}

.delay-160 {
  --delay: 0.16s;
}

.delay-200 {
  --delay: 0.2s;
}

.delay-240 {
  --delay: 0.24s;
}

.delay-300 {
  --delay: 0.3s;
}

.delay-320 {
  --delay: 0.32s;
}

.delay-400 {
  --delay: 0.4s;
}

.delay-480 {
  --delay: 0.48s;
}

.delay-560 {
  --delay: 0.56s;
}

.valid-icon-top {
  top: 32px !important;
}

.iframe-border-0 {
  border: 0 !important;
}

#customToast.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--ff-sans);
}

/* ═══════════════════════════════════════════════
   MODAL WHATSAPP (Profissionais)
   ═══════════════════════════════════════════════ */
.wpp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.wpp-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.wpp-modal-content {
  background: var(--dark-2);
  border: 1px solid rgba(43, 127, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.wpp-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wpp-modal-overlay.active .wpp-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wpp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--gray-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wpp-modal-close:hover {
  background: rgba(224, 85, 85, 0.15);
  color: #e05555;
  transform: rotate(90deg);
}

.wpp-modal-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.wpp-modal-content p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.wpp-modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpp-pro-btn {
  background: var(--dark-3);
  border: 1px solid rgba(43, 127, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wpp-pro-btn::after {
  content: '→';
  position: absolute;
  right: 24px;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wpp-pro-btn:hover {
  background: linear-gradient(145deg, var(--dark-3), rgba(43, 127, 255, 0.1));
  border-color: rgba(43, 127, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
}

.wpp-pro-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.pro-icon {
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.03);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.pro-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-info strong {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pro-info span {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-family: var(--ff-mono, monospace);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .wpp-modal-content {
    padding: 32px 24px;
  }

  .wpp-pro-btn {
    padding: 16px;
    gap: 16px;
  }

  .pro-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .wpp-pro-btn::after {
    right: 16px;
  }
}

.wpp-pro-btn::after {
  right: 16px;
}
}