/* Seções pós-números: soluções, referência comercial (apresentação), contratação */

.home-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}

.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #042f2e;
  background: #ecfdf5;
  border: 1px solid rgba(15, 118, 110, 0.35);
  box-shadow: 0 8px 28px rgba(29, 209, 161, 0.08);
  position: relative;
  overflow: hidden;
}

.home-section-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: homeKickerShine 6s ease-in-out infinite;
}

@keyframes homeKickerShine {

  0%,
  65% {
    transform: translateX(-100%);
  }

  80% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.home-section-title {
  margin: 0 0 14px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
  position: relative;
}



.home-reveal.visible .home-section-title::after {
  animation: homeTitleLineIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@keyframes homeTitleLineIn {
  from {
    transform: scaleX(0.15);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.home-section-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.68;
  color: #64748b;
}

/* --- Soluções --- */
.home-solucoes {
  position: relative;
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse 90% 50% at 50% -20%, rgba(29, 209, 161, 0.06), transparent 55%),
    #ffffff;
  overflow: hidden;
}

.home-solucoes::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -140px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 160, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
  animation: homeBlobFloat 18s ease-in-out infinite;
}

.home-numeros::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 209, 161, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: homeBlobFloat 22s ease-in-out infinite reverse;
}

@keyframes homeBlobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-12px, 18px) scale(1.04);
  }
}

.home-solucoes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(12px, 1.2vw, 16px);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-solucoes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .home-solucoes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .home-solucoes-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.home-section-title .home-title-keyword {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-solucao-card {
  --card-border: rgba(15, 23, 42, 0.09);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.45) 100%);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.04),
    0 20px 50px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.home-solucao-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(29, 209, 161, 0.35);
  box-shadow:
    0 0 0 1px rgba(29, 209, 161, 0.15),
    0 12px 40px rgba(29, 209, 161, 0.14),
    0 36px 72px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-solucoes.visible .home-solucao-card.home-stagger-item:hover {
  transform: translateY(-8px) scale(1.01);
}

.home-solucao-card:focus-visible {
  outline: 2px solid var(--home-green);
  outline-offset: 3px;
}

.home-solucao-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.home-solucoes .home-stagger-item {
  filter: none;
}

.home-solucao-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(29, 209, 161, 0.16), rgba(84, 160, 255, 0.1));
  border: 1px solid rgba(29, 209, 161, 0.22);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.home-solucao-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.home-solucao-card:hover .home-solucao-icon {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 10px 28px rgba(29, 209, 161, 0.18);
}

.home-solucao-card h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.home-solucao-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.home-solucao-link {
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--home-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-solucao-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.home-solucao-card:hover .home-solucao-link::after {
  transform: translateX(4px);
}

.home-solucao-card--soon {
  border-style: dashed;
  border-color: rgba(59, 130, 246, 0.28);
  background: linear-gradient(155deg, rgba(239, 246, 255, 0.92) 0%, rgba(224, 242, 254, 0.52) 100%);
}

.home-solucao-card--soon .home-solucao-icon {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(29, 209, 161, 0.12));
  border-color: rgba(59, 130, 246, 0.32);
}

.home-solucao-soon {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #072a54;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.home-solucao-card--soon .home-solucao-link {
  color: #2563eb;
}

/* Bloco único (RCS + SMS + Whats + Voz): fundo, padding vertical, luz topo/base */
.home-channels-stack {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 12vw, 100px) 0;
  overflow: visible;
}

.home-channels-stack-skin {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.home-channels-stack>section {
  position: relative;
  z-index: 2;
}

/* Cabeçalho do bloco de demos (antes de RCS / SMS / WhatsApp / Voz) */
.home-channels-intro {
  padding: 0 0 clamp(20px, 4vw, 36px);
  margin: 0 0 clamp(8px, 2vw, 20px);
  text-align: center;
  background: transparent;
}

.home-channels-intro-inner {
  max-width: 640px;
  margin: 0 auto;
}

.home-channels-intro-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0c4a6e;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.95), rgba(236, 253, 245, 0.9));
  border: 1px solid rgba(84, 160, 255, 0.28);
  box-shadow: 0 10px 32px rgba(84, 160, 255, 0.08);
}

html[data-theme="dark"] .home-channels-intro-kicker {
  color: #e0f2fe;
  background: linear-gradient(135deg, rgba(12, 47, 71, 0.9), rgba(19, 78, 74, 0.72));
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.home-channels-intro-title {
  margin: 0 0 16px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0f172a;
}

html[data-theme="dark"] .home-channels-intro-title {
  color: #f1f5f9;
}

.home-channels-intro-title .home-title-keyword {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-channels-intro-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #475569;
}

html[data-theme="dark"] .home-channels-intro-desc {
  color: #94a3b8;
}

/* Faixa de luz vertical: cobre o bloco; desce suave ao entrar (scroll — home.js) */
.home-channels-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  will-change: clip-path, opacity;
}

html[data-theme="dark"] .home-channels-stack::before {
  background: linear-gradient(180deg,
      rgba(29, 209, 161, 0.2) 0%,
      rgba(29, 209, 161, 0.1) 11%,
      rgba(29, 209, 161, 0.04) 20%,
      rgba(0, 0, 0, 0.28) 26%,
      rgba(0, 0, 0, 0.12) 36%,
      transparent 48%,
      transparent 100%);
}

/* Claro: mesma “história” do escuro — luz esverdeada no topo que desce (bruma clara no lugar do vidro escuro) */
html:not([data-theme="dark"]) .home-channels-stack::before {
  background: linear-gradient(180deg,
      rgba(29, 209, 161, 0.2) 0%,
      rgba(29, 209, 161, 0.11) 11%,
      rgba(29, 209, 161, 0.05) 20%,
      rgba(255, 255, 255, 0.55) 26%,
      rgba(255, 255, 255, 0.22) 36%,
      transparent 48%,
      transparent 100%);
}

.home-channels-stack--glow-lit::before {
  animation: homeChannelsSweepLight 1.9s cubic-bezier(0.25, 0.46, 0.45, 0.98) forwards;
}

