/* =========================
   LANDING BLIP (ISOLADO)
========================= */

/* HEADER */
.header-blip {
  background: transparent;
  position: absolute;
  width: 100%;
}

/* VOLTAR */
.btn-back {
  color: #A0B3C0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-back:hover {
  color: #fff;
}

/* =========================
   HERO
========================= */

.hero-blip {
  padding: 140px 0 100px;
  background: radial-gradient(circle at 70% 30%, rgba(58,124,143,0.15), transparent 40%),
              linear-gradient(180deg, #0E1113 0%, #0B0F12 100%);
}

.hero-blip .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-blip .hero-text {
  max-width: 460px;
}

.hero-blip h1 {
  font-size: 46px;
  line-height: 1.1;
}

.hero-blip .hero-subtitle {
  font-size: 17px;
  color: #A0B3C0;
  margin: 20px 0 25px;
}

.hero-partner {
  height: 40px;
  margin-bottom: 20px;
}

/* BOTÃO */
.hero-blip .btn-primary {
  background: linear-gradient(135deg, #3A7C8F, #2f6675);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(58,124,143,0.35);
  transition: 0.3s;
}

.hero-blip .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(58,124,143,0.5);
}

.hero-proof {
  margin-top: 20px;
  font-size: 14px;
  color: #A0B3C0;
}

.hero-blip .hero-visual {
  background: linear-gradient(145deg, #0f1b22, #0b1116);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.hero-blip .hero-visual img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 10px;
}

/* =========================
   PROBLEMA
========================= */

.blip-problem {
  padding: 120px 0;
  background: #0B1116;
  color: #fff;
  text-align: center;
}

.problem-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid div {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: 12px;
  color: #C6D4DD;
  transition: 0.3s;
}

.problem-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(58,124,143,0.4);
}

/* =========================
   BENEFÍCIOS (CORRIGIDO)
========================= */

.blip-benefits {
  padding: 100px 0;
  background: #F5F7F9;
  text-align: center;
  color: #0D0F10; /* FIX PRINCIPAL */
}

.blip-benefits h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #0D0F10;
}

.blip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blip-benefit {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #E3E8EC;
  transition: 0.3s;
}

.blip-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blip-benefit h3 {
  color: #0F2F3A;
  margin-bottom: 10px;
}

.blip-benefit p {
  color: #5A6B75;
  font-size: 14px;
}

/* =========================
   PROVA (CHAT)
========================= */

.blip-proof {
  padding: 120px 0;
  background: #0B1116;
  text-align: center;
  color: #fff;
}

.chat-box {
  margin: 50px auto 0;
  max-width: 420px;
  background: #111A21;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.chat-row {
  display: flex;
  margin-bottom: 12px;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-row.bot {
  justify-content: flex-start;
}

.bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 75%;
}

.chat-row.user .bubble {
  background: #3A7C8F;
  color: #fff;
}

.chat-row.bot .bubble {
  background: #1E2A32;
  color: #C6D4DD;
}

.chat-row.options {
  gap: 10px;
  flex-wrap: wrap;
}

.chat-row.options span {
  background: #1E2A32;
  color: #C6D4DD;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   CTA
========================= */

.blip-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0B1116, #0F1B22);
  text-align: center;
  color: #fff;
}

.blip-cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.blip-cta p {
  color: #A0B3C0;
  margin-bottom: 30px;
}

.blip-cta .btn-primary {
  background: linear-gradient(135deg, #3A7C8F, #2f6675);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(58,124,143,0.35);
  transition: 0.3s;
}

.blip-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(58,124,143,0.5);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .hero-blip .hero-content {
    grid-template-columns: 1fr;
  }

  .blip-benefits-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
}

h1, h2, h3 {
  letter-spacing: -0.5px;
}

.hero-blip h1 {
  font-size: 48px;
  line-height: 1.05;
}

.blip-benefits h2,
.blip-proof h2,
.blip-cta h2 {
  font-size: 36px;
  line-height: 1.2;
}