/* Custom Styles for VigiaSaúde */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #323232;
}

/* Smooth animations */
.transition {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #B5AC8B;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B7E5F;
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #0D7377 0%, #14FFEC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(181, 172, 139, 0.2);
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, #B5AC8B 0%, #8B7E5F 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B7E5F 0%, #6B5E4F 100%);
  box-shadow: 0 10px 30px rgba(181, 172, 139, 0.3);
}

/* Pulse animation for important elements */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Logo CONTRATEC - Header */
.logo-dourado {
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
  max-height: 200px;
  filter: drop-shadow(0 2px 4px rgba(181, 172, 139, 0.2));
  position: relative;
  z-index: 60;
}

.logo-dourado:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(181, 172, 139, 0.3));
}

/* Logo CONTRATEC - Footer */
.logo-dourado-footer {
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.logo-dourado-footer:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Hero Gradient - Preto para Dourado */
.hero-gradient {
  background: linear-gradient(to bottom right, 
    #333333 0%,      /* Preto */
    #333333 35%,     /* Preto estendido */
    #5a5144 60%,     /* Marrom intermediário */
    #8B7E5F 80%,     /* Marrom escuro */
    #B5AC8B 100%     /* Dourado */
  );
}