@charset "UTF-8";
/* =========================================
   COMPONENTES COM ANIMAÇÕES - CSS
   Estilos para os componentes animados
   ========================================= */

/* =========================================
   SERVICE CARDS
   ========================================= */

.service-item {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--brand-blue),
    var(--brand-blue-dark)
  );
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: white;
  font-size: 1.5rem;
}

.service-item h3 {
  color: var(--brand-blue);
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
}

.service-item p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.icon-more {
  color: var(--brand-red);
  opacity: 0.6;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.service-item:hover .icon-more {
  opacity: 1;
  transform: translateX(5px);
}

/* =========================================
   STATS SECTION
   ========================================= */

.stats-section {
  background: linear-gradient(
    135deg,
    var(--brand-blue-dark),
    var(--brand-blue)
  );
  padding: var(--space-16) var(--space-8);
  border-radius: var(--radius-lg);
  color: white;
  margin: var(--space-16) 0;
}

.stats-section h2 {
  text-align: center;
  color: white;
  margin-bottom: var(--space-12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}

.stat-card {
  text-align: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.stat-number .plus,
.stat-number .slash,
.stat-number .percent {
  font-size: 1.5rem;
}

.stat-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section {
  padding: var(--space-16) var(--space-8);
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: var(--space-12);
  font-weight: 800;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--bg-surface);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: var(--brand-yellow);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 0.95rem;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-red));
  padding: var(--space-16) var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  margin: var(--space-16) 0;
}

.cta-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-8);
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--brand-red);
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-cta-large:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-cta-large svg,
.btn-cta-large i {
  font-size: 1.25rem;
}

/* =========================================
   FOOTER DENGAN ANIMASI
   ========================================= */

.footer {
  background: var(--slate-900);
  color: white;
  padding: var(--space-12) var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h4 {
  color: white;
  margin-bottom: var(--space-4);
  font-size: 1.1rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--brand-red);
}

/* =========================================
   BADGE COM PULSE
   ========================================= */

.badge-24h-emergencia {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 57, 80, 0.1);
  color: var(--brand-red);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--brand-red);
  margin-bottom: var(--space-6);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  display: inline-block;
}

/* =========================================
   HERO BUTTONS
   ========================================= */

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-red);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--brand-red);
}

.btn-hero-primary:hover {
  background: transparent;
  border-color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid white;
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--brand-blue);
}

/* =========================================
   HERO BULLET BENEFITS
   ========================================= */

.hero-bullet-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 500;
}

.benefit-item svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

/* =========================================
   DROPDOWN MENU COM FADE
   ========================================= */

.dropdown-content {
  animation: fadeInDropdown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-bullet-benefits {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* =========================================
   GLASS MORPHISM EFFECT
   ========================================= */

.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================
   GRADIENT BORDERS
   ========================================= */

.gradient-border {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
