/* Custom CSS para Alambamento */

/* Configurações globais */
* {
  box-sizing: border-box;
}

/* Configurações de fonte */
body {
  font-family: 'Muli', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
}

/* Títulos principais */
.font-great-vibes {
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: #000;
}

/* Textos comuns */
.font-muli {
  font-family: 'Muli', sans-serif;
  font-size: 14px;
}

/* Animações e transições suaves */
.transition-all {
  transition: all 0.3s ease;
}

/* Hover effects para cards */
.group:hover .group-hover\:bg-sage-200 {
  background-color: #d2e1d2;
}

.group:hover .group-hover\:bg-beige-200 {
  background-color: #f5ede0;
}

/* Efeitos de gradiente personalizados */
.bg-gradient-floral {
  background: linear-gradient(135deg, 
    #f6f8f6 0%, 
    #e8f0e8 25%, 
    #fdfcf9 50%, 
    #f7e6e6 75%, 
    #e6e6fa 100%
  );
}

/* Sombras personalizadas */
.shadow-floral {
  box-shadow: 0 10px 25px -5px rgba(94, 140, 94, 0.1), 
              0 10px 10px -5px rgba(212, 184, 150, 0.04);
}

.shadow-floral-hover {
  box-shadow: 0 20px 35px -5px rgba(94, 140, 94, 0.15), 
              0 15px 15px -5px rgba(212, 184, 150, 0.06);
}

/* Decorações florais */
.floral-decoration::before {
  content: '🌸';
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.floral-decoration::after {
  content: '🌿';
  position: absolute;
  font-size: 1rem;
  opacity: 0.2;
  animation: float 4s ease-in-out infinite reverse;
}

/* Animação flutuante */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-10px) rotate(5deg); 
  }
}

/* Botões personalizados */
.btn-primary {
  background: linear-gradient(135deg, #5e8c5e, #486748);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 140, 94, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #486748, #3a533a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 140, 94, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #d4b896, #c49d7b);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 184, 150, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #c49d7b, #b08866);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 184, 150, 0.3);
}

/* Cards com efeitos especiais */
.card-vendor {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(94, 140, 94, 0.1);
}

.card-vendor:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(94, 140, 94, 0.2);
}

/* Inputs personalizados */
.input-custom {
  border: 2px solid #e8f0e8;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.input-custom:focus {
  outline: none;
  border-color: #5e8c5e;
  box-shadow: 0 0 0 3px rgba(94, 140, 94, 0.1);
}

/* Navegação responsiva */
@media (max-width: 768px) {
  .font-great-vibes {
    font-size: 18px;
  }
  
  .hero-title {
    font-size: 3rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.25rem !important;
  }
}

/* Ícones com efeitos */
.icon-float {
  animation: float 6s ease-in-out infinite;
}

.icon-float:nth-child(2) {
  animation-delay: 1s;
}

.icon-float:nth-child(3) {
  animation-delay: 2s;
}

.icon-float:nth-child(4) {
  animation-delay: 3s;
}

/* Barra de navegação fixa */
.navbar-fixed {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(94, 140, 94, 0.1);
}

/* Efeito de scroll suave */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Stars rating */
.stars {
  color: #ffd700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-search {
    padding: 1rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .vendor-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Decorative elements */
.decorative-border {
  position: relative;
}

.decorative-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #5e8c5e, #d4b896);
  border-radius: 2px;
}

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

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

::-webkit-scrollbar-thumb {
  background: #adc7ad;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7fa37f;
}