@charset "UTF-8";
/* IDENTIDADE VISUAL • Landing Page Comercial */
/* ===========================
        CORES
=========================== */
/* ===========================
        TEXTOS
=========================== */
/* ===========================
        DESTAQUES
=========================== */
/* ===========================
        APOIO
=========================== */
/* ===========================
        GLASS
=========================== */
/* ===========================
        GRADIENTES
=========================== */
/* ===========================
        SOMBRAS
=========================== */
/* ===========================
        FONTES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* HERO */
.secao-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141414;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

.hero-conteudo {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E596B2;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E596B2;
  box-shadow: 0 0 0 rgba(255, 150, 178, 0.6);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 150, 178, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 150, 178, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 150, 178, 0);
  }
}
.hero-titulo {
  font-family: "Playfair Display SC", serif;
  color: #F8F6F2;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-titulo span {
  color: #E596B2;
}

.hero-subtitulo {
  max-width: 650px;
  color: #C7C7CC;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-botoes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.botao-principal {
  background: #E596B2;
  color: #141414;
  padding: 1rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.botao-principal:hover {
  transform: translateY(-4px);
  background: #F0AFC8;
}

.botao-secundario {
  padding: 1rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  color: #F8F6F2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

.botao-secundario:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14, 14, 14, 0.82), rgba(14, 14, 14, 0.88)), radial-gradient(circle at top right, rgba(192, 221, 234, 0.18), transparent 35%), radial-gradient(circle at bottom left, rgba(229, 150, 178, 0.14), transparent 45%), linear-gradient(135deg, #111827, #1E293B, #0F172A);
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(192, 221, 234, 0.18), transparent 35%), radial-gradient(circle at bottom left, rgba(229, 150, 178, 0.14), transparent 45%);
}

.secao-apresentacao {
  padding: 8rem 0;
  background: #1B1F26;
}

.apresentacao-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: start;
}

.apresentacao-lateral {
  position: sticky;
  top: 120px;
}

.badge-secao {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E596B2;
  margin-bottom: 2rem;
}

.titulo-secao {
  font-family: "Playfair Display SC", serif;
  margin-left: 5rem;
  color: #F8F6F2;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.titulo-secao-apresentacao {
  font-family: "Playfair Display SC", serif;
  color: #F8F6F2;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.apresentacao-conteudo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.texto-apresentacao {
  color: #C7C7CC;
  font-size: 1.15rem;
  line-height: 2;
}

.card-diferenciais {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.card-diferenciais span {
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  background: #232933;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #F8F6F2;
  transition: 0.35s;
}

.card-diferenciais span:hover {
  transform: translateY(-5px);
  border-color: #E596B2;
  box-shadow: 0 0 35px rgba(229, 150, 178, 0.25);
}

/*SEÇÃO • PARA QUEM É*/
.secao-publico {
  padding: 8rem 0;
  background: black; /*#EEF7FC;*/
  position: relative;
  overflow: hidden;
}

/* Glow decorativo */
.secao-publico::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(232, 162, 184, 0.1);
  filter: blur(100px);
  top: -180px;
  right: -180px;
}

.secao-publico::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(192, 221, 234, 0.45);
  filter: blur(100px);
  bottom: -150px;
  left: -120px;
}

/* Conteúdo */
.secao-publico .container {
  position: relative;
  z-index: 2;
}

