/* ======================================================
   TARGET SPLIT — MODERN STRUCTURE FIXED
====================================================== */

.target-split {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

/* Container principal */
.target-split__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 32px;
  overflow: hidden; /* ESSENCIAL */
  background: #ffffff;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.08),
    0 10px 30px rgba(15, 23, 42, 0.05);
}

/* ======================================================
   LADO AZUL
====================================================== */

.target-visual {
  padding: 70px 60px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.3), transparent 45%),
    linear-gradient(160deg, #1e3a8a 0%, #0f172a 85%);
}

.visual-content {
  max-width: 480px;
}

.visual-content span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 18px;
  display: inline-block;
}

.visual-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.visual-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ======================================================
   LADO BRANCO
====================================================== */

.target-content {
  padding: 70px 60px;
  background: #ffffff;
}

.target-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.target-content .subtitle {
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 1rem;
  color: #64748b;
}

/* ======================================================
   CARDS
====================================================== */

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.target-card {
  padding: 24px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.05);
  transition: 0.3s ease;
}

.target-card i {
  font-size: 1.4rem;
  color: #2563eb;
  margin-bottom: 12px;
  display: inline-block;
}

.target-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.target-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.target-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

/* ======================================================
   DESKTOP FULL WIDTH AZUL
====================================================== */

@media (min-width: 992px) {

  .target-split {
    padding-left: 0;
    padding-right: 0;
  }

}

/* ======================================================
   MOBILE APP STYLE CORRETO
====================================================== */

@media (max-width: 992px) {

  .target-split {
    padding: 0;
    background: none;
  }

  .target-split__wrap {
    display: block;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  /* Azul ocupa topo inteiro */
  .target-visual {
    padding: 100px 28px 80px;
    text-align: center;
  }

  .visual-content {
    margin: 0 auto;
  }

  /* Branco sobe com borda correta */
  .target-content {
    margin-top: -40px;
    padding: 50px 28px 70px;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -20px 60px rgba(15,23,42,0.08);
    position: relative;
    z-index: 2;
    text-align: center;
  }

   .target-content h2 {
    text-align: center;
   }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .target-card {
    text-align: center;
  }

  .target-card p {
    max-width: 300px;
    margin: 0 auto;
  }
}