.prelaunch-banner {
  background-color: #0d1f3d;   /* Azul marino oscuro de Finzaly */
  padding: 60px 24px;
  border-top: 2px solid #c49a00; /* Separadores dorados sutiles */
  border-bottom: 2px solid #c49a00;
  display: flex;
  justify-content: center;
  width: 100%;
}

.banner-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* Se adapta a celulares automáticamente */
}

.banner-content {
  flex: 1;
  min-width: 300px;
}

.banner-badge {
  display: inline-block;
  background-color: rgba(196, 154, 0, 0.15);
  color: #c49a00;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(196, 154, 0, 0.3);
}

.banner-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.banner-text {
  color: #cbd5e0;
  font-size: 16px;
  line-height: 1.6;
}

.banner-text strong {
  color: #ffffff; /* Resalta el beneficio de los 4 meses gratis */
  border-bottom: 1px dashed #c49a00;
}

/* Caja de acciones (Derecha) */
.banner-actions-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

/* Botón interactivo de WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366; /* Verde oficial de WhatsApp */
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px); /* Efecto sutil de elevación */
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.banner-email-text {
  color: #a0aec0;
  font-size: 14px;
  margin-top: 16px;
}

.banner-email {
  color: #c49a00;
  text-decoration: none;
  font-weight: 600;
}

.banner-email:hover {
  text-decoration: underline;
}