/* ========================================
   CHAVEIRO 24 HORAS SJC - Tailwind Custom
   ======================================== */

/* Animações */
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes customizadas */
.gradient-text {
  background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient {
  background: radial-gradient(ellipse at top right, rgba(250, 204, 21, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.glow-yellow {
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.4);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(250, 204, 21, 0.15);
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.btn-primary {
  background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
  color: #0F172A;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.btn-dark {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: white;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

.btn-emergency {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  transition: all 0.3s ease;
  animation: pulseGreen 2s infinite;
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.nav-blur {
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.85);
}

.counter {
  font-variant-numeric: tabular-nums;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(250, 204, 21, 0.1);
}

.feature-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(250, 204, 21, 0.15);
}

.scroll-indicator {
  animation: scrollBounce 2s infinite;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* CTA Anúncio */
.cta-advertise {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 2px dashed rgba(250, 204, 21, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-advertise h3 {
  color: #FACC15;
  margin-bottom: 0.5rem;
}

.cta-advertise .email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
  color: #0F172A;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-advertise .email-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

/* Info Chaveiro */
.info-chaveiro {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
}

.info-chaveiro h3 {
  color: #FACC15;
  margin-bottom: 1rem;
}

.info-chaveiro ul {
  list-style: none;
  padding: 0;
}

.info-chaveiro li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
  color: #94A3B8;
}

.info-chaveiro li:last-child {
  border-bottom: none;
}

/* Footer zones */
.footer-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-zone {
  flex: 1;
  min-width: 200px;
}

.footer-zone h4 {
  color: #FACC15;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-zone p {
  color: #94A3B8;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-zone a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-zone a:hover {
  color: #FACC15;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
