:root {
  --primary: #c68c39;
  --primary-hover: #b07a2f;
  --secondary: #111111;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
  --gold: #c68c39;
  --background: #000000;
  --foreground: #ffffff;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
}

/* Forçando o site para Preto */
.bg-white, .bg-light, .bg-dark {
  background-color: #000000 !important;
}
.text-dark {
  color: #ffffff !important;
}
.text-muted {
  color: #b3b3b3 !important;
}
.border-bottom, .border-top, .border {
  border-color: #222222 !important;
}
header.bg-white {
  background-color: rgba(0, 0, 0, 0.95) !important;
}
.service-card, .testimonial-card {
  background-color: #0a0a0a !important;
  border-color: #222222 !important;
}
.service-card .bg-light {
  background-color: #1a1a1a !important;
}

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

.text-gold {
  color: var(--gold);
}

.text-gold-hover:hover {
  color: var(--gold) !important;
}

.text-primary-hover:hover {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: white;
}

.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.3) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.service-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
}

.gallery-item {
  overflow: hidden;
}

.gallery-img {
  transition: transform 0.7s ease;
}

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

.testimonial-card {
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 100;
  animation: float-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  color: white;
  background-color: var(--whatsapp-hover);
}

@keyframes float-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-tooltip {
  position: fixed;
  bottom: 2.5rem;
  right: 6.5rem;
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 99;
  color: #1a1a1a;
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}
