/* ═══════════════════════════════════════════════
   HOME PAGE — CSS Específico
═══════════════════════════════════════════════ */

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--verde-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, var(--verde-dark) 52%, rgba(13,36,33,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 var(--section-px);
  max-width: 660px;
}
.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--amadeirado);
  margin-bottom: 28px;
  font-family: 'Corbel', sans-serif;
}
.hero-title {
  font-family: 'Condor', serif;
  font-size: clamp(64px, 7.5vw, 116px);
  font-weight: 300;
  line-height: 0.91;
  color: var(--bege);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--amadeirado); }
.hero-sub {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(249,236,204,0.58);
  max-width: 400px;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 44px; left: var(--section-px); z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(249,236,204,0.32);
}

/* ── HERO VISUAL PREMIUM (direita) ── */
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

/* Anéis geométricos concêntricos */
.hero-geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199,155,116,0.1);
  animation: rotateRing 40s linear infinite;
}
.hero-geo-ring--outer  { width: 520px; height: 520px; animation-duration: 60s; }
.hero-geo-ring--mid    { width: 380px; height: 380px; animation-duration: 45s; animation-direction: reverse; border-color: rgba(199,155,116,0.14); }
.hero-geo-ring--inner  { width: 240px; height: 240px; animation-duration: 30s; border-color: rgba(199,155,116,0.2); }
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Logo central no hero */
.hero-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
  animation: fadeIn 1.2s var(--ease-out) 0.6s both;
}
.hero-logo-mark {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(199,155,116,0.18));
}
.hero-logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-logo-name {
  font-family: 'Condor', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--bege);
  text-transform: uppercase;
}
.hero-logo-tagline {
  font-family: 'Corbel', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amadeirado);
  opacity: 0.8;
}

/* Linha vertical decorativa */

.area-divisor {
  display: flex; align-items: center;
  padding: 0 var(--section-px);
  height: 60px;
  background: var(--verde-dark);
  gap: 0;
}
.area-divisor-line { flex: 1; height: 1px; background: var(--amadeirado-dim); }
.area-divisor-diamond {
  width: 8px; height: 8px;
  background: var(--amadeirado-dim);
  transform: rotate(45deg);
  margin: 0 24px;
  flex-shrink: 0;
}

.hero-deco-line {
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(199,155,116,0.25), transparent);
}

/* Dots decorativos */
.hero-deco-dots {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-deco-dots span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amadeirado);
  opacity: 0.3;
  animation: pulseAlpha 2.5s ease-in-out infinite;
}
.hero-deco-dots span:nth-child(2) { animation-delay: 0.4s; }
.hero-deco-dots span:nth-child(3) { animation-delay: 0.8s; }
.hero-deco-dots span:nth-child(4) { animation-delay: 1.2s; }
.hero-deco-dots span:nth-child(5) { animation-delay: 1.6s; }
@keyframes pulseAlpha {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.7; }
}

/* ── ESPECIALIDADES ── */
#especialidades {
  padding: var(--section-py) var(--section-px);
  background: var(--verde-dark);
}
.espec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.espec-title {
  font-family: 'Condor', serif;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--bege);
  margin-bottom: 0;
}
.espec-title em { font-style: italic; color: var(--amadeirado); }
.espec-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(249,236,204,0.48);
  letter-spacing: 0.04em;
  max-width: 380px;
  align-self: end;
}
.espec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.espec-card {
  background: rgba(23,83,71,0.12);
  border: var(--border-gold);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  cursor: none;
}
.espec-card:hover { transform: translateY(-6px); border-color: rgba(199,155,116,0.45); }
.espec-card-visual { position: relative; overflow: hidden; }
.espec-card-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase;
  background: var(--verde); color: var(--bege);
  padding: 5px 14px; font-weight: 500;
}
.espec-card-tag.facial { background: var(--amadeirado); color: var(--verde-dark); }
.espec-card-body {
  padding: 32px 28px 36px;
}
.espec-card-body h3 {
  font-family: 'Condor', serif;
  font-size: 30px; font-weight: 400;
  color: var(--bege); margin-bottom: 12px;
}
.espec-card-body h3 em { font-style: italic; color: var(--amadeirado); }
.espec-card-body p {
  font-size: 13px; line-height: 1.85;
  color: rgba(249,236,204,0.45);
  margin-bottom: 22px;
}

/* ── NÚMEROS ── */
#numeros {
  padding: 80px var(--section-px);
  background: var(--verde);
  position: relative;
  overflow: hidden;
}
#numeros::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(199,155,116,0.07) 0%, transparent 70%);
}
.numeros-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--amadeirado-dim);
}