/* Título */
.titulo-secao-publico {
  font-family: "Playfair Display SC", serif;
  color: #F8F6F2;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Texto */
.texto-publico {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 4rem;
  text-align: center;
  color: #5E6672;
  font-size: 1.15rem;
  line-height: 1.9;
}

.texto-publico-final {
  margin-top: 2rem;
}

/* Grid */
.cards-publico {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 6rem;
}

/* Card */
.card-publico {
  background: #FCFCFD;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(192, 221, 234, 0.45);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Barra superior */
.card-publico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E596B2, #C0DDEA);
}

/* Hover */
.card-publico:hover {
  transform: translateY(-8px);
  border-color: #E596B2;
  box-shadow: 0 20px 40px rgba(192, 221, 234, 0.3);
}

/* Ícone (quando adicionar) */
.card-publico i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EAF5FC;
  color: #E596B2;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* Título */
.card-publico h3 {
  font-family: "Playfair Display SC", serif;
  color: #2B2B2B;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Texto */
.card-publico p {
  color: #646C76;
  line-height: 1.8;
}

/*SEÇÃO • POR QUE INVESTIR*/
.secao-motivo {
  padding: 9rem 0;
  background: #EEF5FA;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.secao-motivo::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(192, 221, 234, 0.35);
  filter: blur(100px);
  top: -180px;
  left: -120px;
}

.secao-motivo::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(229, 150, 178, 0.1);
  filter: blur(90px);
  bottom: -120px;
  right: -100px;
}

.secao-motivo > * {
  position: relative;
  z-index: 2;
}

.secao-motivo .titulo-secao {
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #233042;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.2;
}

.texto-motivo {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  color: #5F6975;
  font-size: 1.15rem;
  line-height: 2;
}

.texto-motivo:first-of-type {
  font-size: 1.45rem;
  font-weight: 700;
  color: #314255;
}

.texto-motivo--destaque {
  margin-top: 3rem;
  padding: 2rem;
  max-width: 850px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(192, 221, 234, 0.45);
  color: #24364A;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(192, 221, 234, 0.18);
}

/* SEÇÃO • O QUE EU ENTREGO*/
.titulo-secao {
  position: relative;
  display: inline-block;
}

.titulo-secao::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #E596B2, #C0DDEA);
}

.secao-entrega {
  padding: 9rem 0;
  background: #F7F5F2;
}

.secao-entrega .titulo-secao {
  text-align: center;
  margin-bottom: 4rem;
  color: #222;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lista-beneficios {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.item-beneficio {
  background: #FFFFFF;
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(192, 221, 234, 0.4);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

/* detalhe superior */
.item-beneficio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #C0DDEA, #E596B2);
}

.item-beneficio:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(192, 221, 234, 0.22);
  border-color: #E596B2;
}

.item-beneficio-titulo {
  color: #26384B;
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
  line-height: 1.3;
}

.item-beneficio-texto {
  color: #666F7A;
  line-height: 1.9;
}

/*SEÇÃO • PROCESSO*/
.secao-processo {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, #CFEAF7 0%, transparent 35%), radial-gradient(circle at bottom left, #F7D8E4 0%, transparent 30%), linear-gradient(180deg, #FCFDFF, #F2F8FD);
}

.secao-processo .titulo-secao {
  text-align: center;
  margin-bottom: 1rem;
  color: #243447;
  display: flex;
  justify-content: center;
  align-items: center;
}

.texto-processo {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #64707D;
  line-height: 1.9;
  margin-bottom: 5rem;
}

.lista-processo {
  width: min(900px, 90%);
  margin: auto;
  list-style: none;
  counter-reset: etapas;
  position: relative;
}

.lista-processo::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#C0DDEA, #E596B2);
}

.lista-processo li {
  position: relative;
  padding-left: 90px;
  margin-bottom: 3.5rem;
  color: #47515D;
  line-height: 1.8;
}

.lista-processo li::before {
  counter-increment: etapas;
  content: counter(etapas);
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #C0DDEA;
  color: #E596B2;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(192, 221, 234, 0.3);
}

