/* Seção de Serviços Moderna */
#services {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.services-hero {
  background: linear-gradient(135deg, #00133B 0%, #0B354D 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicesPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesPattern)"/></svg>');
  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-title .highlight {
  background: linear-gradient(135deg, #2196F3, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services-subtitle strong {
  font-size: inherit;
  font-weight: 600;
  color: inherit;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 19, 59, 0.1);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  display: none;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  display: none;
}

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 60%;
}

.service-content h2,
.service-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-content p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-content p strong {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-tag {
  background: #2196F3;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  text-decoration: none !important;
  outline: none;
}

.service-btn:hover {
  color: white;
  text-decoration: none !important;
  outline: none;
}

.service-btn i {
  font-size: 1rem;
}

.services-cta {
  background: linear-gradient(135deg, #00133B 0%, #0B354D 100%);
  border-radius: 20px;
  padding: 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23fff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2,
.cta-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-content p strong {
  font-size: inherit;
  font-weight: 600;
  color: inherit;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  outline: none;
}

.whatsapp-btn:hover {
  color: white;
  text-decoration: none !important;
  outline: none;
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .services-hero {
    padding: 60px 0;
  }
  
  .services-title {
    font-size: 2.5rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .services-container {
    padding: 60px 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .service-content {
    padding: 24px;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
  
  .services-cta {
    padding: 40px 24px;
  }
  
  .cta-content h2,
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 40px 0;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-container {
    padding: 40px 16px;
  }
  
  .services-grid {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .services-cta {
    padding: 32px 20px;
  }
  
  .cta-content h2,
  .cta-content h3 {
    font-size: 1.4rem;
  }
  
  .whatsapp-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}