/* ── LEAD FORM ── */
#lead {
  padding: var(--section-py) var(--section-px);
  background: var(--verde-dark);
  position: relative;
}
#lead::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amadeirado-dim), transparent);
}
.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lead-title {
  font-family: 'Condor', serif;
  font-size: clamp(36px, 3.6vw, 56px);
  color: var(--bege); margin-bottom: 18px;
}
.lead-title em { font-style: italic; color: var(--amadeirado); }
.lead-sub {
  font-size: 13.5px; line-height: 1.9;
  color: rgba(249,236,204,0.5);
  margin-bottom: 36px;
}
.lead-features { display: flex; flex-direction: column; gap: 14px; }
.lead-feat {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: rgba(249,236,204,0.55);
}
.lead-feat-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--amadeirado);
}
.lead-form-wrap {
  background: rgba(23,83,71,0.14);
  border: var(--border-gold);
  padding: 40px 36px;
}
.lead-form-header { margin-bottom: 28px; }
.lead-form-header h3 {
  font-family: 'Condor', serif;
  font-size: 26px; font-weight: 400;
  color: var(--bege);
}
.form-note {
  font-size: 10.5px;
  color: rgba(249,236,204,0.28);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ── DEPOIMENTOS ── */
#depoimentos {
  padding: var(--section-py) 0;
  background: var(--verde-dark);
  overflow: hidden;
}
.depo-header {
  text-align: center;
  padding: 0 var(--section-px);
  margin-bottom: 56px;
}
.depo-title {
  font-family: 'Condor', serif;
  font-size: clamp(34px, 3.8vw, 56px);
  color: var(--bege); margin-bottom: 20px;
}
.depo-title em { font-style: italic; color: var(--amadeirado); }
.depo-rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.depo-rating-num {
  font-family: 'Condor', serif; font-size: 32px;
  font-weight: 300; color: var(--bege);
}
.depo-rating-count {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(249,236,204,0.35);
}
.depo-scroll-wrap {
  overflow-x: auto;
  padding: 8px var(--section-px) 24px;
  scrollbar-width: none;
}
.depo-scroll-wrap::-webkit-scrollbar { display: none; }
.depo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  cursor: grab;
}
.depo-card { width: 340px; }
.depo-hint {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(249,236,204,0.2);
  padding: 0 var(--section-px) 0;
}

/* ── LOCALIZAÇÃO ── */
#localizacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--verde-deep);
  border-top: var(--border-gold);
}
.loc-content {
  padding: var(--section-py) var(--section-px);
}
.loc-title {
  font-family: 'Condor', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  color: var(--bege); margin-bottom: 24px;
}
.loc-title em { font-style: italic; color: var(--amadeirado); }
.loc-badges {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.loc-badge {
  font-size: 12.5px;
  color: rgba(249,236,204,0.45);
  letter-spacing: 0.03em;
}
.loc-address {
  font-size: 13px; line-height: 2;
  color: rgba(249,236,204,0.45);
  font-style: normal;
  margin-bottom: 8px;
}
.loc-address strong { color: rgba(249,236,204,0.7); font-weight: 400; }
.loc-map {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.map-clickable {
  display: block;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  text-decoration: none;
}
.loc-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: none;
  filter: grayscale(45%) contrast(1.08) brightness(0.85);
  pointer-events: none;
  transition: filter 0.4s ease;
}
.loc-map:hover iframe { filter: grayscale(20%) contrast(1.05) brightness(0.95); }
.map-click-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(13,36,33,0.3);
}
.loc-map:hover .map-click-overlay { opacity: 1; }
.map-click-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--verde-dark);
  border: 1px solid var(--amadeirado);
  padding: 14px 24px;
  color: var(--amadeirado);
  font-family: 'Corbel', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: background 0.25s, color 0.25s;
}
.loc-map:hover .map-click-badge { background: var(--amadeirado); color: var(--verde-dark); }