.lista-processo li {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.lista-processo li:nth-child(1) {
  animation-delay: 0.1s;
}

.lista-processo li:nth-child(2) {
  animation-delay: 0.25s;
}

.lista-processo li:nth-child(3) {
  animation-delay: 0.4s;
}

.lista-processo li:nth-child(4) {
  animation-delay: 0.55s;
}

.lista-processo li:nth-child(5) {
  animation-delay: 0.7s;
}

.lista-processo li:nth-child(6) {
  animation-delay: 0.85s;
}

.lista-processo li:nth-child(7) {
  animation-delay: 1s;
}

.lista-processo li:nth-child(8) {
  animation-delay: 1.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.secao-investimento {
  padding: 9rem 0;
  background: #F8F6F2;
}

.secao-investimento .titulo-secao {
  text-align: center;
  color: #222;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tabela-precos {
  width: min(900px, 92%);
  margin: auto;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.tabela-precos thead {
  background: linear-gradient(90deg, #C0DDEA, #EAF5FC);
}

.tabela-precos th {
  padding: 1.6rem;
  text-align: left;
  color: #243447;
}

.tabela-precos td {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #58636F;
}

.tabela-precos tbody tr {
  transition: 0.3s;
}

.tabela-precos tbody tr:hover {
  background: #F6FBFE;
}

.texto-investimento-obs {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  color: #6B7280;
  line-height: 1.9;
}

.secao-diferencial {
  padding: 10rem 0;
  background: #141414;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.secao-diferencial::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.05) 45%, rgba(192, 221, 234, 0.18) 52%, rgba(229, 150, 178, 0.14) 58%, transparent 72%);
  filter: blur(90px);
  transform: translateX(-140%) rotate(-12deg);
  animation: brilhoFundo 10s linear infinite;
  pointer-events: none;
}

.secao-diferencial::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(192, 221, 234, 0.18);
  filter: blur(120px);
  pointer-events: none;
}

.secao-diferencial > * {
  position: relative;
  z-index: 2;
}

.texto-diferencial {
  max-width: 760px;
  margin: auto;
  color: #C8CDD4;
  line-height: 2;
  font-size: 1.5rem;
}

.texto-diferencial--frase {
  margin-top: 4rem;
  max-width: 900px;
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.25;
  background: linear-gradient(90deg, #E596B2, #C0DDEA, #F8F6F2, #A98B73);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*ANIMAÇÃO*/
@keyframes brilhoFundo {
  from {
    transform: translateX(-140%) rotate(-12deg);
  }
  to {
    transform: translateX(140%) rotate(-12deg);
  }
}
.secao-cta {
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #D9EEF8, #F8F6F2);
}

.secao-cta::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(229, 150, 178, 0.2);
  filter: blur(100px);
  top: -180px;
  right: -150px;
}

.secao-cta::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(192, 221, 234, 0.35);
  filter: blur(90px);
  bottom: -120px;
  left: -100px;
}

.secao-cta > * {
  position: relative;
  z-index: 2;
  text-align: center;
}

.titulo-secao-contato {
  font-family: "Playfair Display SC", serif;
  color: #141414;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titulo-secao-contato {
  text-align: center;
  margin-bottom: 2rem;
}

.texto-cta {
  max-width: 760px;
  margin: auto;
  text-align: center;
  line-height: 2;
  color: #5E6975;
  margin-bottom: 2rem;
}

.texto-cta--fechamento {
  font-size: 1.3rem;
  font-weight: 600;
  color: #243447;
}

.cta-contato {
  max-width: 760px;
  margin: 0 auto;
}

.botao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  margin: 3rem auto 0;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s;
}

.botao-cta--whatsapp {
  display: flex;
  width: fit-content;
  background: linear-gradient(135deg, #E596B2, #F1BFD1);
  color: #1B1B1B;
}

.botao-cta--whatsapp:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(229, 150, 178, 0.35);
}

.rodape {
  padding: 3rem;
  background: #151515;
  text-align: center;
}

.rodape-texto {
  color: #A6A6A6;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/*tablets*/
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-publico {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .secao-entrega {
    padding: 6rem 0;
  }
  .secao-entrega .titulo-secao {
    text-align: center;
    margin: 0 auto 3rem;
    font-size: clamp(2rem, 8vw, 2.6rem);
    max-width: 100%;
  }
  .lista-beneficios {
    gap: 1.8rem;
  }
}
/*celular*/
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .apresentacao-lateral {
    position: static;
    top: auto;
  }
  .apresentacao-grid {
    grid-template-columns: 1fr;
  }
  .secao-publico {
    padding: 4rem 1.5rem;
  }
  .titulo-secao-publico {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .texto-publico {
    max-width: 100%;
    padding: 0;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  .cards-publico {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
    margin-bottom: 3rem;
  }
  .card-publico {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .card-publico h3 {
    font-size: 1.2rem;
  }
  .card-publico p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .secao-motivo {
    max-width: 100%;
    padding: 5rem 0;
  }
  .secao-motivo .titulo-secao {
    font-size: 2rem;
  }
  .secao-entrega {
    padding: 5rem 0;
  }
  .secao-entrega .titulo-secao {
    margin-bottom: 3rem;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .lista-beneficios {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .item-beneficio {
    padding: 1.8rem;
    border-radius: 20px;
  }
  .item-beneficio-titulo {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .item-beneficio-texto {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .secao-processo {
    padding: 5rem 1.5rem;
  }
  .secao-processo .titulo-secao {
    width: 100%;
    margin: 0 auto 1rem;
    padding: 0;
    text-align: center;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .secao-investimento .titulo-secao {
    width: 100%;
    margin: 0 auto 1rem;
    padding: 0;
    text-align: center;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
}
@media (max-width: 480px) {
  .secao-entrega {
    padding: 4rem 0;
  }
  .item-beneficio {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .item-beneficio-titulo {
    font-size: 1.15rem;
  }
  .item-beneficio-texto {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .chatbot__janela {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 6rem;
    height: 70vh;
  }
  .chatbot__botao {
    right: 1rem;
    bottom: 1rem;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.chatbot__botao {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  font-size: 2rem;
  background: #E596B2;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.chatbot__botao:hover {
  transform: translateY(-5px);
}
.chatbot__notificacao {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulsar 1.5s infinite;
}
.chatbot__janela {
  position: fixed;
  right: 2rem;
  bottom: 6.8rem;
  width: 380px;
  height: 560px;
  display: none;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid #3F3F46;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease;
}
.chatbot__janela.ativo {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chatbot__header {
  background: #141414;
  color: white;
  padding: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot__form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid #eee;
}
.chatbot__input {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  outline: none;
}
.chatbot__input:focus {
  border-color: #E596B2;
  box-shadow: 0 0 0 3px rgba(229, 150, 178, 0.2);
}
.chatbot__enviar {
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: #E596B2;
  color: white;
  transition: 0.25s;
}
.chatbot__enviar:hover {
  transform: scale(1.08);
}
.chatbot__mensagens {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #C0DDEA;
}
.chatbot__mensagem {
  max-width: 80%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  animation: fadeUp 0.25s ease;
}
.chatbot__mensagem--usuario {
  margin-left: auto;
  background: #E596B2;
  color: #fff;
  border-bottom-right-radius: 6px;
}
.chatbot__mensagem--bot {
  margin-right: auto;
  background: #f4f4f4;
  color: #222;
  border-bottom-left-radius: 6px;
}
.chatbot__botao-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #25D366;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}
.chatbot__botao-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

#digitando {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

#digitando span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  animation: digitando 0.8s infinite alternate;
}

#digitando span:nth-child(2) {
  animation-delay: 0.2s;
}

#digitando span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulsar {
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}
@keyframes digitando {
  from {
    opacity: 0.3;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-4px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --bg:#F8F6F2;
  --surface:#FFFFFF;
  --text:#1B1B1B;
  --primary:#E596B2;
}

.dark {
  --bg:#111315;
  --surface:#1C1F24;
  --text:#F5F5F5;
  --primary:#F1BFD1;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: 0.35s;
}

.card {
  background: var(--surface);
}

/*# sourceMappingURL=styles.css.map */
