/* ===== VARIÁVEIS ===== */
:root {
  --azul: #0078C8;
  --verde: #00B37E;
  --verde-neon: #00E295;
  --texto: #0A1A2A;
}

/* ===== SEÇÃO TOPO ===== */
/* .topo-kits {
  background: linear-gradient(180deg, #F8FBFF 0%, #E9F5FF 100%);
  padding: 24px 16px;
  font-family: "Poppins", Arial, sans-serif;
} */
 
.topo-kits {
    /* background: linear-gradient(180deg, #F8FBFF 0%, #E9F5FF 100%); */
    padding: 62px 16px;
    font-family: "Poppins", Arial, sans-serif;
    margin-top: 4%;
}

.topo-kits__wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 22px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(0,179,126,.12) 0%, transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(0,120,200,.12) 0%, transparent 55%),
    #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(0,226,149,.5);
  box-shadow: 0 6px 24px rgba(0,120,200,.15);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  animation: fadeIn 1s ease forwards;
}

/* ===== ÍCONE ESCUDO ===== */
.topo-kits__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--verde), var(--azul));
  box-shadow: 0 8px 18px rgba(0,179,126,.35);
  animation: pulse 2.5s infinite ease-in-out;
}

/* ===== TÍTULO E SUBTÍTULO ===== */
.topo-kits__texto {
  text-align: left;
  flex: 1;
}

.topo-kits__title {
  color: var(--texto);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 26px);
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.3px;
}
.topo-kits__title span {
  color: var(--azul);
}

.topo-kits__subtitle {
  color: var(--verde);
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  margin-top: 6px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(0,179,126,0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 18px rgba(0,179,126,0.6); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .topo-kits__wrap {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  .topo-kits__icon {
    margin-bottom: 10px;
    width: 46px;
    height: 46px;
  }
  .topo-kits__title {
    font-size: 19px;
  }
  .topo-kits__subtitle {
    font-size: 16px;
  }
}