@keyframes homeChannelsSweepLight {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  18% {
    opacity: 0.22;
  }

  42% {
    opacity: 0.72;
  }

  72% {
    opacity: 0.95;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

html[data-theme="dark"] .home-channels-stack {
  background:
    radial-gradient(ellipse 115% 58% at 50% -18%, rgba(29, 209, 161, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 75% 48% at 96% 22%, rgba(84, 160, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 95% 55% at 50% 108%, rgba(84, 160, 255, 0.07) 0%, transparent 55%),
    #040912;
}

/* Claro: camadas no topo/meio; último terço fecha em branco real (#fff) */
html:not([data-theme="dark"]) .home-channels-stack {
  background:
    radial-gradient(ellipse 115% 58% at 50% -18%, rgba(29, 209, 161, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 75% 48% at 96% 22%, rgba(84, 160, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 95% 50% at 50% 102%, rgba(84, 160, 255, 0.06) 0%, transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #fafdfe 34%, #f4f9fc 62%, #ffffff 82%, #ffffff 100%);
}

html:not([data-theme="dark"]) .home-channels-stack-skin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -130px;
  width: min(140%, 1600px);
  height: min(44vh, 400px);
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 46% at 50% 100%,
      rgba(29, 209, 161, 0.05) 0%,
      rgba(84, 160, 255, 0.04) 38%,
      transparent 68%);
  opacity: 0.65;
  pointer-events: none;
  display: block;
}

/* Brilho radial no topo (liga em fusão com a faixa que desce) */
html[data-theme="dark"] .home-channels-stack-skin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  width: min(135%, 1550px);
  height: min(58vh, 540px);
  transform: translateX(-50%) translateY(-20px);
  background: radial-gradient(ellipse 58% 44% at 50% 0%,
      rgba(29, 209, 161, 0.48) 0%,
      rgba(84, 160, 255, 0.3) 36%,
      rgba(146, 84, 255, 0.12) 54%,
      transparent 72%);
  opacity: 0;
  transition:
    opacity 1.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s,
    transform 1.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s;
}

html[data-theme="dark"] .home-channels-stack--glow-lit .home-channels-stack-skin::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Halo no topo: verde → azul → violeta como no escuro, com opacidades ajustadas ao fundo branco */
html:not([data-theme="dark"]) .home-channels-stack-skin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  width: min(135%, 1550px);
  height: min(58vh, 540px);
  transform: translateX(-50%) translateY(-20px);
  background: radial-gradient(ellipse 58% 44% at 50% 0%,
      rgba(29, 209, 161, 0.38) 0%,
      rgba(84, 160, 255, 0.24) 36%,
      rgba(146, 84, 255, 0.1) 54%,
      transparent 72%);
  opacity: 0;
  transition:
    opacity 1.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s,
    transform 1.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s;
}

html:not([data-theme="dark"]) .home-channels-stack--glow-lit .home-channels-stack-skin::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: none;
}

/* Home only: ajustes da seção RCS inserida na home */
.home-rcs-section {
  position: relative;
  overflow: visible;
  padding: 24px 0 32px;
  background: #050914;
}

.home-rcs-section .container {
  position: relative;
  z-index: 1;
}

.home-rcs-section .row,
.home-sms-section .row,
.home-whats-section .row,
.home-voz-section .row {
  overflow: visible;
}

.home-rcs-section .rcs-section1-phone-col {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.home-rcs-section .rcs-demo-phone-wrap {
  position: relative;
  z-index: 1;
}

/* Halo atrás do celular: circular, maior; bordas ainda suaves (blur + queda longa) */
.home-rcs-section .rcs-section1-phone-col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: clamp(435px, 53vw, 660px);
  height: clamp(435px, 53vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
  opacity: 0.85;
  background: radial-gradient(circle at 50% 50%,
      rgba(146, 84, 255, 0.22) 0%,
      rgba(123, 100, 255, 0.095) 38%,
      rgba(118, 104, 255, 0.038) 62%,
      rgba(118, 104, 255, 0.012) 78%,
      transparent 92%);
}

.home-rcs-square-radial {
  display: none;
}

.home-rcs-section .rcs-section1-text .rcs-section1-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(7, 66, 62, 0.78);
  color: #f2fffa;
  border: 1px solid rgba(45, 212, 191, 0.3);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}

.home-rcs-section .rcs-section1-text .rcs-section1-title {
  background: none;
  color: #f8fbff;
  -webkit-text-fill-color: currentColor;
  font-weight: 800;
  font-size: clamp(2rem, 2.9vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.home-rcs-section .rcs-section1-text .rcs-section1-title .home-rcs-title-accent {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-rcs-section .rcs-section1-text .rcs-section1-desc {
  color: rgba(224, 234, 250, 0.95);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.72;
  max-width: 48ch;
  margin-bottom: 1.2rem;
}

.home-rcs-section .rcs-section1-text .rcs-section1-list {
  margin-top: 0.1rem;
}

.home-rcs-section .rcs-section1-text .rcs-section1-list li {
  position: relative;
  color: rgba(230, 238, 252, 0.96);
  font-weight: 600;
  margin-bottom: 0.78rem;
  padding-left: 24px;
}

.home-rcs-section .rcs-section1-text .rcs-section1-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  top: 0.48rem;
  border-radius: 50%;
  background: #7b2fff;
  box-shadow: 0 0 0 4px rgba(123, 47, 255, 0.18);
}

.home-rcs-section .home-rcs-phone-wrap {
  position: relative;
  z-index: 2;
  width: 270px;
  max-width: 270px;
  margin: 0 auto;
  pointer-events: auto;
  overflow: visible;
}

.home-rcs-section .home-rcs-device {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: auto;
}

.home-rcs-section .home-rcs-device.home-rcs-phone-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-rcs-section .home-rcs-seq {
  opacity: 1;
  transform: none;
}

.home-rcs-section.home-rcs-is-playing .home-rcs-seq {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-rcs-section.home-rcs-is-playing .bubble.left.home-rcs-seq {
  transform: translateX(-10px) translateY(6px) scale(0.99);
}

.home-rcs-section.home-rcs-is-playing .bubble.right.home-rcs-seq {
  transform: translateX(10px) translateY(6px) scale(0.99);
}

.home-rcs-section.home-rcs-is-playing .home-rcs-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-rcs-section.home-rcs-is-playing .promo-card.home-rcs-visible,
.home-rcs-section.home-rcs-is-playing .bubble.left.home-rcs-visible {
  animation: homeRcsMsgLeftIn 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-rcs-section.home-rcs-is-playing .bubble.right.home-rcs-visible {
  animation: homeRcsMsgRightIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-rcs-section.home-rcs-is-playing .rcs-card.home-rcs-visible {
  animation: homeRcsCardIn 0.92s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-rcs-frame {
  border-radius: 20px !important;
  overflow: hidden;
}

.home-rcs-screen {
  background: #05070f;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-rcs-statusbar {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 120, 200, 0.2) 0%, rgba(0, 60, 140, 0.08) 65%, transparent 100%);
}

.home-rcs-topbar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: #f6faff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #090d14;
}

.home-rcs-topbar strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: auto;
}

.home-rcs-back,
.home-rcs-more {
  font-size: 1rem;
  line-height: 1;
  color: #a8b4c9;
}

.home-rcs-shield svg {
  width: 14px;
  height: 13px;
  display: block;
  opacity: 0.88;
}

html[data-theme="dark"] .home-rcs-shield {
  color: #fff;
}

html:not([data-theme="dark"]) .home-rcs-shield {
  color: #111;
}

.home-rcs-avatar-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #080d15;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.home-rcs-avatar-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-rcs-hero {
  text-align: center;
  padding: 11px 10px 9px;
  border-bottom: 0;
  flex-shrink: 0;

}

.home-rcs-hero img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.home-rcs-hero .center-logo-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.home-rcs-hero .center-logo {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}

.home-rcs-hero .verified-badge {
  position: absolute;
  right: -4px;
  bottom: -5px;
  width: 20px;
  height: 20px;
}

.home-rcs-hero p {
  margin: 7px auto 0;
  max-width: 228px;
  color: #f4f8ff;
  font-size: 0.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.home-rcs-conversa {
  padding-top: 12px;
  padding-inline: 8px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: auto;
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #060a11 0%, #04070d 100%);
}

.home-rcs-conversa::-webkit-scrollbar {
  width: 7px;
}

.home-rcs-conversa .conv-mock {
  margin: 0;
}

.home-rcs-conversa .promo-card {
  max-width: 210px;
  width: 210px;
  margin: 10px 0 10px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  overflow: hidden;
  background: linear-gradient(180deg, #0a111d 0%, #060b14 100%);
  border: 1px solid rgba(95, 120, 165, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.home-rcs-conversa .promo-card .promo-img {
  display: block;
  width: 100%;
  height: 86px;
  min-height: 86px;
  object-fit: cover;
  background: #0b121e;
}

.home-rcs-conversa .promo-body {
  display: flex !important;
  position: static !important;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-height: 88px;
  padding: 8px 10px 10px;
  background: inherit;
}

.home-rcs-conversa .promo-body p {
  margin: 0;
  color: #f4f8ff;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 700;
}

.home-rcs-conversa .fake-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
  color: #eef6ff;
  cursor: pointer;
  background: linear-gradient(135deg, #0b5f9d 0%, #0d7a96 34%, #1e4f9e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 20px rgba(25, 115, 255, 0.35);
}

.home-rcs-conversa .bubble.right {
  margin: 0 0 8px auto;
  max-width: 82%;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: flex-end;
  gap: 3px;
  color: #f3f8ff;
  background: linear-gradient(135deg, #0663d4 0%, #084ec6 100%);
  padding: 8px 11px 7px;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(22, 86, 255, 0.28);
}

.home-rcs-conversa .home-rcs-reply-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-rcs-conversa .home-rcs-reply-time {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(229, 239, 255, 0.84);
}

.home-rcs-conversa .home-rcs-reply-time-outside {
  display: block;
  margin: -3px 2px 8px auto;
  text-align: right;
  background: transparent;
  color: rgba(205, 222, 248, 0.86);
}

.home-rcs-conversa .conv-cards {
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.home-rcs-conversa .home-rcs-cards-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 8px 10px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 148, 201, 0.72) rgba(13, 20, 34, 0.74);
  align-items: stretch;
}

.home-rcs-conversa .home-rcs-cards-track::-webkit-scrollbar {
  height: 5px;
}

.home-rcs-conversa .home-rcs-cards-track::-webkit-scrollbar-track {
  background: rgba(13, 20, 34, 0.74);
  border-radius: 999px;
}

.home-rcs-conversa .home-rcs-cards-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #225fa0 0%, #2f71b9 100%);
  border-radius: 999px;
}

.home-rcs-conversa .home-rcs-cards-title {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f1f6ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.home-rcs-conversa .home-rcs-cards-title span:first-child {
  display: inline-block;
  max-width: 86%;
}

.home-rcs-conversa .home-rcs-cards-dots {
  color: #9da8bc;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.home-rcs-conversa .rcs-card {
  flex: 0 0 64%;
  max-width: 170px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b121e 0%, #060b14 100%);
  border: 1px solid rgba(89, 112, 150, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  scroll-snap-align: start;
}

.home-rcs-conversa .rcs-card .card-img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: cover;
  background: #0b121e;
}

.home-rcs-conversa .rcs-card .card-body {
  padding: 8px 8px 10px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-rcs-conversa .rcs-card .card-title {
  margin: 0;
  color: #f4f8ff;
  font-size: 0.78rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-rcs-conversa .rcs-card .card-desc {
  margin: 0;
  color: #c8d7f1;
  font-size: 0.60rem;
  line-height: 1.2;
  font-weight: 600;
}

.home-rcs-conversa .rcs-card .card-text {
  margin: 2px 0;
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 800;
}

.home-rcs-conversa .rcs-card .card-cta {
  display: block;
  background: transparent;
  color: #3c9eff;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 0.60rem;
  font-weight: 800;
  margin-top: 1px;
  text-align: left;
}

/* Blindagem para qualquer HTML antigo em cache: deixa so um CTA por card */
.home-rcs-conversa .rcs-card .card-actions {
  display: none !important;
}

.home-rcs-conversa .rcs-card .card-cta+.card-cta {
  display: none;
}

html:not([data-theme="dark"]) .home-rcs-screen {
  background: #f4f7fc;
}

html:not([data-theme="dark"]) .home-rcs-topbar {
  color: #101a2b;
  border-bottom-color: rgba(86, 109, 150, 0.2);
  background: #e9f0fb;
}

html:not([data-theme="dark"]) .home-rcs-avatar-dot {
  background: #dfe8f8;
  border-color: rgba(83, 111, 163, 0.32);
}

html:not([data-theme="dark"]) .home-rcs-hero {
  border-bottom-color: transparent;
  background: linear-gradient(180deg, #eff4fc 0%, #e7edf8 100%);
}

html:not([data-theme="dark"]) .home-rcs-hero p {
  color: #101d31;
}

html:not([data-theme="dark"]) .home-rcs-conversa {
  background: linear-gradient(180deg, #eff4fc 0%, #e7edf8 100%);
}

html:not([data-theme="dark"]) .home-rcs-conversa .promo-card,
html:not([data-theme="dark"]) .home-rcs-conversa .rcs-card {
  background: #ffffff;
  border-color: rgba(102, 130, 179, 0.24);
  box-shadow: 0 8px 16px rgba(33, 56, 97, 0.16);
}

html:not([data-theme="dark"]) .home-rcs-conversa .home-rcs-cards-track {
  scrollbar-color: rgba(82, 111, 165, 0.72) rgba(199, 214, 241, 0.84);
}

html:not([data-theme="dark"]) .home-rcs-conversa .home-rcs-cards-track::-webkit-scrollbar-track {
  background: rgba(199, 214, 241, 0.84);
}

html:not([data-theme="dark"]) .home-rcs-conversa .promo-body p {
  color: #17253d;
}

html:not([data-theme="dark"]) .home-rcs-conversa .home-rcs-cards-title {
  color: #1f3253;
}

html:not([data-theme="dark"]) .home-rcs-conversa .rcs-card .card-title {
  color: #13213a;
}

html:not([data-theme="dark"]) .home-rcs-conversa .rcs-card .card-text {
  color: #182742;
}

html:not([data-theme="dark"]) .home-rcs-conversa .rcs-card .card-desc {
  color: #4d648c;
}

html:not([data-theme="dark"]) .home-rcs-conversa .home-rcs-reply-time {
  color: rgba(238, 246, 255, 0.92);
}

html:not([data-theme="dark"]) .home-rcs-conversa .home-rcs-cards-dots {
  color: #6f7f98;
}

@keyframes homeRcsMsgLeftIn {
  from {
    opacity: 0;
    transform: translateX(-16px) translateY(8px) scale(0.98);
  }

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

@keyframes homeRcsMsgRightIn {
  from {
    opacity: 0;
    transform: translateX(16px) translateY(8px) scale(0.98);
  }

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

@keyframes homeRcsCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

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

@media (max-width: 1199px) {
  .home-rcs-section .rcs-section1-phone-col::before {
    left: 50%;
    top: 54%;
    width: clamp(395px, 59vw, 600px);
    height: clamp(395px, 59vw, 600px);
  }
}

@media (max-width: 991px) {
  .home-rcs-section {
    padding: 18px 0 24px;
  }

  .home-rcs-section .rcs-section1-phone-col::before {
    left: 50%;
    top: 52%;
    width: clamp(332px, 90vw, 515px);
    height: clamp(332px, 90vw, 515px);
    transform: translate(-50%, -50%);
  }
}

html:not([data-theme="dark"]) .home-rcs-section {
  background: transparent;
}

html:not([data-theme="dark"]) .home-rcs-square-radial {
  display: none;
}

html:not([data-theme="dark"]) .home-rcs-section .rcs-section1-phone-col::before {
  filter: blur(19px);
  opacity: 0.98;
  background: radial-gradient(circle at 50% 50%,
      rgba(148, 104, 255, 0.38) 0%,
      rgba(120, 140, 255, 0.16) 32%,
      rgba(84, 160, 255, 0.07) 56%,
      rgba(84, 160, 255, 0.025) 74%,
      transparent 88%);
}

html:not([data-theme="dark"]) .home-rcs-section .rcs-section1-text .rcs-section1-badge {
  background: rgba(29, 209, 161, 0.2);
  color: #06392f;
  border-color: rgba(29, 209, 161, 0.34);
  box-shadow: none;
}

html:not([data-theme="dark"]) .home-rcs-section .rcs-section1-text .rcs-section1-title {
  color: #0b1736;
}

html:not([data-theme="dark"]) .home-rcs-section .rcs-section1-text .rcs-section1-desc {
  color: #334466;
}

html:not([data-theme="dark"]) .home-rcs-section .rcs-section1-text .rcs-section1-list li {
  color: #1c2e54;
}

/* Home: seção SMS no mesmo formato da RCS */
.home-sms-section {
  position: relative;
  padding: 80px 0 80px;
  overflow: visible;
  background: #050914;
}

.home-sms-section.home-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sms-section.home-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.home-sms-phone-col {
  position: relative;
  overflow: visible;
}

.home-sms-phone-col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(435px, 53vw, 660px);
  height: clamp(435px, 53vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.85;
  background: radial-gradient(circle at 50% 50%,
      rgba(84, 160, 255, 0.2) 0%,
      rgba(84, 160, 255, 0.085) 38%,
      rgba(84, 160, 255, 0.032) 62%,
      rgba(84, 160, 255, 0.011) 78%,
      transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.home-sms-section .sms-phone-wrap {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 300px;
  max-width: 300px;
  margin: 0 auto;
}


/* Aproxima moldura RCS ao acabamento do celular SMS */
.home-rcs-section .telefone-sim .moldura {
  padding: 4px;
  border-radius: 28px;
  position: relative;
  border: none;
  background: linear-gradient(165deg, #3d4654 0%, #343c4a 25%, #2e3542 50%, #2a303c 75%, #262b36 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: background 0.35s ease;
  width: 100%;
  max-width: 100%;
  height: 520px;
  min-height: 520px;
  margin: 0 auto;
}

.home-rcs-section .telefone-sim .moldura::before,
.home-rcs-section .telefone-sim .moldura::after {
  content: none;
}

.home-rcs-section .telefone-sim .tela {
  left: 6px;
  right: 6px;
  top: 6px;
  bottom: 6px;
  border: none;
  box-shadow: none;
  border-radius: 22px;
}

.home-rcs-section .telefone-sim .side-button {
  background: linear-gradient(165deg, #3d4654 0%, #343c4a 45%, #2e3542 100%);
}


.home-sms-text {
  max-width: 520px;
}

.home-sms-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #eafff7;
  background: rgba(8, 75, 64, 0.7);
  border: 1px solid rgba(29, 209, 161, 0.3);
}

.home-sms-title {
  margin: 12px 0 12px;
  color: #f6f9ff;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.14;
  font-weight: 800;
}

.home-sms-title span {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-sms-desc {
  margin: 0 0 14px;
  color: rgba(222, 232, 248, 0.94);
  line-height: 1.7;
  font-size: 1.03rem;
}

.home-sms-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-sms-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.62rem;
  color: rgba(230, 238, 252, 0.96);
  font-weight: 600;
}

.home-sms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-gradient-solid);
  box-shadow: 0 0 0 4px rgba(64, 150, 255, 0.16);
}

.home-sms-section .sms-notif-wrapper {
  opacity: 0;
  transform: translateY(-8px);
}

.home-sms-section .sms-notif-wrapper.is-visible {
  animation: homeSmsNotifIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-sms-section .home-sms-bubble-seq,
.home-sms-section .home-sms-msg-seq {
  opacity: 0;
}

.home-sms-section .home-sms-bubble-seq.home-sms-bubble-show,
.home-sms-section .home-sms-msg-seq.home-sms-bubble-show {
  opacity: 1;
}

#homeSmsBubbles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
}

#homeSmsBubbles .sms-sms-bubble {
  margin: 0;
}

#homeSmsBubbles .sms-sms-bubble--out {
  margin-left: auto;
}

.home-sms-section .sms-bubble-anim {
  animation: homeSmsBubbleIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes homeSmsNotifIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }

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

@keyframes homeSmsBubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

html:not([data-theme="dark"]) .home-sms-phone-col::before {
  filter: blur(19px);
  opacity: 0.98;
  background: radial-gradient(circle at 50% 50%,
      rgba(84, 160, 255, 0.42) 0%,
      rgba(84, 160, 255, 0.17) 32%,
      rgba(84, 160, 255, 0.07) 55%,
      rgba(84, 160, 255, 0.022) 74%,
      transparent 88%);
}

html:not([data-theme="dark"]) .home-sms-badge {
  color: #0a5142;
  background: rgba(29, 209, 161, 0.2);
}

html:not([data-theme="dark"]) .home-sms-title {
  color: #0b1736;
}

html:not([data-theme="dark"]) .home-sms-desc {
  color: #334466;
}

html:not([data-theme="dark"]) .home-sms-list li {
  color: #1c2e54;
}

html:not([data-theme="dark"]) .home-sms-section {
  background: transparent;
}

@media (max-width: 991px) {
  .home-sms-section {
    padding: 30px 0 62px;
  }

  .home-sms-text {
    text-align: left;
    margin: 0 auto;
  }

  .home-sms-phone-col::before {
    width: clamp(332px, 90vw, 515px);
    height: clamp(332px, 90vw, 515px);
    top: 50%;
  }
}

/* Home: seção WhatsApp */
.home-whats-section {
  position: relative;
  padding: 80px 0 80px;
  background: #050914;
  overflow: visible;
}

.home-whats-phone-col {
  position: relative;
  overflow: visible;
}

.home-whats-phone-col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(435px, 53vw, 660px);
  height: clamp(435px, 53vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.85;
  background: radial-gradient(circle at 50% 50%,
      rgba(37, 211, 102, 0.19) 0%,
      rgba(37, 211, 102, 0.078) 38%,
      rgba(37, 211, 102, 0.028) 62%,
      rgba(37, 211, 102, 0.01) 78%,
      transparent 92%);
  z-index: 0;
  pointer-events: none;
}

html:not([data-theme="dark"]) .home-whats-phone-col::before {
  filter: blur(19px);
  opacity: 0.98;
  background: radial-gradient(circle at 50% 50%,
      rgba(37, 211, 102, 0.45) 0%,
      rgba(29, 209, 161, 0.2) 34%,
      rgba(37, 211, 102, 0.09) 56%,
      rgba(29, 209, 161, 0.035) 74%,
      transparent 88%);
}

.home-whats-section .sms-phone-wrap.home-whats-phone-wrap {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 300px;
  margin: 0 auto;
  pointer-events: none;
}

.home-whats-phone-frame {
  position: relative;
  width: 100%;
  max-width: 286px;
  height: 520px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

.home-whats-phone-screen {
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #e5ddd5;
  background-image: url("../whatsapp/images/fundoWhats.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  display: flex;
  flex-direction: column;
}

.home-whats-header {
  height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1f5f52;
  color: #effff9;
  font-weight: 600;
}

.home-whats-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-whats-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #25d366;
}

.home-whats-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-whats-msg {
  max-width: 82%;
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-whats-msg--left {
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px 14px 14px 5px;
}

.home-whats-msg--right {
  margin-left: auto;
  background: #dcf8c6;
  color: #0f172a;
  border-radius: 14px 14px 5px 14px;
}

.home-whats-msg--typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  background: #ffffff;
  border-radius: 14px 14px 14px 5px;
}

.home-whats-msg--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(79, 98, 114, 0.65);
  animation: homeWhatsTyping 1.1s infinite ease-in-out;
}

.home-whats-msg--typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.home-whats-msg--typing span:nth-child(3) {
  animation-delay: 0.32s;
}

.home-whats-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.home-whats-quick span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #dbffee;
  font-size: 0.78rem;
}

.home-whats-text {
  max-width: 520px;
}

.home-whats-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #eafff7;
  background: rgba(7, 78, 52, 0.72);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.home-whats-title {
  margin: 12px 0;
  color: #f6f9ff;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.14;
  font-weight: 800;
}

.home-whats-title span {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-whats-desc {
  margin: 0 0 14px;
  color: rgba(222, 232, 248, 0.94);
  line-height: 1.7;
  font-size: 1.03rem;
}

.home-whats-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-whats-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.62rem;
  color: rgba(230, 238, 252, 0.96);
  font-weight: 600;
}

.home-whats-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #54a0ff);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.16);
}

.home-whats-msg-seq {
  opacity: 0;
}

.home-whats-msg-seq.home-whats-show {
  opacity: 1;
  animation: homeWhatsMsgIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-theme="dark"] .home-whats-phone-screen {
  background-color: #0b141a;
  background-image: url("../whatsapp/images/fundoWhats-dark.jpg");
}

@keyframes homeWhatsMsgIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

@keyframes homeWhatsTyping {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

html:not([data-theme="dark"]) .home-whats-badge {
  color: #065f46;
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.35);
}

html:not([data-theme="dark"]) .home-whats-title {
  color: #0b1736;
}

html:not([data-theme="dark"]) .home-whats-desc {
  color: #334466;
}

html:not([data-theme="dark"]) .home-whats-list li {
  color: #1c2e54;
}

html:not([data-theme="dark"]) .home-whats-list li::before {
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
}

html:not([data-theme="dark"]) .home-whats-section {
  background: transparent;
}

html:not([data-theme="dark"]) .home-voz-phone-col::before {
  filter: blur(19px);
  opacity: 0.98;
  background: radial-gradient(circle at 50% 50%,
      rgba(84, 160, 255, 0.42) 0%,
      rgba(56, 189, 248, 0.18) 32%,
      rgba(84, 160, 255, 0.075) 55%,
      rgba(84, 160, 255, 0.024) 74%,
      transparent 88%);
}

html:not([data-theme="dark"]) .home-voz-badge {
  color: #0c4a7a;
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(96, 165, 250, 0.38);
}

html:not([data-theme="dark"]) .home-voz-title {
  color: #0b1736;
}

html:not([data-theme="dark"]) .home-voz-desc {
  color: #334466;
}

html:not([data-theme="dark"]) .home-voz-list li {
  color: #1c2e54;
}

html:not([data-theme="dark"]) .home-voz-list li::before {
  box-shadow: 0 0 0 4px rgba(84, 160, 255, 0.12);
}

html:not([data-theme="dark"]) .home-voz-section {
  background: transparent;
}

/* Home: seção Torpedo de Voz */
.home-voz-section {
  position: relative;
  padding: 40px 0 86px;
  background: #050914;
  overflow: visible;
}

.home-voz-phone-col {
  position: relative;
  overflow: visible;
}

.home-voz-phone-col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(435px, 53vw, 660px);
  height: clamp(435px, 53vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.85;
  background: radial-gradient(circle at 50% 50%,
      rgba(96, 165, 250, 0.18) 0%,
      rgba(84, 160, 255, 0.075) 38%,
      rgba(84, 160, 255, 0.028) 62%,
      rgba(84, 160, 255, 0.01) 78%,
      transparent 92%);
  z-index: 0;
  pointer-events: none;
}

.home-voz-section .sms-phone-wrap.home-voz-phone-wrap {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 300px;
  margin: 0 auto;
}

.home-voz-section .sms-phone-wrapper {
  pointer-events: none;
}

.home-voz-section .home-voz-call-frame {
  pointer-events: auto;
  width: 100% !important;
  max-width: 286px !important;
  height: 520px !important;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: unset !important;
}

.home-voz-section .voz-options-grid {
  margin-top: 28px;
  column-gap: 12px;
  row-gap: 14px;
}

.home-voz-section .home-voz-call-frame .voz-dynamic-island {
  width: 72px;
  height: 23px;
  border-radius: 14px;
}

.home-voz-section .home-voz-call-frame .voz-opt-btn[tabindex="-1"] {
  pointer-events: none;
}

.home-voz-text {
  max-width: 520px;
}

.home-voz-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #eaf2ff;
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.34);
}

.home-voz-title {
  margin: 12px 0;
  color: #f6f9ff;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.14;
  font-weight: 800;
}

.home-voz-title span {
  background: var(--home-gradient-solid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-voz-desc {
  margin: 0 0 14px;
  color: rgba(222, 232, 248, 0.94);
  line-height: 1.7;
  font-size: 1.03rem;
}

.home-voz-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-voz-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.62rem;
  color: rgba(230, 238, 252, 0.96);
  font-weight: 600;
}

.home-voz-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #54a0ff);
  box-shadow: 0 0 0 4px rgba(84, 160, 255, 0.16);
}

/* CTA da Voz: faixa completa abaixo do mock + texto (área clara centralizada) */
.home-voz-cta-below {
  margin-top: clamp(24px, 4.5vw, 40px);
  padding-top: clamp(22px, 3.5vw, 36px);
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

html[data-theme="dark"] .home-voz-cta-below {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.home-voz-cta-below__hint {
  margin: 0 0 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
}

html[data-theme="dark"] .home-voz-cta-below__hint {
  color: rgba(226, 232, 240, 0.9);
}

.home-voz-cta-below__btn {
  box-shadow:
    0 4px 20px rgba(29, 209, 161, 0.3),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

/* Editorial: narrativa + ilustração (stack → hub → dispositivo) */
.home-editorial {
  position: relative;
  padding: clamp(56px, 10vw, 96px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 18% 30%, rgba(29, 209, 161, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 55% at 92% 70%, rgba(84, 160, 255, 0.07), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #ffffff 100%);
}

html[data-theme="dark"] .home-editorial {
  background:
    radial-gradient(ellipse 75% 48% at 15% 25%, rgba(29, 209, 161, 0.09), transparent 52%),
    radial-gradient(ellipse 65% 50% at 95% 75%, rgba(84, 160, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #060b14 0%, #0a101c 48%, #070d16 100%);
}

.home-editorial__split {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.home-editorial__copy .home-section-kicker {
  margin-bottom: 14px;
}

.home-editorial__title {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.16;
  color: #0f172a;
}

html[data-theme="dark"] .home-editorial__title {
  color: #f1f5f9;
}

.home-editorial__lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: #475569;
}

html[data-theme="dark"] .home-editorial__lead {
  color: #94a3b8;
}

.home-editorial__lead strong {
  color: #0f172a;
  font-weight: 700;
}

html[data-theme="dark"] .home-editorial__lead strong {
  color: #e2e8f0;
}

.home-editorial__quote {
  position: relative;
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.2rem;
}

.home-editorial__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 4px;
  background: var(--home-gradient-solid, linear-gradient(180deg, #1dd1a1 0%, #54a0ff 100%));
}

.home-editorial__quote p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: #334155;
}

html[data-theme="dark"] .home-editorial__quote p {
  color: #cbd5e1;
}

.home-editorial__meta {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
}

html[data-theme="dark"] .home-editorial__meta {
  color: #94a3b8;
}

.home-editorial__meta strong {
  color: #0f172a;
  font-weight: 800;
}

html[data-theme="dark"] .home-editorial__meta strong {
  color: #f1f5f9;
}

.home-editorial__figure {
  margin: 0;
  text-align: center;
}

.home-editorial__figure-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 32px) clamp(16px, 3vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(ellipse 90% 80% at 50% 20%, rgba(29, 209, 161, 0.06), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.75) 100%);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .home-editorial__figure-frame {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 85% 75% at 50% 15%, rgba(29, 209, 161, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.home-editorial__art {
  width: 100%;
  max-width: min(420px, 100%);
  height: auto;
  display: block;
}

.home-editorial__svg-surface {
  stroke: rgba(100, 116, 139, 0.45);
  fill: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .home-editorial__svg-surface {
  stroke: rgba(148, 163, 184, 0.32);
  fill: rgba(255, 255, 255, 0.04);
}

.home-editorial__svg-monitor {
  transform-box: fill-box;
  transform-origin: center center;
  animation: home-editorial-monitor-float 4.8s ease-in-out infinite;
}

.home-editorial__svg-titlebar {
  fill: rgba(15, 23, 42, 0.07);
  stroke: rgba(148, 163, 184, 0.15);
  stroke-width: 1;
}

html[data-theme="dark"] .home-editorial__svg-titlebar {
  fill: rgba(0, 0, 0, 0.4);
  stroke: rgba(255, 255, 255, 0.06);
}

.home-editorial__svg-screen {
  fill: rgba(241, 245, 249, 0.65);
  stroke: rgba(148, 163, 184, 0.12);
  stroke-width: 1;
}

html[data-theme="dark"] .home-editorial__svg-screen {
  fill: rgba(2, 6, 23, 0.55);
  stroke: rgba(255, 255, 255, 0.06);
}

.home-editorial__svg-traffic--red {
  fill: #f87171;
}

.home-editorial__svg-traffic--yellow {
  fill: #facc15;
}

.home-editorial__svg-traffic--green {
  fill: #4ade80;
}

html[data-theme="dark"] .home-editorial__svg-traffic--red {
  fill: #fb7185;
}

html[data-theme="dark"] .home-editorial__svg-traffic--yellow {
  fill: #fde047;
}

html[data-theme="dark"] .home-editorial__svg-traffic--green {
  fill: #86efac;
}

.home-editorial__svg-terminal-title,
.home-editorial__svg-terminal-sub {
  font-family: ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  fill: url(#home-editorial-grad);
}

.home-editorial__svg-terminal-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-editorial__svg-terminal-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.home-editorial__svg-cursor {
  fill: #1dd1a1;
  animation: home-editorial-cursor-blink 1s step-end infinite;
}

html[data-theme="dark"] .home-editorial__svg-cursor {
  fill: #5eead4;
}

@keyframes home-editorial-monitor-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes home-editorial-cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-editorial__svg-monitor {
    animation: none;
  }

  .home-editorial__svg-cursor {
    animation: none;
    opacity: 1;
  }
}

.home-editorial__svg-inner {
  fill: rgba(148, 163, 184, 0.2);
}

html[data-theme="dark"] .home-editorial__svg-inner {
  fill: rgba(148, 163, 184, 0.14);
}

.home-editorial__svg-notch {
  fill: rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .home-editorial__svg-notch {
  fill: rgba(255, 255, 255, 0.12);
}

.home-editorial__svg-bubble-out {
  fill: rgba(84, 160, 255, 0.2);
  stroke: rgba(84, 160, 255, 0.35);
  stroke-width: 1;
}

html[data-theme="dark"] .home-editorial__svg-bubble-out {
  fill: rgba(84, 160, 255, 0.12);
  stroke: rgba(84, 160, 255, 0.28);
}

.home-editorial__svg-bubble-in {
  fill: rgba(29, 209, 161, 0.16);
  stroke: rgba(29, 209, 161, 0.32);
  stroke-width: 1;
}

html[data-theme="dark"] .home-editorial__svg-bubble-in {
  fill: rgba(29, 209, 161, 0.1);
  stroke: rgba(29, 209, 161, 0.25);
}

.home-editorial__svg-home {
  fill: rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .home-editorial__svg-home {
  fill: rgba(148, 163, 184, 0.25);
}

.home-editorial__caption {
  margin: 14px auto 0;
  max-width: 28rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

html[data-theme="dark"] .home-editorial__caption {
  color: #94a3b8;
}

@media (max-width: 991px) {
  .home-editorial__split {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }

  .home-editorial__figure {
    order: -1;
  }
}

/* Padroniza dimensões dos mocks no responsivo (largura como o SMS) */
@media (max-width: 991px) {

  .home-rcs-section .home-rcs-phone-wrap,
  .home-sms-section .sms-phone-wrap,
  .home-whats-section .home-whats-phone-wrap,
  .home-voz-section .home-voz-phone-wrap {
    width: min(300px, 86vw);
    max-width: min(300px, 86vw);
  }

  .home-whats-section {
    padding: 28px 0 62px;
  }

  .home-whats-phone-col::before,
  .home-voz-phone-col::before {
    width: clamp(332px, 90vw, 515px);
    height: clamp(332px, 90vw, 515px);
    top: 50%;
  }

  .home-voz-section {
    padding: 28px 0 62px;
  }
}

@media (max-width: 991px) {
  .home-whats-section {
    padding: 28px 0 62px;
  }

  .home-whats-phone-col::before {
    width: clamp(332px, 90vw, 515px);
    height: clamp(332px, 90vw, 515px);
    top: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .home-rcs-section .telefone-sim,
  .home-rcs-section .promo-card,
  .home-rcs-section .bubble.left,
  .home-rcs-section .bubble.right,
  .home-rcs-section .rcs-card,
  .home-rcs-section .product-line {
    transition: none;
  }

  .home-rcs-section .rcs-section1-phone-col::before,
  .home-sms-phone-col::before,
  .home-whats-phone-col::before,
  .home-voz-phone-col::before {
    filter: none;
  }
}

/* --- CTA final --- */
.home-cta-strip {
  padding: 88px 0;
  background: linear-gradient(125deg, #17b897 0%, #1dd1a1 32%, #4096ff 100%);
  background-size: 160% 160%;
  animation: homeCtaGradient 16s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes homeCtaGradient {

  0%,
  100% {
    background-position: 12% 50%;
  }

  50% {
    background-position: 88% 50%;
  }
}

.home-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.2), transparent 42%),
    radial-gradient(circle at 88% 65%, rgba(0, 0, 0, 0.08), transparent 38%);
  pointer-events: none;
}

.home-cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.16) 48%,
      transparent 55%);
  background-size: 220% 100%;
  animation: homeCtaShine 11s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes homeCtaShine {

  0%,
  45% {
    background-position: 120% 0;
  }

  55%,
  100% {
    background-position: -20% 0;
  }
}

.home-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta-copy {
  max-width: 520px;
}

.home-cta-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.12);
}

.home-cta-strip p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #0f172a;
  background: #fff;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.home-btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  color: #0f172a;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.home-btn-cta-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(29, 209, 161, 0.35), rgba(84, 160, 255, 0.3));
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.home-btn-cta:hover .home-btn-cta-icon {
  transform: translateX(4px);
}

.home-cta-strip .home-stagger-item {
  filter: none;
}

[data-theme="dark"] .home-section-kicker {
  color: #f0fdfa;
  background: #134e4a;
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .home-solucoes {
  background:
    #000
}

[data-theme="dark"] .home-numeros::after {
  width: min(520px, 90vw);
  height: min(380px, 50vw);
  bottom: -100px;
  background: radial-gradient(circle, rgba(29, 209, 161, 0.16) 0%, rgba(84, 160, 255, 0.06) 45%, transparent 72%);
}

[data-theme="dark"] .home-section-title {
  color: #f1f5f9;
}

[data-theme="dark"] .home-section-desc {
  color: #94a3b8;
}

[data-theme="dark"] .home-solucao-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92) 0%, rgba(7, 16, 34, 0.98) 100%);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .home-solucao-card:hover {
  border-color: rgba(29, 209, 161, 0.45);
}

[data-theme="dark"] .home-solucao-card h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .home-solucao-card p {
  color: #94a3b8;
}

[data-theme="dark"] .home-solucao-card--soon {
  border-color: rgba(59, 130, 246, 0.38);
  background: linear-gradient(145deg, rgba(13, 26, 50, 0.92) 0%, rgba(8, 20, 42, 0.98) 100%);
}

[data-theme="dark"] .home-solucao-card--soon .home-solucao-icon {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.22), rgba(29, 209, 161, 0.16));
  border-color: rgba(59, 130, 246, 0.42);
}

[data-theme="dark"] .home-solucao-soon {
  color: #eff6ff;
  background: rgba(37, 99, 235, 0.34);
  border-color: rgba(96, 165, 250, 0.42);
}

@media (max-width: 991px) {
  .home-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-solucoes {
    padding: 64px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-section-kicker::after {
    animation: none;
  }

  .home-solucoes::before,
  .home-solucoes::after {
    animation: none;
  }

  .home-channels-stack--glow-lit::before {
    animation: none;
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  html[data-theme="dark"] .home-channels-stack--glow-lit .home-channels-stack-skin::after,
  html:not([data-theme="dark"]) .home-channels-stack--glow-lit .home-channels-stack-skin::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: none;
  }

  .home-cta-strip {
    animation: none;
    background: var(--home-gradient-solid);
    background-size: 100% 100%;
  }

  .home-cta-strip::after {
    animation: none;
    opacity: 0;
  }

  .home-reveal.visible .home-section-title::after {
    animation: none;
    opacity: 1;
    transform: scaleX(1);
  }

  .home-channels-stack:not(.home-channels-stack--glow-lit) #produto-rcs.home-reveal.visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .home-channels-stack--glow-lit #produto-rcs.home-reveal.visible {
    transition-delay: 0s;
  }

  .home-channels-stack--glow-lit #produto-rcs.home-reveal.visible .rcs-section1-text,
  .home-channels-stack--glow-lit #produto-rcs.home-reveal.visible .rcs-section1-phone-col {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Tema escuro na home: canvas único (body preto em home.css); seções RCS/SMS/Whats/Voz sem faixa de cor */
html[data-theme="dark"] .home-rcs-section,
html[data-theme="dark"] .home-sms-section,
html[data-theme="dark"] .home-whats-section,
html[data-theme="dark"] .home-voz-section {
  background: transparent;
}

/* Mesmo canvas no bloco .home-channels-stack: tema claro também sem “faixas” por seção */
html:not([data-theme="dark"]) .home-channels-stack .home-rcs-section,
html:not([data-theme="dark"]) .home-channels-stack .home-sms-section,
html:not([data-theme="dark"]) .home-channels-stack .home-whats-section,
html:not([data-theme="dark"]) .home-channels-stack .home-voz-section {
  background: transparent;
}

/* Primeiro demo RCS: texto + celular só após a luz do stack (alinha ao sweep ~0,6s) */
.home-channels-stack:not(.home-channels-stack--glow-lit) #produto-rcs.home-reveal.visible {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
}

.home-channels-stack--glow-lit #produto-rcs.home-reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.92s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.92s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.58s;
}

@keyframes homeRcsDemoSideIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home-channels-stack--glow-lit #produto-rcs.home-reveal.visible .rcs-section1-text {
  animation: homeRcsDemoSideIn 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.66s both;
}

.home-channels-stack--glow-lit #produto-rcs.home-reveal.visible .rcs-section1-phone-col {
  animation: homeRcsDemoSideIn 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

/* Home-only: visual do botao "Ver solucoes" no demo RCS */
#produto-rcs .rcs-use-case-msg-buttons .rcs-use-case-btn {
  display: inline-block;
  min-width: 165px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  color: #0f2347;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%) border-box;
  box-shadow: 0 4px 14px rgba(84, 160, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#produto-rcs .rcs-use-case-msg-buttons .rcs-use-case-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px rgba(84, 160, 255, 0.28);
}

#produto-rcs .rcs-use-case-msg-buttons .rcs-use-case-btn.is-auto-fired {
  animation: none;
  filter: brightness(0.98);
  box-shadow: 0 2px 10px rgba(84, 160, 255, 0.2);
}

/* Home-only: oferta com imagem mais dominante no card */
#produto-rcs .rcs-use-case-msg-img {
  height: 102px;
  margin: -10px -12px 10px -12px;
  border-radius: 12px 12px 0 0;
  background-size: cover;
  background-position: center;
}

#produto-rcs .rcs-use-case-msg-text {
  font-size: 0.74rem;
  line-height: 1.22;
  font-weight: 600;
}