@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

.hero-section {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" viewBox="0 0 800 600"><rect width="800" height="600" fill="%230072CE" opacity="0.1"/><path d="M0 0L800 600M800 0L0 600" stroke="%230072CE" stroke-width="2" opacity="0.2"/><circle cx="400" cy="300" r="200" fill="%230072CE" opacity="0.1"/></svg>');
  background-size: cover;
  background-position: center;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 114, 206, 0.1), 0 10px 10px -5px rgba(0, 114, 206, 0.04);
}

.icon-circle {
  transition: transform 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.1);
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(0, 114, 206, 0.2);
}

.stat-item:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .stat-item::after {
    display: none;
  }
}

.header-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 114, 206, 0.1), 0 2px 4px -1px rgba(0, 114, 206, 0.06);
}

/* Adicione ao style.css */
#mobileMenu {
  transition: all 0.3s ease-in-out;
}
