/* ============================================================
   CLÓVIS CABELEIREIROS — Design Premium | Modo Diurno/Noturno
   Paleta: Verde Elegante (#82c97d) + Dourado Champagne
   Fontes: Outfit (Le Monde Sans style) + Playfair Display
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

/* ---- CSS Custom Properties (Modo Diurno - Default) ---- */
:root {
  /* Cores Base */
  --verde: #82c97d;
  --verde-escuro: #2d6b3a;
  --verde-claro: #a8e0a4;
  --dourado: #c9a96e;
  --dourado-claro: #dfc99a;
  --dourado-escuro: #a8884a;
  --rose: #d4a5a5;
  --bordô: #6b2d3c;

  /* Modo Diurno */
  --bg-primary: #f8f9f8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f5f0;
  --bg-card: #ffffff;
  --bg-hero: linear-gradient(160deg, #1a3a1a 0%, #2d6b3a 30%, #82c97d 60%, #4a9a4a 100%);
  --bg-footer: #1a2e1a;
  --text-primary: #0a0a0a;
  --text-secondary: #2a2a2a;
  --text-muted: #555555;
  --text-on-dark: rgba(255, 255, 255, 0.85);
  --text-on-dark-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(130, 201, 125, 0.15);
  --border-strong: rgba(130, 201, 125, 0.3);
  --shadow-sm: rgba(0, 0, 0, 0.04);
  --shadow-md: rgba(0, 0, 0, 0.08);
  --shadow-lg: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(130, 201, 125, 0.1);
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: rgba(130, 201, 125, 0.1);
  --input-bg: #ffffff;
  --input-border: rgba(130, 201, 125, 0.2);
  --section-divider: var(--verde);
  --badge-bg: rgba(130, 201, 125, 0.1);
  --badge-border: rgba(130, 201, 125, 0.25);
  --hero-text: #0a1a0a;
  --hero-text-green: #1a3a1a;
  --hero-subtitle: #1a2e1a;
  --scrollbar-track: #f0f5f0;
  --scrollbar-thumb: var(--verde);
}

/* ---- Modo Noturno ---- */
[data-theme="dark"] {
  --bg-primary: #0d1a0d;
  --bg-secondary: #142214;
  --bg-tertiary: #1a2e1a;
  --bg-card: #1a2e1a;
  --bg-hero: linear-gradient(160deg, #0a120a 0%, #1a3a1a 30%, #2d6b3a 60%, #1a3a1a 100%);
  --bg-footer: #0a120a;
  --text-primary: #e8f0e8;
  --text-secondary: #b0c8b0;
  --text-muted: #7a9a7a;
  --text-on-dark: rgba(255, 255, 255, 0.9);
  --text-on-dark-muted: rgba(255, 255, 255, 0.4);
  --border-color: rgba(130, 201, 125, 0.1);
  --border-strong: rgba(130, 201, 125, 0.2);
  --shadow-sm: rgba(0, 0, 0, 0.2);
  --shadow-md: rgba(0, 0, 0, 0.3);
  --shadow-lg: rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(20, 34, 20, 0.9);
  --glass-border: rgba(130, 201, 125, 0.08);
  --header-bg: rgba(13, 26, 13, 0.92);
  --header-border: rgba(130, 201, 125, 0.08);
  --input-bg: #1a2e1a;
  --input-border: rgba(130, 201, 125, 0.15);
  --section-divider: var(--verde-claro);
  --badge-bg: rgba(130, 201, 125, 0.08);
  --badge-border: rgba(130, 201, 125, 0.15);
  --hero-text: #e8f0e8;
  --hero-text-green: #82c97d;
  --hero-subtitle: rgba(255, 255, 255, 0.6);
  --scrollbar-track: #0d1a0d;
  --scrollbar-thumb: var(--verde);
}

/* ---- Gradientes Compartilhados ---- */
:root {
  --gradiente-verde: linear-gradient(135deg, #82c97d 0%, #a8e0a4 50%, #82c97d 100%);
  --gradiente-dourado: linear-gradient(135deg, #c9a96e 0%, #dfc99a 50%, #c9a96e 100%);
  --gradiente-card: linear-gradient(145deg, var(--bg-card), var(--bg-tertiary));
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s ease;
}

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

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s ease, color 0.4s ease;
}

::selection {
  background: var(--verde);
  color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul { list-style: none; }

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

.section-padding {
  padding: 120px 0;
}

/* ---- Tipografia ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 .destaque {
  color: var(--verde);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 3rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.9;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Decorative Elements ---- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradiente-verde);
  margin: 0 auto 1.5rem;
  border-radius: 3px;
}

.section-divider.left {
  margin: 0 0 1.5rem;
}

/* ---- Botões Premium ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.btn-verde {
  background: var(--gradiente-verde);
  color: #1a2e1a;
  box-shadow: 0 8px 30px rgba(130, 201, 125, 0.35);
}

.btn-verde:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(130, 201, 125, 0.45);
}

.btn-dourado {
  background: var(--gradiente-dourado);
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-dourado:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--verde);
  color: var(--verde);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.75rem;
}

/* ============================================================
   TOGGLE MODO NOTURNO/DIURNO
   ============================================================ */
.theme-toggle {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--verde);
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px var(--shadow-md);
}

.theme-toggle:hover {
  transform: scale(1.1);
  border-color: var(--verde);
  box-shadow: 0 6px 20px rgba(130, 201, 125, 0.3);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

/* ============================================================
   HEADER / NAVEGAÇÃO
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 40px var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--verde);
  padding: 2px;
  transition: var(--transition-fast);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(130, 201, 125, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(130, 201, 125, 0); }
}

.logo:hover img {
  border-color: var(--dourado);
  transform: scale(1.08);
}

/* Nav Desktop */
.nav-list {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradiente-verde);
  transition: width 0.4s ease;
  border-radius: 2px;
}

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

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

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

/* Menu Hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO — Seção Principal
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-hero);
  overflow: hidden;
  padding-top: 80px;
  transition: background 0.6s ease;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(130, 201, 125, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(45deg, transparent 48%, var(--verde) 48%, var(--verde) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--verde) 48%, var(--verde) 52%, transparent 52%);
  background-size: 60px 60px;
  z-index: 1;
}

/* ---- Hero Watermark Animado ---- */
.hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.watermark-img {
  position: absolute;
  width: clamp(120px, 20vw, 280px);
  height: auto;
  opacity: 0;
  filter: grayscale(0.5) contrast(1.1) brightness(0.8);
  border-radius: 50%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform, opacity;
  border: 2px solid rgba(130, 201, 125, 0.1);
}

.wm-1  { top: 5%;   left: 5%;   animation: wmFloat1 14s ease-in-out infinite; animation-delay: 0s; }
.wm-2  { top: 15%;  right: 8%;  animation: wmFloat2 16s ease-in-out infinite; animation-delay: 1s; }
.wm-3  { top: 45%;  left: 2%;   animation: wmFloat3 13s ease-in-out infinite; animation-delay: 2s; }
.wm-4  { top: 60%;  right: 3%;  animation: wmFloat1 15s ease-in-out infinite; animation-delay: 0.5s; }
.wm-5  { top: 25%;  left: 35%;  animation: wmFloat2 12s ease-in-out infinite; animation-delay: 3s; }
.wm-6  { top: 70%;  left: 25%;  animation: wmFloat3 17s ease-in-out infinite; animation-delay: 1.5s; }
.wm-7  { top: 8%;   left: 55%;  animation: wmFloat1 11s ease-in-out infinite; animation-delay: 4s; }
.wm-8  { top: 50%;  left: 60%;  animation: wmFloat2 18s ease-in-out infinite; animation-delay: 2.5s; }
.wm-9  { top: 80%;  left: 50%;  animation: wmFloat3 14s ease-in-out infinite; animation-delay: 0.8s; }
.wm-10 { top: 35%;  left: 70%;  animation: wmFloat1 16s ease-in-out infinite; animation-delay: 3.5s; }
.wm-11 { top: 75%;  left: 75%;  animation: wmFloat2 13s ease-in-out infinite; animation-delay: 4.5s; }

@keyframes wmFloat1 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.08; }
  25% { transform: translateY(-20px) rotate(3deg) scale(1.05); opacity: 0.1; }
  50% { transform: translateY(10px) rotate(-2deg) scale(0.95); opacity: 0.06; }
  75% { transform: translateY(-12px) rotate(2deg) scale(1.03); opacity: 0.09; }
  90% { opacity: 0.08; }
  100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
}

@keyframes wmFloat2 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.07; }
  30% { transform: translateY(15px) rotate(-3deg) scale(1.04); opacity: 0.09; }
  55% { transform: translateY(-18px) rotate(2deg) scale(0.96); opacity: 0.05; }
  80% { transform: translateY(8px) rotate(-2deg) scale(1.02); opacity: 0.08; }
  90% { opacity: 0.07; }
  100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
}

