/**
 * Seção Ativação por voz + integração SMS, RCS, WhatsApp.
 * H2 igual aos outros (3rem + gradiente), layout melhorado, celular interativo.
 */

.voz-omnichannel {
  padding: 100px 0;
  background: var(--rcs-bg-primary, #ffffff);
}

[data-theme="dark"] .voz-omnichannel {
  background: var(--rcs-bg-primary, #0f172a);
}

/* --- Header: H2 3rem + mesma cor/gradiente das outras seções --- */
.voz-omnichannel-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Fade-in (stagger via JS) */
.voz-omnichannel-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.voz-omnichannel-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards dos canais (SMS, RCS, WhatsApp): sempre visíveis, sem dominó */
.voz-omnichannel-channels .voz-omnichannel-channel {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .voz-omnichannel-reveal {
    transform: none;
    transition: none;
  }
}

/* Padrão H2: gradiente único (tema claro e escuro), sem fundo */
.voz-omnichannel-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  background: linear-gradient(135deg, #08c0f5 0%, #1365a9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.voz-omnichannel-subtitle {
  font-size: 1.1rem;
  color: var(--rcs-text-secondary, #555);
  line-height: 1.75;
  margin: 0;
}

[data-theme="dark"] .voz-omnichannel-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Pills (resumo de casos de uso) */
.voz-omnichannel-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 6px auto 22px;
  max-width: 920px;
}

.voz-omnichannel-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.92);
  background: rgba(8, 192, 245, 0.09);
  border: 1px solid rgba(8, 192, 245, 0.18);
  backdrop-filter: blur(6px);
}

[data-theme="dark"] .voz-omnichannel-pill {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(2, 6, 23, 0.6);
  border-color: rgba(8, 192, 245, 0.3);
}

/* --- Bloco de impacto --- */
.voz-omnichannel-impact {
  background: var(--rcs-card-bg, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.voz-omnichannel-impact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #08c0f5 0%, #1365a9 100%);
  opacity: 0.9;
}

[data-theme="dark"] .voz-omnichannel-impact {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.voz-omnichannel-impact-text {
  font-size: 1rem;
  color: var(--rcs-text-secondary, #444);
  line-height: 1.7;
  margin: 0;
  padding-left: 14px;
}

[data-theme="dark"] .voz-omnichannel-impact-text {
  color: rgba(255, 255, 255, 0.9);
}

.voz-omnichannel-impact-text strong {
  color: var(--rcs-text-primary, #1a1a1a);
}

[data-theme="dark"] .voz-omnichannel-impact-text strong {
  color: #fff;
}

/* --- Título de subseção --- */
.voz-omnichannel-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rcs-text-primary, #1a1a1a);
  margin-bottom: 24px;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

[data-theme="dark"] .voz-omnichannel-heading {
  color: #fff;
}

/* --- Grid dos 3 canais --- */
.voz-omnichannel-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.voz-omnichannel-channel {
  background: var(--rcs-card-bg, #ffffff);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .voz-omnichannel-channel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.voz-omnichannel-channel:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 192, 245, 0.35);
  box-shadow: 0 16px 48px rgba(8, 192, 245, 0.16), 0 0 0 1px rgba(8, 192, 245, 0.12);
}

[data-theme="dark"] .voz-omnichannel-channel:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 192, 245, 0.35);
  box-shadow: 0 16px 48px rgba(8, 192, 245, 0.16), 0 0 0 1px rgba(8, 192, 245, 0.12);
}

.voz-omnichannel-channel-icon {
  margin-bottom: 16px;
}

.voz-omnichannel-channel-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.voz-omnichannel-channel h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rcs-text-primary, #1a1a1a);
  margin-bottom: 10px;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

[data-theme="dark"] .voz-omnichannel-channel h4 {
  color: #fff;
}

.voz-omnichannel-channel p {
  font-size: 0.95rem;
  color: var(--rcs-text-secondary, #555);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .voz-omnichannel-channel p {
  color: rgba(255, 255, 255, 0.8);
}

.voz-omnichannel-channel-lead {
  margin: 0 0 14px 0;
  font-size: 0.98rem;
  color: var(--rcs-text-secondary, #555);
  line-height: 1.6;
}

[data-theme="dark"] .voz-omnichannel-channel-lead {
  color: rgba(255, 255, 255, 0.82);
}

.voz-omnichannel-channel-list {
  margin: 0;
  padding-left: 18px;
  color: var(--rcs-text-secondary, #555);
  line-height: 1.55;
  font-size: 0.95rem;
}

[data-theme="dark"] .voz-omnichannel-channel-list {
  color: rgba(255, 255, 255, 0.8);
}

.voz-omnichannel-channel-list li+li {
  margin-top: 8px;
}

.voz-omnichannel-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* --- Responsivo --- */
@media (max-width: 991px) {
  .voz-omnichannel-channels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .voz-omnichannel {
    padding: 60px 0;
  }

  .voz-omnichannel-title {
    font-size: 2rem;
  }

  .voz-omnichannel-subtitle {
    font-size: 1rem;
  }

  .voz-omnichannel-impact {
    padding: 20px 20px;
  }
}