/* ============================================
   LOBATO REDES DE PROTEÇÃO - Custom Styles
   ============================================ */

/* Font Classes */
.font-display {
  font-family: 'Syne', sans-serif;
}

.font-body {
  font-family: 'DM Sans', sans-serif;
}

/* Animations */
.reveal-text {
  animation: reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* Hover Line Effect */
.hover-line {
  position: relative;
}

.hover-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #83D2FF;
  transition: width 0.4s ease;
}

.hover-line:hover::after {
  width: 100%;
}

/* Navbar Base State - sempre legível */
#navbar {
  background-color: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background-color: rgba(250, 250, 250, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid rgba(131, 210, 255, 0.2);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #6bc2f5;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background-color: #83D2FF;
  color: white;
}

/* Button Glow Effect */
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(131, 210, 255, 0.6);
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  border-color: #83D2FF;
  background-color: white;
  box-shadow: 0 10px 40px -10px rgba(131, 210, 255, 0.2);
}

/* Mesh Pattern Background */
.mesh-pattern {
  background-image: radial-gradient(circle, #83D2FF 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Footer Pattern */
.footer-pattern {
  background-image: radial-gradient(circle, #83D2FF 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #83D2FF, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Menu Animation */
#mobile-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.hidden {
  opacity: 0;
  visibility: hidden;
}

#mobile-menu:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

/* Service Item Hover */
.service-item {
  transition: all 0.3s ease;
}

.service-item:hover {
  background-color: rgba(131, 210, 255, 0.05);
}

/* Icon Container */
.icon-container {
  transition: all 0.3s ease;
}

.group:hover .icon-container {
  background-color: #83D2FF;
  color: white;
}

/* Pulse Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

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

/* Feedback Cards */
.feedback-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-card:hover {
  transform: translateY(-4px);
  border-color: rgba(131, 210, 255, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .reveal-text {
    animation-delay: 0ms !important;
  }
}