@keyframes wmFloat3 {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.06; }
  35% { transform: translateY(-10px) rotate(2deg) scale(0.96); opacity: 0.08; }
  60% { transform: translateY(20px) rotate(-3deg) scale(1.05); opacity: 0.1; }
  85% { transform: translateY(-5px) rotate(1deg) scale(1); opacity: 0.07; }
  90% { opacity: 0.06; }
  100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
}

/* ---- Hero Content ---- */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 50px;
  color: var(--verde-claro);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--hero-text);
  margin-bottom: 0.5rem;
  line-height: 1.05;
  font-weight: 700;
}

.hero h1 .destaque {
  color: var(--hero-text-green);
  font-style: italic;
  display: inline-block;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--hero-subtitle);
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.9;
}

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

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: heroBounce 2.5s infinite;
}

.hero-scroll span {
  color: var(--text-on-dark-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--verde), transparent);
}

@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ---- Seção Serviços Destaque (Home) ---- */
.servicos-destaque {
  background: var(--bg-secondary);
  position: relative;
  transition: background 0.4s ease;
}

.servicos-destaque::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg-secondary);
  clip-path: ellipse(70% 100% at 50% 0%);
  transition: background 0.4s ease;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.servico-card {
  background: var(--gradiente-card);
  border-radius: var(--radius);
  padding: 45px 30px 35px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradiente-verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-md);
  border-color: var(--border-strong);
}

