/* ===== VARIÁVEIS & RESET ===== */
:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --accent: #f5a623;
  --dark: #0f0f1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-accent: linear-gradient(135deg, #e94560, #f5a623);
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-hover: 0 20px 60px rgba(233,69,96,0.3);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--dark);
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--white); }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

/* ===== UTILITÁRIOS ===== */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--gray); font-size: 1.1rem; margin-bottom: 3rem; }
.divider {
  width: 60px; height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 1rem auto 2rem;
}

/* ===== BOTÕES ===== */
.btn-primary-custom {
  background: var(--gradient-accent);
  color: white !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(233,69,96,0.4);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white !important;
}
.btn-outline-custom {
  border: 2px solid var(--secondary);
  color: var(--secondary) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--secondary);
  color: white !important;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: white !important;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(15, 15, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,69,96,0.2);
  padding: 15px 0;
  transition: var(--transition);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}
.navbar-brand-custom {
  font-size: 1.6rem;
  font-weight: 800;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand-custom span { color: var(--secondary); }
.nav-link-custom {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}
.nav-link-custom:hover { color: white !important; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { width: 60%; }
.nav-link-custom.active { color: white !important; }
.navbar-toggler-custom {
  border: 1px solid rgba(233,69,96,0.5);
  padding: 6px 10px;
  border-radius: 8px;
  color: white;
  background: transparent;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.3);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 500px; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-glow {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(233,69,96,0.2), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-icon-main {
  font-size: 12rem;
  opacity: 0.15;
  color: var(--secondary);
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===== CARDS DE SERVIÇO ===== */
.card-servico {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.card-servico::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.card-servico:hover { 
  transform: translateY(-8px);
  border-color: rgba(233,69,96,0.3);
  box-shadow: var(--shadow-hover);
}
.card-servico:hover::before { transform: scaleX(1); }
.card-servico-icon {
  width: 64px; height: 64px;
  background: rgba(233,69,96,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}
.card-servico h4 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.card-servico p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1rem; }
.card-servico-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== GALERIA ===== */
.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.galeria-item:hover img { transform: scale(1.08); }
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ===== FORMULÁRIO DE AGENDAMENTO ===== */
.form-agendamento {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-control-custom {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: white !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  transition: var(--transition) !important;
}
.form-control-custom:focus {
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(233,69,96,0.15) !important;
  outline: none !important;
}
.form-control-custom::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-label-custom { color: rgba(255,255,255,0.8); font-weight: 500; margin-bottom: 6px; }

/* ===== STEPS / PROGRESSO ===== */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 120px;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px; left: calc(50% + 20px);
  width: calc(100% - 40px); height: 2px;
  background: rgba(255,255,255,0.1);
}
.step.active:not(:last-child)::after,
.step.done:not(:last-child)::after { background: var(--secondary); }
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  z-index: 1;
}
.step.active .step-circle {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  box-shadow: 0 0 20px rgba(233,69,96,0.5);
}
.step.done .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: white;
}
.step-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 6px; text-align: center; }
.step.active .step-label { color: var(--secondary); }

/* ===== SEÇÕES ===== */
section { padding: 80px 0; }
.section-dark { background: var(--dark); }
.section-darker { background: #0a0a14; }
.section-primary { background: var(--gradient); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: bounce-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}
@keyframes bounce-whatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== FOOTER ===== */
.footer {
  background: #070710;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 20px;
}
.footer-logo { font-size: 1.8rem; font-weight: 800; color: white; }
.footer-logo span { color: var(--secondary); }
.footer h6 { color: white; font-weight: 600; margin-bottom: 1rem; }
.footer-link {
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-link:hover { color: var(--secondary); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  margin-top: 40px;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ===== NOTIFICAÇÃO TOAST ===== */
.toast-custom {
  position: fixed;
  top: 90px; right: 20px;
  z-index: 9998;
  min-width: 300px;
  background: #1e1e2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(400px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.toast-custom.show { transform: translateX(0); }
.toast-custom.success { border-left: 4px solid #10b981; }
.toast-custom.error { border-left: 4px solid var(--secondary); }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero-stats { justify-content: center; gap: 1.5rem; }
  .hero-image-wrapper { display: none; }
  .form-agendamento { padding: 1.5rem; }
  .step-label { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-number { font-size: 1.5rem; }
}

/* ===== HEADER LUXO (SÓLIDO + LOGO CENTRAL) ===== */
.lux-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(7,7,16,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.lux-header__inner{
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.lux-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.lux-nav--left{ justify-content: flex-start; }
.lux-nav--right{ justify-content: flex-end; }

.lux-link{
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: 180ms ease;
}
.lux-link:hover{
  color: #fff;
  background: rgba(255,0,0,0.10);
  border: 1px solid rgba(255,0,0,0.18);
}

.lux-brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.lux-brand__logo{
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.45));
}

/* CTA */
.lux-cta{
  margin-left: 8px;
  background: linear-gradient(135deg, #ff0000, #ff4a4a);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(255,0,0,0.25);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.lux-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255,0,0,0.35);
  opacity: 0.98;
}

/* Burger (mobile) */
.lux-burger{
  display: none;
  margin-left: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.lux-burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile menu */
.lux-mobile{
  display: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(7,7,16,0.98);
}
.lux-mobile.open{ display: block; }
.lux-mobile__inner{
  padding: 14px 0 18px;
  display: grid;
  gap: 8px;
}
.lux-mobile__link{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.lux-mobile__link:hover{
  border-color: rgba(255,0,0,0.20);
  background: rgba(255,0,0,0.10);
}
.lux-mobile__cta{
  margin-top: 6px;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff0000, #ff4a4a);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 992px){
  .lux-header__inner{
    height: 74px;
    grid-template-columns: 1fr auto 1fr;
  }
  .lux-nav--left,
  .lux-link,
  .lux-cta{
    display: none;
  }
  .lux-burger{ display: inline-flex; align-items:center; justify-content:center; }
  .lux-brand__logo{ height: 40px; }
}
