* { font-family: 'Poppins', sans-serif; }
.font-head { font-family: 'Oswald', sans-serif; }
.font-700 { font-weight: 700; }

html { scroll-behavior: smooth; }

/* Padrão de fundo dos blocos navy */
.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(47,123,237,0.25) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26,95,208,0.2) 0, transparent 40%);
}

/* Feature cards (sobrepostos no hero) */
.feature-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(10,21,56,0.25);
  transition: transform .3s;
  overflow: hidden;
  z-index: 0;
}
/* Cortina azul deslizando da esquerda para a direita */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #1a5fd0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: 0;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card > * { position: relative; z-index: 1; }

.feature-card i { font-size: 44px; color: #1a5fd0; transition: color .3s; }
.feature-card h3 { transition: color .3s; }
.feature-card p { transition: color .3s; }

.feature-card:hover { transform: translateY(-6px); }
.feature-card:hover i { color: #fff; }
.feature-card:hover h3 { color: #fff !important; }
.feature-card:hover p { color: rgba(255,255,255,0.85); }

/* Service cards */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 34px;
  transition: transform .3s;
  overflow: hidden;
  z-index: 0;
}
/* Cortina azul que desliza da esquerda para a direita */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #1a5fd0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
  z-index: 0;
}
.service-card:hover::before,
.service-card.active::before {
  transform: scaleX(1);
}
.service-card > * { position: relative; z-index: 1; }
.service-card > i {
  font-size: 42px;
  color: #1a5fd0;
  display: block;
  margin-bottom: 18px;
  transition: color .3s;
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #0a1538;
  margin-bottom: 12px;
  transition: color .3s;
}
.service-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
  transition: color .3s;
}
.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: #1a5fd0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .3s;
}
.service-card .num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a5fd0;
  background: #eaf2fd;
  padding: 2px 14px;
  border-radius: 20px;
  transition: background .3s, color .3s;
}

/* Estado ativo / hover -> azul com texto branco */
.service-card:hover,
.service-card.active {
  transform: translateY(-4px);
}
.service-card:hover > i,
.service-card.active > i,
.service-card:hover h3,
.service-card.active h3,
.service-card:hover a,
.service-card.active a {
  color: #fff;
}
.service-card:hover p,
.service-card.active p {
  color: rgba(255,255,255,0.85);
}
.service-card:hover .num,
.service-card.active .num {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Project cards */
.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px -20px rgba(10,21,56,0.2);
  transition: transform .25s;
}
.project-card:hover { transform: translateY(-6px); }
.project-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-thumb i { font-size: 90px; color: rgba(255,255,255,0.9); }
.thumb-blue { background: linear-gradient(135deg, #2f7bed, #0a1538); }
.thumb-orange { background: linear-gradient(135deg, #f08a1e, #c2410c); }

/* Process steps */
.step-circle {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed rgba(47,123,237,0.5);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.step-circle i { font-size: 48px; color: #2f7bed; }

/* Setas curvas entre as etapas (apenas desktop) */
.step-item { position: relative; }
.step-item:not(:last-child)::after {
  content: '\ea1c';
  font-family: 'tabler-icons';
  position: absolute;
  top: 90px;
  right: -28px;
  font-size: 36px;
  color: #2f7bed;
  display: none;
}
@media (min-width: 768px) {
  .step-item:not(:last-child)::after { display: block; }
}
.step-num {
  position: absolute;
  top: 14px; left: 8px;
  background: #1a5fd0;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  border: 3px solid #0a1538;
  z-index: 2;
}

/* Contact */
.contact-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: #eaf2fd;
  color: #1a5fd0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 15px;
}
.form-input:focus {
  outline: none;
  border-color: #1a5fd0;
}

/* Clientes / carrossel */
.client-item {
  flex: 0 0 auto;
  width: calc((100% - 4 * 48px) / 5);
  min-width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity .2s;
}
.client-item:hover { opacity: 1; }
.client-arrow {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #1a5fd0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background .2s, color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.client-arrow:hover { background: #0a1538; color: #fff; }

/* Footer social */
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
}
.social-btn:hover { background: #1a5fd0; }