.servico-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 22px;
  background: var(--gradiente-verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #1a2e1a;
  box-shadow: 0 8px 25px rgba(130, 201, 125, 0.25);
  transition: var(--transition-fast);
}

.servico-card:hover .servico-icon {
  transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.servico-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Seção Sobre ---- */
.sobre {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(130, 201, 125, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sobre-imagem {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--bg-tertiary);
  position: relative;
  border: 1px solid var(--border-color);
}

.sobre-imagem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130, 201, 125, 0.1), transparent 50%);
  pointer-events: none;
}

.sobre-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-conteudo h2 {
  color: var(--text-primary);
}

.sobre-conteudo h2 .destaque {
  color: var(--verde);
  font-style: italic;
}

.sobre-conteudo p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

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

.stat-numero {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 8px;
}

/* ---- Galeria (Home) ---- */
.galeria {
  background: var(--bg-secondary);
  transition: background 0.4s ease;
}

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

.galeria-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.galeria-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 13, 0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.galeria-item-overlay span {
  color: #fff;
  font-weight: 400;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}

.galeria-item-overlay span i {
  color: var(--verde);
}

/* ---- Seção Depoimentos ---- */
.depoimentos {
  background: var(--bg-tertiary);
  position: relative;
  transition: background 0.4s ease;
}

.depoimentos-carrossel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 35px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.depoimento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-md);
  border-color: var(--border-strong);
}

.depoimento-quote {
  color: var(--verde);
  font-size: 3.5rem;
  line-height: 0.5;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  opacity: 0.4;
}

.depoimento-card p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.9;
  font-weight: 300;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.depoimento-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradiente-verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.depoimento-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0;
}

.depoimento-info span {
  font-size: 0.75rem;
  color: var(--verde);
  font-weight: 400;
  letter-spacing: 1px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: 100px 0 30px;
  position: relative;
  transition: background 0.4s ease;
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-footer);
  clip-path: ellipse(70% 100% at 50% 100%);
  transition: background 0.4s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--verde);
}

.footer-col p, .footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--verde);
  transform: translateX(5px);
}

.footer-col p i {
  color: var(--verde);
  width: 16px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(130, 201, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: 1.1rem;
  transition: var(--transition);
  margin-bottom: 0;
}

.footer-social a:hover {
  background: var(--gradiente-verde);
  color: #1a2e1a;
  transform: translateY(-5px);
  border-color: transparent;
}

.footer-horario li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  font-weight: 300;
}

.footer-horario li span:last-child {
  color: var(--verde);
}