/* ── RESPONSIVE HOME ── */
@media (max-width: 1024px) {
  .espec-grid { grid-template-columns: 1fr; gap: 24px; }
  .lead-wrap { grid-template-columns: 1fr; gap: 48px; }
  #localizacao { grid-template-columns: 1fr; }
  .loc-map { min-height: 300px; }
  .map-overlay { background: linear-gradient(to bottom, var(--verde-deep) 0%, transparent 18%); }
}
@media (max-width: 900px) {
  #hero { height: auto; min-height: 100svh; }
  .hero-content { padding: calc(var(--nav-h) + 48px) var(--section-px-sm) 80px; max-width: 100%; }
  .hero-stripes { width: 100%; opacity: 0.07; }
  .hero-scroll { display: none; }
  #especialidades { padding: var(--section-py-sm) var(--section-px-sm); }
  .espec-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  #numeros { padding: 56px var(--section-px-sm); }
  .numeros-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-divider { display: none; }
  #lead { padding: var(--section-py-sm) var(--section-px-sm); }
  .lead-form-wrap { padding: 28px 22px; }
  #depoimentos { padding: var(--section-py-sm) 0; }
  .depo-header { padding: 0 var(--section-px-sm); margin-bottom: 36px; }
  .depo-scroll-wrap { padding: 8px var(--section-px-sm) 20px; }
  .loc-content { padding: var(--section-py-sm) var(--section-px-sm); }
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-geo-ring--outer  { width: 400px; height: 400px; }
  .hero-geo-ring--mid    { width: 300px; height: 300px; }
  .hero-geo-ring--inner  { width: 200px; height: 200px; }
  .hero-logo-mark { width: 80px; }
  .hero-logo-name { font-size: 22px; }
}
@media (max-width: 900px) {
  .hero-visual { width: 100%; opacity: 0.12; }
  .hero-content { padding: calc(var(--nav-h) + 48px) var(--section-px-sm) 80px; max-width: 100%; }
  .hero-scroll { display: none; }
}

/* ── CAPTAÇÃO DE LEADS — estilos premium ── */
.lead-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Corbel', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amadeirado);
  border: var(--border-gold);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.lead-form-header h3 {
  font-family: 'Condor', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--bege);
  margin-bottom: 8px;
  line-height: 1.1;
}
.lead-form-header h3 em { font-style: italic; color: var(--amadeirado); }
.lead-form-header p {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(249,236,204,0.45);
  margin-bottom: 28px;
}

/* Prova social inline */
.lead-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: var(--border-gold);
}
.lead-proof-avatars {
  display: flex;
  flex-direction: row;
}
.lead-proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--verde);
  border: 2px solid var(--verde-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Condor', serif;
  font-size: 12px;
  color: var(--amadeirado);
  margin-left: -8px;
  flex-shrink: 0;
}
.lead-proof-avatar:first-child { margin-left: 0; }
.lead-social-proof p {
  font-size: 12.5px;
  color: rgba(249,236,204,0.45);
  line-height: 1.5;
}
.lead-social-proof p strong { color: var(--bege); font-weight: 400; }

/* ═══════════════════════════════════════════════════
   CUSTOMIZAÇÃO DO SELECT (MENU SUSPENSO)
═══════════════════════════════════════════════════ */

/* 1. Estilização base do select para remover o padrão do sistema */
#leadCaptureForm select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(23,83,71,0.2); /* Fundo translúcido elegante */
  color: var(--bege);
  cursor: pointer;
  /* Garante que o texto fique na cor bege padrão */
}

/* 2. O item de "Placeholder" (Selecione seu interesse) mais sutil */
#leadCaptureForm select option[value=""][disabled] {
  color: rgba(249, 236, 204, 0.4); 
}

/* 3. Estiliza as opções gerais da lista */
#leadCaptureForm select option {
  background-color: var(--verde-dark); /* Fundo verde escuro premium */
  color: var(--bege); /* Texto principal em bege */
  font-size: 14px;
  padding: 12px; /* Adiciona respiro entre as opções */
}

/* 4. Estiliza as Categorias/Títulos (Capilar, Facial) */
#leadCaptureForm select optgroup {
  background-color: var(--verde-deep, #0a1816); /* Fundo mais denso para criar separação */
  color: var(--amadeirado); /* O tom dourado/amadeirado da marca */
  font-family: 'Corbel', sans-serif; /* Fonte mais limpa para leitura */
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 8px 6px; /* Espaçamento para dar respiro aos títulos */
}

/* 5. Estiliza as opções que estão DENTRO das categorias */
#leadCaptureForm select optgroup option {
  background-color: var(--verde-dark);
  color: var(--bege);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 8px 16px;
}

/* 6. Corrige o hover para navegadores que permitem (como o Firefox) */
#leadCaptureForm select option:checked,
#leadCaptureForm select option:hover,
#leadCaptureForm select option:focus {
  background-color: var(--amadeirado) !important;
  color: var(--verde-dark) !important;
  box-shadow: 0 0 10px 100px var(--amadeirado) inset;
}