/* =====================================================
   tema-salao.css  –  Tema "Salão de Beleza" (padrão)
   Elis Silva – Sistema de Gestão
   ===================================================== */

:root {
  /* Paleta feminina / elegante */
  --primary:        #c9a96e;
  --primary-dark:   #a8804a;
  --primary-light:  #f5ead8;
  --secondary:      #2d2d2d;
  --accent:         #e91e8c;

  /* Backgrounds */
  --bg-color:       #fff8f0;
  --bg-card:        #ffffff;
  --bg-sidebar:     #2d2d2d;

  /* Textos */
  --text-main:      #333333;
  --text-muted:     #888888;
  --text-light:     #bbbbbb;

  /* Bordas / sombras */
  --border-color:   #e8ddd0;
  --shadow-sm:      0 2px 8px rgba(201,169,110,.12);
  --shadow-md:      0 6px 20px rgba(201,169,110,.18);
  --shadow-lg:      0 12px 40px rgba(201,169,110,.22);

  /* Raios */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Tipografia */
  --font-titulo: 'Playfair Display', Georgia, serif;
  --font-corpo:  'Lato', 'Helvetica Neue', sans-serif;
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

body {
  font-family: var(--font-corpo);
  color: var(--text-main);
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titulo);
}

/* ── Hero da página pública ── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #5a3e2b 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23c9a96e' opacity='.25'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; opacity: .85; margin-bottom: 32px; }

/* ── Botões temáticos ── */
.btn-tema {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-decoration: none;
}
.btn-tema-primary {
  background: var(--primary);
  color: #fff;
}
.btn-tema-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-tema-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-tema-outline:hover { background: var(--primary); color: #fff; }

/* ── Cards de serviço (público) ── */
.servico-public-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border-color);
}
.servico-public-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.servico-public-card .card-img { width: 100%; height: 160px; object-fit: cover; background: var(--primary-light); }
.servico-public-card .card-body { padding: 18px; }
.servico-public-card .card-title { font-family: var(--font-titulo); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.servico-public-card .card-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* ── Decoradores ── */
.section-divider {
  display: flex; align-items: center; gap: 16px; margin: 48px 0 32px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-color);
}
.section-divider-icon { color: var(--primary); font-size: 1.2rem; }

/* ── Footer ── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
  padding: 40px 24px 24px;
  font-size: .88rem;
}
.site-footer a { color: var(--primary); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