.footer-bottom {
  border-top: 1px solid rgba(130, 201, 125, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  font-weight: 300;
}

/* ============================================================
   PÁGINA DE SERVIÇOS
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  background: var(--bg-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(130, 201, 125, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-on-dark);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* Filtros */
.categoria-filtros {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.categoria-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.categoria-btn:hover {
  border-color: var(--verde);
  color: var(--verde);
  transform: translateY(-2px);
}

.categoria-btn.active {
  background: var(--gradiente-verde);
  color: #1a2e1a;
  border-color: transparent;
}

/* Cards de Serviço */
.servicos-catalogo {
  background: var(--bg-secondary);
  transition: background 0.4s ease;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.catalogo-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px var(--shadow-sm);
}

.catalogo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px var(--shadow-md);
  border-color: var(--border-strong);
}

.catalogo-card-header {
  padding: 35px 30px 20px;
  border-bottom: 1px solid var(--border-color);
}

.catalogo-card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.catalogo-card-categoria {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(130, 201, 125, 0.1);
  color: var(--verde);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.catalogo-card-body {
  padding: 24px 30px;
  flex: 1;
}

.catalogo-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
}

.catalogo-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.catalogo-card-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.catalogo-card-info-item i {
  color: var(--verde);
  width: 16px;
}

.catalogo-card-footer {
  padding: 20px 30px;
  background: rgba(130, 201, 125, 0.03);
  border-top: 1px solid var(--border-color);
}

.catalogo-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   PÁGINA DE AGENDAMENTO
   ============================================================ */
.agendamento {
  background: var(--bg-secondary);
  transition: background 0.4s ease;
}

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

.agendamento-form {
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 50px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group label .required {
  color: var(--rose);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-xs);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  background: var(--input-bg);
  transition: var(--transition-fast);
  outline: none;
  font-weight: 300;
  color: var(--text-primary);
}

.form-control:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 4px rgba(130, 201, 125, 0.08);
}

.form-control.error {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
}

.form-error {
  font-size: 0.75rem;
  color: var(--rose);
  margin-top: 4px;
  display: none;
  font-weight: 300;
}

.form-error.visible {
  display: block;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2382c97d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Grade de Horários */
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.horario-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-xs);
  background: var(--input-bg);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-align: center;
  transition: var(--transition-fast);
  font-weight: 400;
  color: var(--text-primary);
}

.horario-btn:hover:not(.disabled) {
  border-color: var(--verde);
  background: rgba(130, 201, 125, 0.05);
}

.horario-btn.selected {
  border-color: var(--verde);
  background: var(--gradiente-verde);
  color: #1a2e1a;
}

.horario-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: var(--bg-tertiary);
}

/* Painel de confirmação */
.agendamento-confirmacao {
  display: none;
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.agendamento-confirmacao.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

.confirmacao-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradiente-verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.confirmacao-detalhes {
  text-align: left;
  max-width: 400px;
  margin: 24px auto;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.confirmacao-detalhes p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-primary);
}

.confirmacao-detalhes p i {
  color: var(--verde);
  width: 20px;
}

/* Sidebar do Agendamento */
.agendamento-sidebar {
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 50px;
  color: var(--text-primary);
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-color);
}

.agendamento-sidebar h3 {
  color: var(--verde);
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.agendamento-sidebar ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.agendamento-sidebar ul li i {
  color: var(--verde);
  width: 20px;
  font-size: 1rem;
}

/* ---- Agenda (próximos agendamentos) ---- */
.proximos-agendamentos {
  margin-top: 3rem;
}

.proximos-agendamentos h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.agendamento-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border-left: 4px solid var(--verde);
  transition: var(--transition-fast);
}

.agendamento-item:hover {
  box-shadow: 0 10px 30px var(--shadow-sm);
  transform: translateX(5px);
}

.agendamento-item-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.agendamento-item-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.agendamento-item-actions button {
  background: none;
  border: none;
  color: var(--rose);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.agendamento-item-actions button:hover {
  background: rgba(212, 165, 165, 0.1);
}

/* ============================================================
   PÁGINA GALERIA
   ============================================================ */
.galeria-page .galeria-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.galeria-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(130, 201, 125, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--verde);
}

/* ============================================================
   PÁGINA CONTATO
   ============================================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contato-info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 50px var(--shadow-sm);
}

.contato-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contato-info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--gradiente-verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e1a;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(130, 201, 125, 0.2);
}

.contato-info-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contato-info-text p, .contato-info-text a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.contato-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 50px var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--verde-claro);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .sobre-grid,
  .agendamento-wrapper,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .sobre-imagem {
    order: -1;
  }

  .agendamento-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -10px 0 60px var(--shadow-lg);
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 1px solid var(--border-color);
  }

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

  .nav-link {
    font-size: 1rem;
    color: var(--text-secondary);
  }

  .theme-toggle {
    top: 90px;
    right: 15px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

  .depoimentos-carrossel {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .agendamento-form {
    padding: 30px;
  }

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

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

  .horarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .contato-info-card {
    padding: 30px;
  }
  
  .agendamento-sidebar {
    padding: 30px;
  }
}