.elementor-4359 .elementor-element.elementor-element-36e5ff0{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-04a1e86 *//* ================================
   GeraChat Dynamic Site Builder
   Aparência tipo IA / buscador central
================================ */

.dsb-chat {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 110px 20px 70px;
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17151c;
}

/* Logo / marca */
.dsb-chat-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 70px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.06em;
  color: #111018;
}

.dsb-chat-mark {
  font-size: 34px;
  line-height: 1;
  color: #111018;
  transform: translateY(-1px);
}

.dsb-chat-brand {
  line-height: 1;
}

/* Área de mensagens */
.dsb-chat-window {
  width: 100%;
  max-width: 900px;
  min-height: 0;
  max-height: 420px;
  margin: 0 auto 18px;
  padding: 0 4px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Mensagens */
.dsb-message {
  display: flex;
  width: 100%;
  margin: 10px 0;
  animation: dsbFadeUp .25s ease both;
}

.dsb-message-user {
  justify-content: flex-end;
}

.dsb-bubble {
  max-width: 78%;
  padding: 14px 18px;
  border-radius: 22px;
  background: #f5f3f7;
  color: #211c2a;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: 0 8px 24px rgba(20, 15, 30, 0.04);
}

.dsb-message-user .dsb-bubble {
  background: #251d34;
  color: #fff;
  border-bottom-right-radius: 8px;
}

.dsb-message-bot .dsb-bubble {
  border-bottom-left-radius: 8px;
}

/* Campo principal */
.dsb-chat-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 920px);
  min-height: 84px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(24, 21, 32, 0.10);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 80px rgba(32, 25, 44, 0.10),
    0 8px 24px rgba(32, 25, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
}

/* Ícone dentro do buscador */
.dsb-chat-input::before {
  content: "✦";
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf4ea;
  color: #251d34;
  font-size: 18px;
  font-weight: 700;
}

/* Input */
.dsb-chat-input input {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #18151f;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.dsb-chat-input input::placeholder {
  color: #b4b0ba;
  opacity: 1;
}

/* Botão Gerar / Enviar */
.dsb-chat-input button {
  flex: 0 0 auto;
  min-width: 120px;
  height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 22px;
  background: #251d34;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(37, 29, 52, 0.22);
}

.dsb-chat-input button:hover {
  transform: translateY(-1px);
  background: #312542;
  box-shadow: 0 14px 34px rgba(37, 29, 52, 0.26);
}

.dsb-chat-input button:active {
  transform: translateY(0);
}

/* Botões rápidos / categorias */
.dsb-chat-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(100%, 920px);
  margin: 24px auto 0;
}

.dsb-action-button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid rgba(24, 21, 32, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1e1a26;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.035em;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(20, 15, 30, 0.055),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.dsb-action-button:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 29, 52, 0.18);
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 15, 30, 0.09);
}

.dsb-action-secondary {
  opacity: 0.78;
}

/* Indicador de digitação */
.dsb-typing .dsb-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 62px;
  padding: 15px 18px;
}

.dsb-typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .32;
  animation: dsbTyping 1s infinite ease-in-out;
}

.dsb-typing span:nth-child(2) {
  animation-delay: .15s;
}

.dsb-typing span:nth-child(3) {
  animation-delay: .3s;
}

/* Cards dos modelos */
.dsb-model-grid {
  display: grid;
  width: min(100%, 980px);
  margin: 16px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.dsb-model-card {
  overflow: hidden;
  border: 1px solid rgba(24, 21, 32, 0.09);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 15, 30, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.dsb-model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(20, 15, 30, 0.12);
}

.dsb-model-card img,
.dsb-model-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #f4f2f7, #ece8f1);
}

.dsb-model-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.dsb-model-card strong,
.dsb-model-card h3,
.dsb-model-card-title {
  margin: 0;
  color: #17151c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.dsb-model-card button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: #251d34;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.dsb-model-card button:hover {
  transform: translateY(-1px);
  background: #312542;
}

/* Link final da prévia */
.dsb-result-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #251d34;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

/* Estados vazios */
.dsb-empty {
  width: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f7f5f9;
  color: #6b6574;
  text-align: center;
  font-size: 14px;
}

/* Animações */
@keyframes dsbFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dsbTyping {
  0%, 100% {
    transform: translateY(0);
    opacity: .25;
  }

  50% {
    transform: translateY(-4px);
    opacity: .9;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .dsb-chat {
    padding: 72px 16px 48px;
  }

  .dsb-chat-header {
    margin-bottom: 42px;
    font-size: 34px;
  }

  .dsb-chat-input {
    min-height: auto;
    padding: 10px;
    border-radius: 28px;
    gap: 10px;
  }

  .dsb-chat-input::before {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .dsb-chat-input input {
    height: 50px;
    font-size: 15px;
  }

  .dsb-chat-input button {
    min-width: 88px;
    height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 14px;
  }

  .dsb-chat-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .dsb-action-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .dsb-bubble {
    max-width: 92%;
    font-size: 14px;
  }

  .dsb-model-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dsb-chat-input {
    flex-wrap: nowrap;
  }

  .dsb-chat-input::before {
    display: none;
  }

  .dsb-chat-input button {
    min-width: 78px;
    padding: 0 14px;
  }
}/* End custom CSS */