/* Estilos personalizados focados na identidade da FLP */
:root {
  --brand-blue: #0A2E38;
  --brand-blue-light: #154556;
  --brand-gold: #C5A03E;
  --brand-gold-dark: #A6842D;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.bg-brand-blue {
  background-color: var(--brand-blue);
}

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

.bg-brand-gold {
  background-color: var(--brand-gold);
}

.hover\:bg-brand-gold-dark:hover {
  background-color: var(--brand-gold-dark);
}

.pattern-grid {
  background-image: linear-gradient(to right, currentColor 1px, transparent 1px),
    linear-gradient(to bottom, currentColor 1px, transparent 1px);
  background-size: 40px 40px;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Pulse Animation */
@keyframes pulse-custom {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(25, 102, 59, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -10px rgba(25, 102, 59, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(25, 102, 59, 0.4);
  }
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-gold-dark);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
