:root {
  --brand-dark: #071B4D;
  --brand-blue: #126DFF;
  --brand-light: #EAF5FF;
  --brand-orange: #FF6B1A;
  --brand-orange-light: #FF9B32;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --bg: #FAFCFF;
  --shadow: 0 24px 60px rgba(7, 27, 77, 0.08);
  --bs-body-font-family: 'Inter', sans-serif;
  --bs-body-color: #071B4D;
}

/* BLOG EASYLITE - portal técnico */
:root {
  --blog-blue-dark: #071b4d;
  --blog-blue: #126dff;
  --blog-blue-soft: #eaf5ff;
  --blog-orange: #ff6b1a;
  --blog-green: #0ca960;
  --blog-purple: #7c4dff;
  --blog-cyan: #16b8e8;
  --blog-muted: #53627f;
  --blog-bg: #f8fbff;
  --blog-border: rgba(18, 109, 255, 0.14);
  --blog-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --blog-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
  --page-max: 1440px;
  --page-wide: 1680px;
}

.container-wide {
  width: min(100% - 64px, var(--page-wide));
  margin-inline: auto;
}

.blog-page {
  color: var(--blog-blue-dark);
  background: #ffffff;
}

.blog-page h1,
.blog-page h2,
.blog-page h3,
.blog-page p,
.blog-page span,
.blog-page li,
.blog-page a,
.blog-page strong,
.blog-page summary {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.blog-section {
  padding: 88px 0;
}

.blog-section-header {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

.blog-section-header h2 {
  margin: 0 0 16px;
  color: var(--blog-blue-dark);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.blog-section-header p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.65;
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--blog-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.12), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.08;
  pointer-events: none;
}

.blog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.46fr) minmax(680px, 0.54fr);
  gap: 72px;
  align-items: center;
}

.blog-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--blog-blue-dark);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.blog-hero-copy h1 strong {
  background: linear-gradient(135deg, var(--blog-blue), var(--blog-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero-copy p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.btn-primary-blog,
.btn-secondary-blog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary-blog {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #ff5a00);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28);
}

.btn-secondary-blog {
  color: var(--blog-blue-dark);
  background: #ffffff;
  border: 1px solid var(--blog-border);
  box-shadow: var(--blog-shadow);
}

.btn-primary-blog:hover,
.btn-secondary-blog:hover {
  transform: translateY(-3px);
  box-shadow: var(--blog-shadow-lg);
}

.blog-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.blog-hero-highlights div {
  padding: 18px;
  border: 1px solid var(--blog-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--blog-shadow);
}

.blog-hero-highlights i {
  color: var(--blog-blue);
  font-size: 24px;
}

.blog-hero-highlights span {
  display: block;
  margin-top: 10px;
  color: var(--blog-blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.blog-hero-visual {
  min-width: 0;
}

.blog-tech-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 30% 30%, rgba(18, 109, 255, 0.12), transparent 38%),
    radial-gradient(circle at 75% 25%, rgba(255, 107, 26, 0.12), transparent 34%);
  box-shadow: 0 34px 100px rgba(7, 27, 77, 0.10);
  overflow: hidden;
}

.blog-tech-panel::before {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px dashed rgba(18, 109, 255, 0.28);
  border-radius: 34px;
}

.blog-orbit-ring {
  position: absolute;
  inset: 120px 160px;
  border: 1px solid rgba(18, 109, 255, 0.16);
  border-radius: 999px;
}

.blog-center-card,
.blog-floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--blog-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--blog-shadow-lg);
}

.blog-center-card {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 230px;
  min-height: 210px;
  padding: 30px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.blog-center-card i {
  color: var(--blog-blue);
  font-size: 54px;
}

.blog-center-card strong {
  margin-top: 14px;
  color: var(--blog-blue-dark);
  font-size: 34px;
  font-weight: 950;
  line-height: 1.05;
}

.blog-center-card span {
  margin-top: 10px;
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.45;
}

.blog-floating-card {
  display: grid;
  gap: 6px;
  width: 190px;
  padding: 22px;
}

.blog-floating-card i {
  color: var(--blog-blue);
  font-size: 34px;
}

.blog-floating-card strong {
  color: var(--blog-blue-dark);
  font-size: 17px;
  font-weight: 950;
}

.blog-floating-card span {
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.35;
}

.blog-card-voip { top: 60px; left: 70px; }
.blog-card-network { top: 70px; right: 70px; }
.blog-card-api { bottom: 70px; left: 70px; }
.blog-card-cloud { bottom: 70px; right: 70px; }

.blog-search-section {
  padding: 34px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 109, 255, 0.08);
}

.blog-search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid var(--blog-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--blog-shadow);
}

.blog-search-box i {
  color: var(--blog-blue);
  font-size: 26px;
}

.blog-search-box input {
  width: 100%;
  border: 0;
  outline: none;
  color: var(--blog-blue-dark);
  font-size: 16px;
  background: transparent;
}

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-filter-tabs button {
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--blog-blue-dark);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.blog-filter-tabs button.is-active {
  color: #ffffff;
  background: var(--blog-blue);
}

.blog-category-grid,
.blog-posts-grid,
.blog-library-grid,
.blog-product-content-grid,
.blog-trails-grid,
.blog-journey-grid,
.blog-news-grid,
.blog-science-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

.blog-explainer-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 109, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-topic-list {
  display: grid;
  gap: 28px;
}

.blog-topic-article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  padding: 36px;
  border: 1px solid var(--blog-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--blog-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-topic-article:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 109, 255, 0.26);
  box-shadow: var(--blog-shadow-lg);
}

.blog-topic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  color: var(--blog-blue);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 42%),
    var(--blog-blue-soft);
  box-shadow: 0 18px 40px rgba(18, 109, 255, 0.10);
}

.blog-topic-icon i {
  font-size: 34px;
}

.blog-topic-content > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blog-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-topic-content h3 {
  margin: 0 0 16px;
  color: var(--blog-blue-dark);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.blog-topic-content p {
  max-width: 980px;
  margin: 0 0 16px;
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.75;
}

.blog-topic-content ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.blog-topic-content li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border: 1px solid rgba(18, 109, 255, 0.10);
  border-radius: 18px;
  color: var(--blog-blue-dark);
  background: #f8fbff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.blog-topic-content li::before {
  content: "\2713";
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--blog-green);
  font-weight: 900;
}

.blog-topic-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #0f9f74);
  box-shadow: 0 16px 34px rgba(12, 169, 96, 0.20);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-topic-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(12, 169, 96, 0.28);
}

.blog-card,
.blog-category-card,
.blog-post-card,
.blog-trail-card,
.blog-library-card,
.blog-faq-grid details {
  border: 1px solid var(--blog-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--blog-shadow);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover,
.blog-category-card:hover,
.blog-post-card:hover,
.blog-trail-card:hover,
.blog-library-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 109, 255, 0.28);
  box-shadow: var(--blog-shadow-lg);
}

.blog-card i,
.blog-category-card i,
.blog-post-icon i,
.blog-trail-card > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--blog-blue);
  background: var(--blog-blue-soft);
  font-size: 28px;
}

.blog-category-orange i {
  color: var(--blog-orange);
  background: rgba(255, 107, 26, 0.10);
}

.blog-category-card h3,
.blog-post-card h3,
.blog-trail-card h3,
.blog-card h3,
.blog-library-card h3 {
  margin: 0 0 12px;
  color: var(--blog-blue-dark);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.blog-category-card p,
.blog-post-card p,
.blog-trail-card p,
.blog-card p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.blog-category-card > span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blog-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-featured-section {
  padding: 40px 0 72px;
  background: #ffffff;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(520px, 0.58fr);
  gap: 36px;
  align-items: center;
  border: 1px solid var(--blog-border);
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: var(--blog-shadow-lg);
  padding: 28px;
}

.blog-featured-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 109, 255, 0.32), transparent 36%),
    linear-gradient(135deg, #071b4d, #126dff);
  overflow: hidden;
}

.blog-featured-visual > i {
  color: #ffffff;
  font-size: 74px;
}

.blog-featured-points {
  position: absolute;
  inset: auto 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-featured-points span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.blog-featured-copy h2 {
  margin: 0 0 16px;
  color: var(--blog-blue-dark);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.blog-featured-copy p {
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.65;
}

.blog-post-category {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blog-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.blog-post-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blog-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.blog-post-link,
.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blog-blue);
  font-weight: 900;
  text-decoration: none;
}

.blog-post-card[hidden] {
  display: none;
}

.blog-journey-section,
.blog-trails-section,
.blog-news-section,
.blog-library-section,
.blog-products-section,
.blog-faq-section {
  background: var(--blog-bg);
}

.blog-trail-card ul,
.blog-library-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--blog-muted);
  font-size: 15px;
  line-height: 1.55;
}

.blog-editorial-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 0;
  padding: 16px 20px;
  border-radius: 18px;
  color: var(--blog-muted);
  background: #ffffff;
  box-shadow: var(--blog-shadow);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.blog-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.blog-faq-grid summary {
  cursor: pointer;
  color: var(--blog-blue-dark);
  font-weight: 900;
}

.blog-faq-grid p {
  margin: 16px 0 0;
  color: var(--blog-muted);
  line-height: 1.65;
}

.blog-whatsapp-cta {
  padding: 32px 0 88px;
  background: #ffffff;
}

.blog-whatsapp-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 107, 26, 0.34), transparent 36%),
    linear-gradient(135deg, #0a47d9, #071b4d);
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.18);
}

.blog-whatsapp-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.blog-whatsapp-card p {
  margin: 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.6;
}

.blog-whatsapp-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #ff5a00);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(255, 107, 26, 0.30);
}

.blog-whatsapp-card.blog-whatsapp-cta-informative,
.blog-whatsapp-cta-informative .blog-whatsapp-card {
  grid-template-columns: 1fr;
}

.blog-whatsapp-cta-informative .blog-whatsapp-card p {
  max-width: 980px;
}

@media (max-width: 1199px) {
  .container-wide {
    width: min(100% - 48px, 1180px);
  }

  .blog-hero-grid,
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-category-grid,
  .blog-posts-grid,
  .blog-library-grid,
  .blog-product-content-grid,
  .blog-trails-grid,
  .blog-journey-grid,
  .blog-news-grid,
  .blog-science-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .blog-tech-panel {
    min-height: 500px;
  }

  .blog-topic-content ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .container-wide {
    width: min(100% - 40px, 960px);
  }

  .blog-section,
  .blog-hero {
    padding: 72px 0;
  }

  .blog-hero-copy,
  .blog-section-header {
    text-align: center;
  }

  .blog-hero-copy p {
    margin-inline: auto;
  }

  .blog-hero-actions {
    justify-content: center;
  }

  .blog-hero-highlights {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .blog-whatsapp-card,
  .blog-faq-grid {
    grid-template-columns: 1fr;
  }

  .blog-whatsapp-card {
    text-align: center;
  }

  .blog-topic-article {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .blog-topic-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 640px) {
  .container-wide {
    width: min(100% - 28px, 640px);
  }

  .blog-section,
  .blog-hero {
    padding: 56px 0;
  }

  .blog-section-header,
  .blog-hero-copy {
    text-align: left;
  }

  .blog-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .blog-hero-copy p {
    font-size: 16px;
  }

  .blog-hero-actions {
    flex-direction: column;
  }

  .btn-primary-blog,
  .btn-secondary-blog {
    width: 100%;
  }

  .blog-hero-highlights,
  .blog-category-grid,
  .blog-posts-grid,
  .blog-library-grid,
  .blog-product-content-grid,
  .blog-trails-grid,
  .blog-journey-grid,
  .blog-news-grid,
  .blog-science-grid {
    grid-template-columns: 1fr;
  }

  .blog-tech-panel {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 20px;
  }

  .blog-tech-panel::before,
  .blog-orbit-ring {
    display: none;
  }

  .blog-center-card,
  .blog-floating-card {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .blog-center-card {
    padding: 24px;
  }

  .blog-featured-card,
  .blog-whatsapp-card {
    padding: 24px;
    border-radius: 24px;
  }

  .blog-search-box {
    min-height: 58px;
  }

  .blog-topic-article {
    padding: 24px;
    border-radius: 24px;
  }

  .blog-topic-content h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .blog-topic-content p {
    font-size: 16px;
  }

  .blog-topic-content a {
    width: 100%;
  }

  .blog-editorial-note {
    align-items: flex-start;
    text-align: left;
  }
}

/* EasyChat header alinhado ao padrão global usado em EasyVoice */
body.easychat-page .header .container {
  width: 100% !important;
  max-width: 1320px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: calc(var(--bs-gutter-x) * .5) !important;
  padding-left: calc(var(--bs-gutter-x) * .5) !important;
}

body.easychat-page .header .navbar {
  min-height: 0 !important;
  padding: 18px 0 !important;
}

body.easychat-page .header .navbar-brand img {
  width: min(250px, 62vw) !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}

body.easychat-page .header .navbar-nav {
  align-items: center !important;
  gap: 0 !important;
}

body.easychat-page .header .nav-link {
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  body.easychat-page .header .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body.easychat-page .header .container {
    max-width: 960px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body.easychat-page .header .container {
    max-width: 720px !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body.easychat-page .header .container {
    max-width: 540px !important;
  }
}

@media (max-width: 767.98px) {
  body.easychat-page .header .navbar {
    padding: 12px 0 !important;
  }
}

/* CASES EASYLITE - página de prova social e clientes */
body.cases-body {
  --cases-blue-dark: #071b4d;
  --cases-blue: #126dff;
  --cases-orange: #ff6b1a;
  --cases-muted: #53627f;
  --cases-bg: #f8fbff;
  --cases-border: rgba(18, 109, 255, 0.14);
  --cases-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --cases-shadow-lg: 0 30px 90px rgba(7, 27, 77, 0.11);
  background: #ffffff;
  color: var(--cases-blue-dark);
  font-family: "Inter", sans-serif;
}

body.cases-body .container {
  width: min(100% - 48px, 1280px);
  max-width: none;
  margin-inline: auto;
}

body.cases-body .container-wide {
  width: min(100% - 64px, 1480px);
  margin-inline: auto;
}

.cases-page {
  background: #ffffff;
  color: var(--cases-blue-dark);
}

.cases-page h1,
.cases-page h2,
.cases-page h3,
.cases-page p,
.cases-page span,
.cases-page li,
.cases-page a,
.cases-page strong {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.cases-section {
  padding: 88px 0;
}

.cases-section-header {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.cases-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--cases-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cases-section-header h2 {
  margin: 0 0 16px;
  color: var(--cases-blue-dark);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cases-section-header p {
  margin: 0 auto;
  color: var(--cases-muted);
  font-size: 17px;
  line-height: 1.65;
}

.cases-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.12), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.cases-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.15) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.10;
  pointer-events: none;
}

.cases-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.46fr) minmax(680px, 0.54fr);
  gap: 72px;
  align-items: center;
}

.cases-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--cases-blue-dark);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.cases-hero-copy h1 strong {
  background: linear-gradient(135deg, var(--cases-blue), var(--cases-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cases-hero-copy p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--cases-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cases-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.btn-primary-cases,
.btn-secondary-cases {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary-cases {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #ff5a00);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28);
}

.btn-secondary-cases {
  color: var(--cases-blue-dark);
  background: #ffffff;
  border: 1px solid rgba(18, 109, 255, 0.16);
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06);
}

.btn-primary-cases:hover,
.btn-secondary-cases:hover {
  transform: translateY(-3px);
}

.cases-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.cases-hero-highlights div {
  padding: 18px;
  border: 1px solid var(--cases-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--cases-shadow);
}

.cases-hero-highlights i {
  color: var(--cases-blue);
  font-size: 24px;
}

.cases-hero-highlights span {
  display: block;
  margin-top: 10px;
  color: var(--cases-blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.cases-orbit-panel {
  position: relative;
  min-height: 610px;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(18, 109, 255, 0.11), transparent 45%),
    rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.cases-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(18, 109, 255, 0.26);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 560px;
  height: 560px;
}

.cases-center-brand {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  padding: 38px;
  border: 1px solid var(--cases-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--cases-shadow-lg);
  text-align: center;
  transform: translate(-50%, -50%);
}

.cases-center-brand img {
  width: 170px;
  height: auto;
}

.cases-center-brand span {
  color: var(--cases-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.cases-floating-logo {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 96px;
  padding: 18px;
  border: 1px solid var(--cases-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--cases-shadow-lg);
}

.cases-floating-logo img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.case-logo-a { top: 58px; left: 64px; }
.case-logo-b { top: 218px; left: 28px; }
.case-logo-c { top: 58px; right: 42px; }
.case-logo-d { top: 228px; right: 16px; }
.case-logo-e { bottom: 92px; left: 48px; }
.case-logo-f { bottom: 72px; right: 54px; }

.cases-orbit-icon {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--cases-blue);
  background: #ffffff;
  box-shadow: var(--cases-shadow);
  font-size: 27px;
}

.icon-phone { top: 38px; left: 50%; }
.icon-whatsapp { top: 72px; right: 28%; color: #18c76f; }
.icon-chat { bottom: 160px; left: 44%; color: var(--cases-orange); }
.icon-chart { bottom: 82px; left: 52%; }

.cases-logos-grid,
.cases-authority-grid,
.cases-small-grid,
.cases-segments-grid {
  display: grid;
  gap: 22px;
}

.cases-logos-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
}

.case-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--cases-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--cases-shadow);
}

.case-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-logo-placeholder,
.case-small-placeholder {
  color: var(--cases-blue-dark);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.cases-authority {
  background: var(--cases-bg);
}

.cases-authority-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.cases-authority-grid article,
.cases-segments-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--cases-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--cases-shadow);
}

.cases-authority-grid i,
.cases-segments-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--cases-blue);
  background: #eaf5ff;
  font-size: 30px;
}

.cases-authority-grid h3,
.cases-segments-grid h3 {
  margin: 0 0 10px;
  color: var(--cases-blue-dark);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.cases-authority-grid p,
.cases-segments-grid p {
  margin: 0;
  color: var(--cases-muted);
  font-size: 15px;
  line-height: 1.6;
}

.cases-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(480px, 1fr));
  gap: 30px;
}

.case-featured-card,
.case-small-card,
.case-story-card,
.cases-product-map,
.cases-process-card,
.cases-before-card,
.cases-after-card {
  border: 1px solid var(--cases-border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--cases-shadow);
}

.case-featured-card {
  padding: 38px;
}

.case-featured-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.case-featured-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 126px;
  height: 86px;
  padding: 14px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(18, 109, 255, 0.12);
}

.case-featured-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.case-featured-header span,
.case-small-card > span,
.case-story-content > span {
  display: block;
  margin-bottom: 7px;
  color: var(--cases-blue);
  font-size: 12px;
  font-weight: 900;
}

.case-featured-card h3 {
  margin: 0;
  color: var(--cases-blue-dark);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.case-featured-card p,
.case-small-card p,
.case-story-card p {
  color: var(--cases-muted);
  font-size: 16px;
  line-height: 1.65;
}

.case-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.case-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--cases-blue-dark);
  font-weight: 800;
}

.case-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0ca960;
  font-weight: 950;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.case-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cases-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.cases-all {
  background: var(--cases-bg);
}

.cases-small-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}

.case-small-card {
  padding: 26px;
}

.case-small-card img,
.case-small-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #f8fbff;
}

.case-small-card h3 {
  margin: 0 0 10px;
  color: var(--cases-blue-dark);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.cases-story-list {
  display: grid;
  gap: 24px;
}

.case-story-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.case-story-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 22px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(18, 109, 255, 0.12);
}

.case-story-logo img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}

.case-story-content h3 {
  margin: 0 0 12px;
  color: var(--cases-blue-dark);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.case-story-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.case-story-columns div {
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
}

.case-story-columns strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cases-blue-dark);
  font-weight: 950;
}

.case-story-columns p {
  margin: 0;
  font-size: 14px;
}

.cases-map-process {
  background: #ffffff;
}

.cases-two-columns {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(540px, 1.05fr);
  gap: 32px;
  align-items: start;
  min-width: 0;
}

.cases-product-map,
.cases-process-card {
  padding: 32px;
  min-width: 0;
}

.cases-product-map h2,
.cases-process-card h2,
.cases-before-card h2,
.cases-after-card h2 {
  margin: 0 0 24px;
  color: var(--cases-blue-dark);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.cases-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}

.cases-product-map table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.cases-product-map th,
.cases-product-map td {
  padding: 14px;
  border-bottom: 1px solid rgba(18, 109, 255, 0.10);
  color: var(--cases-blue-dark);
  font-size: 14px;
  text-align: center;
}

.cases-product-map th:first-child,
.cases-product-map td:first-child {
  text-align: left;
  font-weight: 900;
}

.cases-product-map th {
  background: #eef6ff;
  font-size: 12px;
  font-weight: 950;
}

.cases-product-map td:not(:first-child) {
  color: var(--cases-blue);
  font-weight: 950;
}

.cases-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 16px;
}

.cases-process-steps div {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 20px;
  background: #f8fbff;
}

.cases-process-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--cases-blue);
  font-size: 13px;
  font-weight: 950;
}

.cases-process-steps h3 {
  margin: 0 0 10px;
  color: var(--cases-blue-dark);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

.cases-process-steps p {
  margin: 0;
  color: var(--cases-muted);
  font-size: 13px;
  line-height: 1.55;
}

.cases-segments {
  background: var(--cases-bg);
}

.cases-segments-grid {
  grid-template-columns: repeat(6, minmax(180px, 1fr));
}

.cases-before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(380px, 1fr));
  gap: 28px;
}

.cases-before-card,
.cases-after-card {
  padding: 34px;
}

.cases-before-card {
  background: linear-gradient(180deg, rgba(240, 68, 56, 0.08), #ffffff 35%);
}

.cases-after-card {
  background: linear-gradient(180deg, rgba(12, 169, 96, 0.08), #ffffff 35%);
}

.cases-before-card h2 {
  color: #e9474f;
}

.cases-after-card h2 {
  color: #0ca960;
}

.cases-before-card ul,
.cases-after-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cases-before-card li,
.cases-after-card li {
  position: relative;
  padding-left: 26px;
  color: var(--cases-blue-dark);
  font-weight: 800;
}

.cases-before-card li::before,
.cases-after-card li::before {
  position: absolute;
  left: 0;
  font-weight: 950;
}

.cases-before-card li::before {
  content: "\2715";
  color: #e9474f;
}

.cases-after-card li::before {
  content: "\2713";
  color: #0ca960;
}

.cases-faq {
  background: #ffffff;
}

.cases-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 16px;
}

.cases-faq details {
  border: 1px solid var(--cases-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--cases-shadow);
  padding: 20px 22px;
}

.cases-faq summary {
  cursor: pointer;
  color: var(--cases-blue-dark);
  font-weight: 900;
}

.cases-faq p {
  margin: 14px 0 0;
  color: var(--cases-muted);
  line-height: 1.6;
}

.cases-final-cta {
  padding: 0 0 92px;
  background: #ffffff;
}

.cases-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 42%, rgba(255, 107, 26, 0.42), transparent 34%),
    linear-gradient(135deg, #061d64 0%, #126dff 100%);
  box-shadow: 0 30px 95px rgba(7, 27, 77, 0.18);
}

.cases-cta-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.cases-cta-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.cases-cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 999px;
  color: #ffffff;
  background: #19c76f;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(25, 199, 111, 0.26);
}

.cases-final-cta .cases-cta-card {
  grid-template-columns: 1fr;
}

.cases-final-cta .cases-cta-card p {
  max-width: 980px;
}

@media (max-width: 1399px) {
  .cases-hero-grid {
    grid-template-columns: minmax(460px, 0.44fr) minmax(560px, 0.56fr);
    gap: 52px;
  }

  .cases-orbit-panel {
    min-height: 560px;
  }

  .cases-segments-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .cases-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .cases-hero-grid,
  .cases-two-columns {
    grid-template-columns: 1fr;
  }

  .cases-hero-copy {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
  }

  .cases-hero-copy p {
    margin-inline: auto;
  }

  .cases-hero-actions {
    justify-content: center;
  }

  .cases-orbit-panel {
    max-width: 860px;
    margin-inline: auto;
  }

  .cases-featured-grid {
    grid-template-columns: 1fr;
  }

  .cases-logos-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .cases-small-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .case-story-card {
    grid-template-columns: 1fr;
  }

  .case-story-logo {
    max-width: 280px;
  }
}

@media (max-width: 991px) {
  body.cases-body .container,
  body.cases-body .container-wide {
    width: min(100% - 40px, 960px);
  }

  .cases-section,
  .cases-hero {
    padding: 72px 0;
  }

  .cases-hero-highlights,
  .cases-logos-grid,
  .cases-authority-grid,
  .cases-before-after-grid,
  .cases-faq-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .cases-process-steps,
  .cases-segments-grid,
  .case-story-columns {
    grid-template-columns: 1fr;
  }

  .cases-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cases-cta-card p {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  body.cases-body .container,
  body.cases-body .container-wide {
    width: min(100% - 28px, 640px);
  }

  .cases-section,
  .cases-hero {
    padding: 56px 0;
  }

  .cases-hero-copy {
    text-align: left;
  }

  .cases-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .cases-hero-actions {
    flex-direction: column;
  }

  .btn-primary-cases,
  .btn-secondary-cases,
  .cases-cta-card a {
    width: 100%;
  }

  .cases-hero-highlights,
  .cases-logos-grid,
  .cases-authority-grid,
  .cases-small-grid,
  .cases-before-after-grid,
  .cases-faq-grid {
    grid-template-columns: 1fr;
  }

  .cases-orbit-panel {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 22px;
  }

  .cases-orbit-ring,
  .cases-orbit-icon {
    display: none;
  }

  .cases-center-brand,
  .cases-floating-logo {
    position: static;
    width: 100%;
    height: auto;
    min-height: 92px;
    transform: none;
  }

  .cases-center-brand {
    border-radius: 28px;
  }

  .case-featured-card {
    padding: 28px 22px;
  }

  .case-featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases-before-card ul,
  .cases-after-card ul {
    grid-template-columns: 1fr;
  }

  .cases-product-map,
  .cases-process-card,
  .cases-before-card,
  .cases-after-card,
  .cases-cta-card {
    padding: 22px 16px;
  }

  .cases-product-map h2,
  .cases-process-card h2 {
    font-size: clamp(24px, 7.6vw, 32px);
  }
}

/* CASES EASYLITE - ajuste de escala para ficar mais próximo do mockup compacto */
body.cases-body .header .navbar {
  min-height: 82px;
}

body.cases-body .header .navbar-brand img {
  max-height: 74px;
}

body.cases-body .header .nav-link {
  font-size: 14px;
}

body.cases-body .cases-hero {
  padding: 62px 0;
}

body.cases-body .cases-hero-grid {
  grid-template-columns: minmax(460px, 0.43fr) minmax(620px, 0.57fr);
  gap: 56px;
}

body.cases-body .cases-hero-copy h1 {
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.04;
}

body.cases-body .cases-hero-copy p {
  font-size: 15px;
  line-height: 1.62;
}

body.cases-body .cases-kicker {
  padding: 8px 14px;
  font-size: 11px;
}

body.cases-body .cases-hero-actions {
  margin: 24px 0;
}

body.cases-body .btn-primary-cases,
body.cases-body .btn-secondary-cases {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

body.cases-body .cases-hero-highlights div {
  padding: 14px 16px;
}

body.cases-body .cases-orbit-panel {
  min-height: 470px;
}

body.cases-body .ring-one {
  width: 330px;
  height: 330px;
}

body.cases-body .ring-two {
  width: 450px;
  height: 450px;
}

body.cases-body .cases-center-brand {
  width: 198px;
  height: 198px;
  padding: 30px;
}

body.cases-body .cases-center-brand img {
  width: 138px;
}

body.cases-body .cases-floating-logo {
  width: 158px;
  height: 78px;
  padding: 14px;
  border-radius: 18px;
}

body.cases-body .icon-chat {
  bottom: 82px;
  left: 46%;
}

body.cases-body .icon-chart {
  bottom: 54px;
  left: 56%;
}

body.cases-body .case-logo-a { top: 38px; left: 54px; }
body.cases-body .case-logo-b { top: 173px; left: 18px; }
body.cases-body .case-logo-c { top: 38px; right: 38px; }
body.cases-body .case-logo-d { top: 184px; right: 10px; }
body.cases-body .case-logo-e { bottom: 64px; left: 44px; }
body.cases-body .case-logo-f { bottom: 54px; right: 44px; }

body.cases-body .cases-orbit-icon {
  width: 46px;
  height: 46px;
  font-size: 22px;
}

body.cases-body .cases-section {
  padding: 64px 0;
}

body.cases-body .cases-section-header {
  margin-bottom: 34px;
}

body.cases-body .cases-section-header h2 {
  font-size: clamp(28px, 2.8vw, 42px);
}

body.cases-body .cases-section-header p {
  font-size: 15px;
}

body.cases-body .case-logo-card {
  min-height: 104px;
  padding: 18px;
}

body.cases-body .case-logo-card img {
  max-height: 66px;
}

body.cases-body .cases-authority-grid article,
body.cases-body .cases-segments-grid article {
  min-height: 150px;
  padding: 22px;
}

body.cases-body .cases-authority-grid i,
body.cases-body .cases-segments-grid i {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  font-size: 24px;
}

body.cases-body .case-featured-card {
  padding: 28px;
}

body.cases-body .case-featured-card h3 {
  font-size: 24px;
}

body.cases-body .case-featured-card p,
body.cases-body .case-small-card p,
body.cases-body .case-story-card p {
  font-size: 14px;
}

body.cases-body .case-featured-logo {
  width: 108px;
  height: 72px;
}

body.cases-body .case-small-card {
  padding: 22px;
}

body.cases-body .case-story-card {
  padding: 24px;
}

body.cases-body .cases-product-map,
body.cases-body .cases-process-card,
body.cases-body .cases-before-card,
body.cases-body .cases-after-card {
  padding: 26px;
}

body.cases-body .cases-process-steps div {
  min-height: 172px;
  padding: 16px;
}

body.cases-body .cases-final-cta {
  padding: 0 0 64px;
}

@media (max-width: 1399px) {
  body.cases-body .cases-hero-grid {
    grid-template-columns: minmax(420px, 0.43fr) minmax(540px, 0.57fr);
    gap: 44px;
  }

  body.cases-body .cases-orbit-panel {
    min-height: 430px;
  }
}

@media (max-width: 1199px) {
  body.cases-body .cases-hero-grid {
    grid-template-columns: 1fr;
  }

  body.cases-body .cases-orbit-panel {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  body.cases-body .cases-hero,
  body.cases-body .cases-section {
    padding: 48px 0;
  }

  body.cases-body .cases-orbit-panel {
    min-height: auto;
  }
}

/* CONTATO EASYLITE - formulário para WhatsApp */
body.contact-body {
  --contact-blue-dark: #071b4d;
  --contact-blue: #126dff;
  --contact-orange: #ff6b1a;
  --contact-green: #25d366;
  --contact-muted: #53627f;
  --contact-bg: #f8fbff;
  --contact-border: rgba(18, 109, 255, 0.14);
  --contact-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --contact-shadow-lg: 0 30px 90px rgba(7, 27, 77, 0.11);
  background: #ffffff;
  color: var(--contact-blue-dark);
  font-family: "Inter", sans-serif;
}

body.contact-body .container {
  width: min(100% - 48px, 1280px);
  max-width: none;
  margin-inline: auto;
}

body.contact-body .container-wide {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p,
.contact-page span,
.contact-page a,
.contact-page li,
.contact-page label,
.contact-page input,
.contact-page textarea,
.contact-page select {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--contact-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.46fr) minmax(580px, 0.54fr);
  gap: 72px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--contact-blue-dark);
  font-size: clamp(48px, 4.2vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.contact-hero-copy p {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--contact-muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.contact-whatsapp-btn,
.contact-side-card a,
.contact-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-whatsapp-btn:hover,
.contact-side-card a:hover,
.contact-cta-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(37, 211, 102, 0.34);
}

.contact-hero-actions > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--contact-blue-dark);
  font-weight: 850;
}

.contact-hero-actions > span i {
  color: #0ca960;
  font-size: 22px;
}

.contact-hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 109, 255, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.54);
}

.contact-device-card {
  position: absolute;
  inset: 52px 70px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--contact-border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--contact-shadow-lg);
}

.contact-device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-device-header img {
  width: 190px;
  height: auto;
}

.contact-device-header span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0ca960;
  background: rgba(12, 169, 96, 0.10);
  font-size: 13px;
  font-weight: 900;
}

.contact-chat-preview {
  display: grid;
  gap: 14px;
}

.contact-chat-preview p {
  max-width: 360px;
  margin: 0;
  padding: 16px 20px;
  border-radius: 18px;
  color: var(--contact-blue-dark);
  background: #f2f7ff;
  font-weight: 750;
}

.contact-chat-preview p:nth-child(2) {
  justify-self: end;
  color: #ffffff;
  background: var(--contact-blue);
}

.contact-channel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-channel-row i,
.contact-floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contact-blue);
  background: #ffffff;
  box-shadow: var(--contact-shadow);
}

.contact-channel-row i {
  min-height: 74px;
  border: 1px solid var(--contact-border);
  border-radius: 20px;
  font-size: 30px;
}

.contact-channel-row i:first-child {
  color: #25d366;
}

.contact-floating-icon {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  font-size: 34px;
}

.icon-headset { top: 34px; right: 46px; }
.icon-mail { bottom: 50px; right: 28px; color: var(--contact-orange); }
.icon-phone { bottom: 80px; left: 36px; }

.contact-section {
  padding: 76px 0;
}

.contact-quick {
  background: #ffffff;
}

.contact-quick-grid,
.contact-help-grid,
.contact-differentials-grid,
.contact-brazil-grid {
  display: grid;
  gap: 22px;
}

.contact-quick-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.contact-quick-grid a,
.contact-quick-grid article,
.contact-help-grid a,
.contact-differentials-grid article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--contact-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--contact-shadow);
  text-decoration: none;
}

.contact-quick-grid i,
.contact-help-grid i,
.contact-differentials-grid i,
.contact-brazil-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--contact-blue);
  background: #eaf5ff;
  font-size: 28px;
}

.contact-quick-grid a i {
  color: var(--contact-green);
}

.contact-quick-grid span,
.contact-help-grid h3,
.contact-differentials-grid h3 {
  color: var(--contact-blue-dark);
  font-weight: 950;
}

.contact-quick-grid strong {
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-form-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 109, 255, 0.07), transparent 34%),
    var(--contact-bg);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(340px, 0.42fr);
  gap: 32px;
  align-items: start;
}

.contact-form-card,
.contact-side-card,
.contact-brazil-card {
  border: 1px solid var(--contact-border);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--contact-shadow-lg);
}

.contact-form-card {
  padding: 42px;
}

.contact-form-card h2,
.contact-side-card h2,
.contact-section-header h2,
.contact-brazil-card h2 {
  margin: 0 0 16px;
  color: var(--contact-blue-dark);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.contact-form-card > p,
.contact-section-header p,
.contact-brazil-card p {
  margin: 0 0 30px;
  color: var(--contact-muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.contact-form .form-group {
  display: grid;
  gap: 8px;
}

.contact-form .form-group label {
  color: var(--contact-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-form .form-group label span {
  color: var(--contact-orange);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  border: 1px solid rgba(18, 109, 255, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--contact-blue-dark);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--contact-blue);
  box-shadow: 0 0 0 4px rgba(18, 109, 255, 0.10);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
}

.contact-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--contact-muted);
  font-size: 13px;
}

.contact-form-feedback {
  min-height: 22px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form-feedback.is-success {
  color: #0ca960;
}

.contact-form-feedback.is-error {
  color: #e9474f;
}

.contact-side-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 107, 26, 0.32), transparent 36%),
    linear-gradient(145deg, #061d64 0%, #126dff 100%);
}

.contact-side-card > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 24px;
  color: #25d366;
  background: #ffffff;
  font-size: 38px;
}

.contact-side-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.contact-side-card h2 {
  color: #ffffff;
}

.contact-side-card p,
.contact-side-card li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.contact-side-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.contact-side-card li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.contact-side-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 950;
}

.contact-help {
  background: #ffffff;
}

.contact-section-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-help-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.contact-help-grid a {
  color: inherit;
}

.contact-help-grid p,
.contact-differentials-grid p {
  margin: 0;
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-differentials {
  background: var(--contact-bg);
}

.contact-differentials-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.contact-brazil {
  background: #ffffff;
}

.contact-brazil-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.contact-brazil-grid {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.contact-brazil-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--contact-border);
  border-radius: 20px;
  background: var(--contact-bg);
}

.contact-brazil-grid span {
  color: var(--contact-blue-dark);
  font-weight: 900;
}

.contact-commercial-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.contact-commercial-info p {
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  background: #eef6ff;
}

.contact-commercial-info strong,
.contact-commercial-info span {
  display: block;
}

.contact-commercial-info strong {
  margin-bottom: 6px;
  color: var(--contact-blue-dark);
}

.contact-commercial-info span {
  color: var(--contact-muted);
}

@media (max-width: 1199px) {
  .contact-hero-grid,
  .contact-form-layout,
  .contact-brazil-card {
    grid-template-columns: 1fr;
  }

  .contact-side-card {
    position: static;
  }

  .contact-quick-grid,
  .contact-help-grid,
  .contact-differentials-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 767px) {
  body.contact-body .container,
  body.contact-body .container-wide {
    width: min(100% - 32px, 760px);
  }

  .contact-hero,
  .contact-section {
    padding: 56px 0;
  }

  .contact-hero-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .contact-hero-copy p {
    font-size: 16px;
  }

  .contact-hero-actions,
  .contact-whatsapp-btn {
    width: 100%;
  }

  .contact-hero-visual {
    min-height: auto;
    padding: 20px;
  }

  .contact-device-card {
    position: static;
    padding: 28px;
  }

  .contact-floating-icon {
    display: none;
  }

  .contact-form-grid,
  .contact-quick-grid,
  .contact-help-grid,
  .contact-differentials-grid,
  .contact-brazil-grid,
  .contact-commercial-info {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-side-card,
  .contact-brazil-card {
    padding: 28px;
    border-radius: 28px;
  }

  .contact-device-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* EASYCHAT PAGE */
.easychat-page {
  color: var(--brand-dark);
}

.easychat-page p {
  color: var(--text-muted);
}

.easychat-section {
  padding: 76px 0;
}

.easychat-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.easychat-hero {
  padding: 60px 0 68px;
  background:
    radial-gradient(circle at 70% 23%, rgba(18, 109, 255, .16), transparent 29%),
    radial-gradient(circle at 95% 80%, rgba(255, 107, 26, .1), transparent 24%);
}

.easychat-hero-grid {
  display: grid;
  grid-template-columns: minmax(410px, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 42px;
}

.easychat-hero-copy h1 {
  margin: 0 0 21px;
  font-size: clamp(40px, 3.7vw, 55px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.055em;
}

.easychat-hero-copy h1 strong {
  display: block;
  color: var(--brand-orange);
}

.easychat-hero-copy > p {
  max-width: 590px;
  margin: 0 0 29px;
  font-size: 16px;
  line-height: 1.72;
}

.easychat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 36px;
}

.easychat-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.easychat-highlights p {
  margin: 0;
}

.easychat-highlights i {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe9ff;
  border-radius: 13px;
  color: var(--brand-blue);
  background: #fff;
  font-size: 23px;
}

.easychat-highlights strong,
.easychat-highlights span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
}

.easychat-highlights strong {
  color: var(--brand-dark);
  font-weight: 800;
}

.easychat-dashboard {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(18, 109, 255, .13);
  border-radius: 25px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 28px 65px rgba(7, 27, 77, .12);
}

.easychat-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 900;
}

.easychat-brand i {
  color: var(--brand-blue);
  font-size: 27px;
}

.easychat-brand span,
.hub-brand span {
  color: var(--brand-blue);
}

.easychat-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 13px;
}

.easychat-kpis p {
  min-height: 67px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid #edf2fa;
  border-radius: 9px;
  background: #fff;
}

.easychat-kpis small {
  display: block;
  font-size: 9.5px;
  line-height: 1.2;
}

.easychat-kpis strong {
  display: inline-block;
  margin-top: 7px;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 900;
}

.easychat-kpis em {
  margin-left: 5px;
  color: #16a36a;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.easychat-app {
  display: grid;
  grid-template-columns: 108px minmax(150px, 1fr) minmax(178px, 1.18fr);
  overflow: hidden;
  min-height: 358px;
  border: 1px solid #e9effa;
  border-radius: 14px;
  background: #fff;
}

.easychat-app aside {
  padding: 15px 8px;
  background: #f2f7ff;
}

.easychat-app aside span {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px 7px;
  border-radius: 7px;
  color: #4d5f80;
  font-size: 10px;
  font-weight: 700;
}

.easychat-app aside span.active {
  color: #fff;
  background: var(--brand-blue);
}

.easychat-app aside i {
  font-size: 13px;
}

.easychat-conversations {
  padding: 15px 10px;
  border-right: 1px solid #e9effa;
}

.easychat-conversations > b {
  display: block;
  margin-bottom: 13px;
  color: var(--text-muted);
  font-size: 10px;
}

.easychat-conversations p {
  position: relative;
  margin: 0 0 9px;
  padding: 10px 7px 10px 28px;
  border-radius: 8px;
  font-size: 10px;
}

.easychat-conversations p.selected {
  background: #f1f7ff;
}

.easychat-conversations p i,
.chat-header i {
  position: absolute;
  left: 8px;
  top: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a36a, #76da9d);
}

.easychat-conversations strong,
.easychat-conversations small {
  display: block;
  line-height: 1.35;
}

.easychat-conversations strong {
  color: var(--brand-dark);
}

.easychat-window {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
  background: #fbfdff;
}

.chat-header {
  position: relative;
  padding: 3px 0 14px 25px;
  margin-bottom: 6px;
  border-bottom: 1px solid #edf2fa;
  font-size: 11px;
}

.chat-header i {
  top: 5px;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header small {
  color: #16a36a;
}

.bubble {
  max-width: 88%;
  margin: 0 !important;
  padding: 10px 11px;
  border-radius: 10px;
  color: var(--brand-dark) !important;
  background: #eef4ff;
  font-size: 10px;
  line-height: 1.45;
}

.bubble.out {
  align-self: flex-end;
  color: #fff !important;
  background: var(--brand-blue);
}

.easychat-window label {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 10px 11px;
  border: 1px solid #edf2fa;
  border-radius: 8px;
  color: #9ba9bd;
  font-size: 10px;
}

.easychat-floating {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 12px 28px rgba(7, 27, 77, .18);
}

.channel-whatsapp {
  top: 104px;
  right: -23px;
  background: #17c964;
}

.channel-instagram {
  top: 190px;
  left: -24px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.channel-messenger {
  top: 214px;
  right: -23px;
  background: #0b83ff;
}

.channel-telegram {
  right: -23px;
  bottom: 54px;
  background: #29a9eb;
}

.easychat-intro {
  background: #fff;
}

.easychat-intro .section-header {
  max-width: 830px;
  margin: 0 auto 34px;
}

.easychat-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.easychat-card {
  display: flex;
  min-height: 432px;
  padding: 26px 26px 30px;
  flex-direction: column;
  border: 1px solid #dfeafb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 19px 45px rgba(7, 27, 77, .07);
}

.easychat-card > i {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--brand-blue);
  background: #edf5ff;
  font-size: 31px;
}

.easychat-card > i.channel-green {
  color: #18b45b;
}

.easychat-card > i.channel-gradient {
  color: #e33e72;
}

.easychat-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 218px;
  margin: 0 0 28px;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.easychat-card-visual::after {
  content: none;
}

.easychat-card-image {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: contain;
  object-position: center;
}

.visual-reports .easychat-card-image {
  object-position: left center;
}

.easychat-card-visual i {
  line-height: 1;
}

.channel-badge,
.instagram-badge,
.facebook-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 14px 24px rgba(7, 27, 77, .14);
}

.channel-badge {
  left: 18px;
  top: 27px;
  background: #20c769;
}

.instagram-badge {
  left: 20px;
  top: 24px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.facebook-badge {
  left: 78px;
  top: 27px;
  background: #1877f2;
}

.mini-chat-screen,
.mini-social-screen,
.mini-flow-screen,
.mini-dashboard-body {
  position: relative;
  width: 118px;
  height: 83px;
  margin-left: 68px;
  padding: 12px;
  border: 1px solid #dfeafd;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 11px 25px rgba(7, 27, 77, .08);
}

.mini-chat-screen b,
.mini-dashboard-body b {
  display: block;
  width: 54px;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #c7defb;
}

.mini-chat-screen p,
.mini-social-screen p,
.mini-flow-screen p,
.mini-dashboard-body p {
  height: 8px;
  margin: 0 0 7px;
  border-radius: 999px;
  background: #e6f0ff;
}

.mini-chat-screen p:nth-child(3),
.mini-flow-screen p:nth-child(2),
.mini-dashboard-body p:nth-child(3) {
  width: 72%;
}

.mini-chat-screen p:nth-child(4),
.mini-social-screen p:nth-child(3) {
  width: 48%;
  margin-left: auto;
  background: #dff8e9;
}

.mini-chat-screen em {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: #20c769;
}

.visual-social .mini-social-screen {
  margin-left: 86px;
  width: 104px;
}

.mini-social-screen p:nth-child(2) {
  width: 74%;
  background: #edf1ff;
}

.mini-social-screen p:nth-child(4) {
  width: 62%;
  background: #f7e9ff;
}

.visual-automation {
  gap: 5px;
}

.visual-automation img:not(.easychat-card-image) {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  object-fit: contain;
  transform: scale(1.2);
  filter: drop-shadow(0 11px 18px rgba(18, 109, 255, .16));
}

.visual-automation .mini-flow-screen {
  width: 96px;
  height: 78px;
  margin-left: 8px;
  padding-top: 15px;
}

.visual-automation .mini-flow-screen::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 37px;
  width: 28px;
  border-top: 2px dashed #9bc3ff;
}

.visual-automation .mini-flow-screen p:nth-child(1) {
  background: #dcecff;
}

.visual-automation .mini-flow-screen p:nth-child(3) {
  width: 56%;
  background: #eaf1ff;
}

.visual-reports {
  align-items: stretch;
  padding: 15px 16px;
  gap: 10px;
}

.easychat-card-visual.visual-reports {
  align-items: center;
  padding: 0;
  gap: 0;
}

.mini-dashboard-nav {
  width: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #071b4d, #126dff);
}

.visual-reports .mini-dashboard-body {
  width: 124px;
  height: 88px;
  margin-left: 0;
  padding: 11px;
}

.mini-dashboard-body span {
  display: block;
  width: 74px;
  height: 27px;
  margin-top: 4px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 12px, rgba(18, 109, 255, .15) 12px 14px, transparent 14px),
    linear-gradient(180deg, transparent 14px, rgba(255, 107, 26, .35) 14px 17px, transparent 17px),
    #f4f8ff;
}

.mini-chart-lines {
  display: grid;
  align-content: end;
  gap: 5px;
  width: 42px;
  padding-bottom: 10px;
}

.mini-chart-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #126dff;
}

.mini-chart-lines i:nth-child(1) {
  width: 60%;
}

.mini-chart-lines i:nth-child(2) {
  width: 82%;
  background: #62a5ff;
}

.mini-chart-lines i:nth-child(3) {
  width: 100%;
  background: #ff8a2a;
}

.easychat-card h3 {
  margin: auto 0 17px;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.easychat-card p {
  margin: 0;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.55;
}

.easychat-problems {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 82%, rgba(18, 109, 255, .1) 0 3px, transparent 4px) 0 0 / 42px 42px,
    linear-gradient(115deg, #eaf5ff 0%, #f6fbff 48%, #fff 100%);
  border-block: 1px solid #e2ecfb;
}

.easychat-problems::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 310px;
  height: 210px;
  background: linear-gradient(90deg, rgba(234, 245, 255, .9), rgba(234, 245, 255, 0));
  pointer-events: none;
}

.easychat-problems-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.easychat-problems-copy {
  position: relative;
  padding-left: 36px;
}

.easychat-problems-copy::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 132px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(18, 109, 255, .2);
}

.easychat-problems-copy h2,
.easychat-segments-layout > div:first-child h2 {
  margin: 0 0 30px;
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.05em;
}

.easychat-problems-copy p,
.easychat-segments-layout > div:first-child p {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
}

.easychat-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.easychat-problems-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-areas: "icon title" "text text";
  align-content: start;
  min-height: 218px;
  padding: 34px 27px 29px;
  border: 1px solid rgba(226, 236, 251, .95);
  border-radius: 23px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 46px rgba(7, 27, 77, .075);
}

.easychat-problems-grid i {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: var(--brand-blue);
  background: #edf5ff;
  font-size: 42px;
}

.easychat-problems-grid h3 {
  grid-area: title;
  align-self: center;
  margin: 0;
  color: var(--brand-dark);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
}

.easychat-problems-grid p {
  grid-area: text;
  margin: 24px 0 0;
  color: #4f638c;
  font-size: 20px;
  line-height: 1.55;
}

.easychat-features {
  background: #fff;
}

.easychat-features > .container,
.easychat-steps-section > .container {
  max-width: 1760px;
}

.easychat-features .section-header {
  margin-bottom: 28px;
}

.easychat-features .section-header h2,
.easychat-steps-section .section-header h2 {
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: -.04em;
}

.easychat-features .section-header p {
  max-width: 760px;
  font-size: 17px;
}

.easychat-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.easychat-feature-grid article {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-content: start;
  min-height: 172px;
  padding: 25px 24px;
  border: 1px solid #e2eafb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 77, .055);
  min-width: 0;
}

.easychat-feature-grid i {
  color: var(--brand-blue);
  font-size: 50px;
  line-height: 1;
}

.easychat-feature-grid h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.easychat-feature-grid h3 span {
  color: var(--brand-dark);
  font-size: inherit;
}

.easychat-feature-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--brand-dark);
  font-size: 14px;
  line-height: 1.65;
}

.easychat-steps-section {
  padding: 74px 0 82px;
  border-radius: 0;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.easychat-steps-section .section-header {
  margin-bottom: 40px;
}

.easychat-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.easychat-steps::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 109, 255, .75), rgba(164, 200, 255, .7));
}

.easychat-steps article {
  position: relative;
  z-index: 1;
  min-height: 255px;
  padding: 25px 18px 23px;
  border: 1px solid #e2eafb;
  border-radius: 17px;
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 27, 77, .045);
  min-width: 0;
}

.easychat-steps article:not(:last-child)::after {
  content: none;
}

.easychat-steps b {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.easychat-steps i {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border: 1px solid #dbe9ff;
  border-radius: 50%;
  color: var(--brand-blue);
  background: #fff;
  font-size: 33px;
  box-shadow: 0 10px 24px rgba(18, 109, 255, .09);
}

.easychat-steps img {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  padding: 14px;
  border: 1px solid #dbe9ff;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(18, 109, 255, .09);
}

.easychat-steps h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.easychat-steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.easychat-ai-section {
  padding: 70px 0;
}

.easychat-ai-layout {
  display: grid;
  grid-template-columns: minmax(330px, .85fr) minmax(330px, .7fr) minmax(330px, .78fr) minmax(350px, .82fr);
  grid-template-areas:
    "copy robot panel side"
    "tags tags panel side";
  align-items: center;
  gap: 26px 34px;
  padding: 46px 42px 34px;
  border-radius: 28px;
  background: linear-gradient(105deg, #ececff 0%, #eff5ff 52%, #f8fbff 100%);
}

.easychat-ai-copy {
  grid-area: copy;
}

.easychat-ai-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(32px, 2.8vw, 45px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.045em;
}

.easychat-ai-copy > p {
  max-width: 430px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.65;
}

.easychat-ai-tags {
  grid-area: tags;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid #e4ecfb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 77, .055);
}

.easychat-ai-tags span {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 110px;
  padding: 19px 10px 16px;
  color: var(--brand-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.easychat-ai-tags span + span {
  border-left: 1px solid #edf2fa;
}

.easychat-ai-tags i {
  color: var(--brand-blue);
  font-size: 31px;
}

.easychat-ai-robot {
  grid-area: robot;
  width: 100%;
  max-width: 430px;
  max-height: 430px;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 24px 36px rgba(18, 109, 255, .18));
}

.easychat-ai-panel {
  grid-area: panel;
  min-height: 545px;
  padding: 28px;
  border: 1px solid #dde8fb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 27, 77, .075);
}

.easychat-ai-panel header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 50px;
  color: var(--brand-dark);
  font-size: 16px;
}

.easychat-ai-panel header i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--brand-blue);
  background: #eaf4ff;
  font-size: 26px;
}

.easychat-ai-panel header span {
  display: grid;
  gap: 4px;
}

.easychat-ai-panel header em {
  color: #10a667;
  font-size: 13px;
  font-style: normal;
}

.easychat-ai-panel header b {
  margin-left: auto;
  color: #6d7d9c;
  font-size: 24px;
  font-weight: 400;
}

.ai-message {
  margin: 0 0 38px !important;
  padding: 17px 24px;
  border-radius: 13px;
  color: var(--brand-dark) !important;
  background: #f2f7ff;
  font-size: 16px;
}

.easychat-ai-panel ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 33px;
  list-style: none;
}

.easychat-ai-panel li {
  width: fit-content;
  min-width: 220px;
  padding: 14px 26px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: #f3f7fd;
  font-size: 16px;
}

.easychat-ai-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 18px 21px;
  border: 1px solid #dbe6f6;
  border-radius: 12px;
  color: #7788a5;
  font-size: 16px;
}

.easychat-ai-panel label i {
  color: var(--brand-blue);
  font-size: 26px;
}

.easychat-ai-side {
  grid-area: side;
  display: grid;
  gap: 18px;
}

.easychat-ai-side article {
  padding: 28px;
  border: 1px solid #dde8fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 27, 77, .07);
}

.easychat-ai-side h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 850;
}

.easychat-ai-side h3 i {
  color: var(--brand-blue);
  font-size: 23px;
}

.ai-suggestion div {
  position: relative;
  padding: 22px;
  border: 1px solid #edf2fa;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(7, 27, 77, .02);
}

.ai-suggestion small {
  display: block;
  color: #7586a6;
  font-size: 15px;
  margin-bottom: 12px;
}

.ai-suggestion p {
  margin: 0 0 24px;
  color: var(--brand-dark);
  font-size: 17px;
  line-height: 1.55;
}

.ai-suggestion button {
  border: 0;
  border-radius: 9px;
  padding: 12px 21px;
  color: #fff;
  background: var(--brand-blue);
  font-weight: 800;
}

.ai-suggestion div > i {
  position: absolute;
  right: 23px;
  bottom: 26px;
  color: var(--brand-blue);
  font-size: 22px;
}

.sentiment-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
}

.sentiment-row span,
.sentiment-row strong {
  display: block;
}

.sentiment-row span {
  color: #7586a6;
  font-size: 13px;
}

.sentiment-row strong {
  color: #18b45b;
  font-size: 30px;
  line-height: 1.1;
}

.sentiment-row em {
  color: #6d7d9c;
  font-size: 15px;
  font-style: normal;
}

.sentiment-row em i {
  color: #18b45b;
  font-size: 24px;
  vertical-align: middle;
}

.ai-sentiment progress {
  accent-color: #18b45b;
  width: 100%;
  height: 12px;
  margin-bottom: 20px;
}

.ai-sentiment p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid #e8effb;
  color: #6d7d9c;
  font-size: 15px;
}

.ai-sentiment p i {
  color: var(--brand-dark);
  font-size: 27px;
}

.ai-sentiment p strong {
  color: #10a667;
}

.easychat-segments {
  background: #fff;
}

.easychat-segments-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 35px;
  align-items: start;
}

.easychat-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.easychat-segments-grid article {
  min-height: 152px;
  padding: 17px 14px;
  border: 1px solid #e2eafb;
  border-radius: 13px;
  background: #fff;
}

.easychat-segments-grid i {
  color: var(--brand-blue);
  font-size: 27px;
}

.easychat-segments-grid h3 {
  margin: 10px 0 7px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.easychat-segments-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.easychat-results {
  padding-top: 42px;
  background: #fff;
}

.easychat-results-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
}

.easychat-results-grid > article {
  padding: 29px 26px;
  border: 1px solid #e1eafa;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(7, 27, 77, .04);
}

.easychat-results-grid h2 {
  margin: 0 0 22px;
  font-size: clamp(25px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: -.045em;
}

.easychat-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 17px;
  margin-bottom: 25px;
}

.easychat-benefit-list p {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.easychat-benefit-list i {
  color: var(--brand-orange);
  font-size: 18px;
}

.easychat-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 13px;
  border-radius: 16px;
  background: #f1f7ff;
}

.easychat-stats-panel p {
  margin: 0;
  padding: 10px 8px;
  border-radius: 11px;
  background: #fff;
}

.easychat-stats-panel small,
.easychat-stats-panel strong {
  display: block;
}

.easychat-stats-panel small {
  font-size: 10px;
}

.easychat-stats-panel strong {
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 16px;
}

.easychat-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.easychat-comparison-grid > div {
  padding: 16px 14px 12px;
  border-radius: 13px;
  font-size: 12px;
}

.easychat-comparison-grid h3 {
  margin: -16px -14px 13px;
  padding: 11px;
  border-radius: 13px 13px 0 0;
  font-size: 14px;
  font-weight: 850;
}

.easychat-comparison-grid p {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--brand-dark);
  line-height: 1.4;
}

.easychat-comparison-grid i {
  flex: 0 0 auto;
  font-size: 15px;
}

.easychat-comparison-grid .comparison-old {
  border: 1px solid #fae2e2;
  background: #fffafb;
}

.easychat-comparison-grid .comparison-old h3 {
  color: #cf5353;
  background: #fff0f0;
}

.easychat-comparison-grid .comparison-old i {
  color: #ee5757;
}

.easychat-comparison-grid .comparison-new {
  border: 1px solid #d3e4ff;
  background: #f8fbff;
}

.easychat-comparison-grid .comparison-new h3 {
  color: var(--brand-blue);
  background: #edf5ff;
}

.easychat-comparison-grid .comparison-new i {
  color: #0ca960;
}

.easychat-integrations {
  padding-top: 36px;
  background: #fff;
}

.easychat-integrations-layout {
  display: grid;
  grid-template-columns: 315px 1fr;
  align-items: center;
  gap: 44px;
}

.easychat-integrations-layout h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 2.4vw, 37px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.05em;
}

.easychat-integrations-layout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

.easychat-hub {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(108px, 1fr));
  gap: 13px;
  padding: 12px 0;
}

.easychat-hub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  border-top: 1px dashed #b8d5ff;
}

.easychat-hub span,
.hub-brand {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  min-height: 60px;
  padding: 13px 12px;
  align-items: center;
  border: 1px solid #deebff;
  border-radius: 12px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 750;
}

.easychat-hub span i {
  color: var(--brand-blue);
  font-size: 23px;
}

.hub-brand {
  grid-column: 3;
  grid-row: 1 / span 2;
  flex-direction: column;
  justify-content: center;
  min-height: 133px;
  border-radius: 50%;
  color: var(--brand-orange);
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(18, 109, 255, .11);
}

.hub-brand i {
  color: var(--brand-blue);
  font-size: 36px;
}

.easychat-final-cta article {
  display: grid;
  grid-template-columns: 180px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 20px 30px;
  padding: 39px max(calc((100% - 1250px)/2), 30px) 33px;
  color: #fff;
  background: linear-gradient(103deg, #0864ee 0%, #0848b5 62%, #ff7123 100%);
}

.easychat-final-cta img {
  grid-row: span 2;
  width: 180px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 16px 23px rgba(0, 24, 83, .23));
}

.easychat-final-cta article > div:first-of-type > span {
  display: block;
  margin-bottom: 9px;
  color: #cfe4ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.easychat-final-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 2.45vw, 36px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.045em;
}

.easychat-final-cta article > div:first-of-type p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.6;
}

.easychat-trust {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.easychat-trust p {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  margin: 0;
  padding: 13px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  font-size: 12px;
  font-weight: 700;
}

  .easychat-trust i {
  font-size: 21px;
}

@media (max-width: 1399.98px) {
  .easychat-ai-layout {
    grid-template-columns: minmax(300px, .9fr) minmax(260px, .65fr) minmax(315px, .85fr);
    grid-template-areas:
      "copy robot panel"
      "tags tags panel"
      "side side side";
  }

  .easychat-ai-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .easychat-feature-grid,
  .easychat-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .easychat-steps {
    gap: 18px;
  }

  .easychat-steps article:nth-child(3)::after {
    content: none;
  }
}

@media (max-width: 1199.98px) {
  .easychat-hero-grid,
  .easychat-ai-layout,
  .easychat-results-grid,
  .easychat-integrations-layout {
    grid-template-columns: 1fr;
  }

  .easychat-ai-layout {
    grid-template-areas:
      "copy"
      "robot"
      "panel"
      "side"
      "tags";
  }

  .easychat-ai-panel {
    min-height: auto;
  }

  .easychat-hero-copy {
    max-width: 720px;
  }

  .easychat-dashboard {
    max-width: 690px;
    margin: 0 auto;
  }

  .easychat-ai-robot {
    max-width: 360px;
    margin: 0 auto;
  }

  .easychat-problems-layout,
  .easychat-segments-layout {
    grid-template-columns: 1fr;
  }

  .easychat-problems-copy {
    max-width: 760px;
  }

  .easychat-problems-copy h2 {
    font-size: clamp(36px, 5vw, 46px);
  }

  .easychat-problems-copy p {
    font-size: 20px;
  }

  .easychat-hub {
    max-width: 800px;
    margin: 0 auto;
  }

  .easychat-final-cta article {
    grid-template-columns: 160px 1fr;
  }

  .easychat-feature-grid,
  .easychat-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .easychat-steps {
    gap: 18px;
  }

  .easychat-steps article:nth-child(3)::after {
    content: none;
  }

  .easychat-final-cta article > .btn {
    grid-column: 2;
  }

  .easychat-trust {
    grid-column: 1 / 3;
  }
}

@media (max-width: 991.98px) {
  .easychat-intro-grid,
  .easychat-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .easychat-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .easychat-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .easychat-problems-grid article {
    min-height: 190px;
  }

  .easychat-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .easychat-steps article:nth-child(3)::after {
    content: none;
  }

  .easychat-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .easychat-hub {
    grid-template-columns: repeat(3, 1fr);
  }

  .hub-brand {
    grid-column: 2;
  }
}

@media (max-width: 767.98px) {
  .easychat-section {
    padding: 55px 0;
  }

  .easychat-hero {
    padding: 38px 0 49px;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(35px, 11vw, 43px);
  }

  .easychat-dashboard {
    padding: 13px;
  }

  .easychat-app {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .easychat-app aside {
    display: flex;
    overflow: auto;
    gap: 5px;
    padding: 10px;
  }

  .easychat-conversations {
    display: none;
  }

  .easychat-window {
    min-height: 302px;
  }

  .easychat-kpis,
  .easychat-intro-grid,
  .easychat-problems-grid,
  .easychat-feature-grid,
  .easychat-steps,
  .easychat-segments-grid,
  .easychat-benefit-list,
  .easychat-comparison-grid,
  .easychat-stats-panel {
    grid-template-columns: 1fr;
  }

  .easychat-steps article:not(:last-child)::after {
    content: none;
  }

  .easychat-feature-grid article {
    grid-template-columns: 58px 1fr;
    min-height: auto;
    padding: 22px 19px;
  }

  .easychat-feature-grid i {
    font-size: 40px;
  }

  .easychat-feature-grid h3 {
    font-size: 16px;
  }

  .easychat-feature-grid p {
    font-size: 13.5px;
  }

  .easychat-steps {
    gap: 17px;
    padding-top: 0;
  }

  .easychat-steps article {
    min-height: auto;
    padding: 22px 18px;
  }

  .easychat-steps h3 {
    font-size: 15px;
  }

  .easychat-steps p {
    font-size: 13px;
  }

  .easychat-problems-copy {
    padding-left: 24px;
  }

  .easychat-problems-copy::before {
    width: 6px;
    height: 116px;
  }

  .easychat-problems-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 10vw, 40px);
  }

  .easychat-problems-copy p {
    font-size: 17px;
  }

  .easychat-problems-grid article {
    grid-template-columns: 68px 1fr;
    min-height: auto;
    padding: 24px 20px;
  }

  .easychat-problems-grid i {
    width: 56px;
    height: 56px;
    font-size: 34px;
  }

  .easychat-problems-grid h3 {
    font-size: 18px;
  }

  .easychat-problems-grid p {
    margin-top: 17px;
    font-size: 16px;
  }

  .easychat-ai-layout {
    padding: 25px 19px;
  }

  .easychat-ai-robot {
    max-width: 300px;
  }

  .easychat-ai-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .easychat-ai-copy > p {
    font-size: 16px;
  }

  .easychat-ai-tags,
  .easychat-ai-side {
    grid-template-columns: 1fr;
  }

  .easychat-ai-tags span + span {
    border-left: 0;
    border-top: 1px solid #edf2fa;
  }

  .easychat-ai-panel {
    padding: 22px;
  }

  .easychat-ai-panel ul li {
    min-width: 0;
    width: 100%;
  }

  .sentiment-row,
  .ai-sentiment p {
    align-items: flex-start;
    flex-direction: column;
  }

  .easychat-hub {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-brand {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 106px;
    border-radius: 22px;
  }

  .easychat-final-cta article {
    grid-template-columns: 1fr;
    padding: 35px 22px;
    text-align: center;
  }

  .easychat-final-cta img,
  .easychat-final-cta article > .btn,
  .easychat-trust {
    grid-column: 1;
    grid-row: auto;
    margin: 0 auto;
  }

  .easychat-trust {
    grid-template-columns: 1fr 1fr;
  }

  .easychat-floating {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* EasyChat hero: reequilibrio de escala entre copy e mockup */
.ecx-hero {
  padding: 88px 0 112px;
}

.ecx-hero-grid {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 56px;
}

.ecx-hero-copy {
  max-width: 540px;
}

.ecx-hero-copy h1 {
  max-width: 540px;
  font-size: clamp(38px, 4.05vw, 58px);
  line-height: 1.06;
  letter-spacing: -.055em;
}

.ecx-hero-copy p {
  max-width: 520px;
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.7;
}

.ecx-actions {
  margin-top: 32px;
}

.ecx-highlights {
  max-width: 540px;
  margin-top: 36px;
  gap: 12px;
}

.ecx-highlights div {
  padding: 14px 12px;
  border-radius: 20px;
}

.ecx-highlights i {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 15px;
  font-size: 22px;
}

.ecx-highlights strong {
  font-size: 12.2px;
}

.ecx-highlights span {
  font-size: 10.8px;
}

.ecx-hero-art {
  justify-content: end;
}

.ecx-hero-art img {
  width: 116%;
  max-width: 1040px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  transform: translateX(20px);
  filter: drop-shadow(0 34px 76px rgba(6, 23, 67, .16));
}

@media (max-width: 1199.98px) {
  .ecx-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ecx-hero-copy,
  .ecx-hero-copy h1,
  .ecx-hero-copy p {
    max-width: 760px;
  }

  .ecx-hero-art {
    justify-content: center;
  }

  .ecx-hero-art img {
    width: min(100%, 920px);
    max-width: 920px;
    transform: none;
    object-position: center;
  }
}

@media (max-width: 767.98px) {
  .ecx-hero {
    padding: 64px 0 80px;
  }

  .ecx-hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .ecx-hero-copy p {
    font-size: 16px;
  }

  .ecx-highlights {
    margin-top: 32px;
  }

  .ecx-hero-art img {
    width: min(108%, 640px);
  }
}

/* EasyChat: problemas, funcionalidades e jornada em HTML real */
.easychat-problems-section,
.easychat-features-section,
.easychat-steps-section {
  padding: 96px 0;
}

.easychat-problems-section {
  background:
    radial-gradient(circle at top left, rgba(18, 109, 255, .08), transparent 34%),
    #f4f8ff;
}

.easychat-problems-layout {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.easychat-problems-copy h2,
.easychat-section-header h2 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.easychat-problems-copy p,
.easychat-section-header p {
  margin: 0;
  color: #53627f;
  font-size: 18px;
  line-height: 1.7;
}

.easychat-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.easychat-problem-card,
.easychat-feature-card,
.easychat-step-card {
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 77, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.easychat-problem-card {
  min-height: 180px;
  padding: 28px;
}

.easychat-problem-card:hover,
.easychat-feature-card:hover,
.easychat-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 109, 255, .24);
  box-shadow: 0 28px 80px rgba(7, 27, 77, .10);
}

.easychat-problem-card i,
.easychat-feature-card i,
.easychat-step-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 28px;
}

.easychat-problem-card h3,
.easychat-feature-card h3,
.easychat-step-card h3 {
  margin: 0 0 12px;
  color: #071b4d;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.28;
}

.easychat-problem-card p,
.easychat-feature-card p,
.easychat-step-card p {
  margin: 0;
  color: #53627f;
  font-size: 15px;
  line-height: 1.6;
}

.easychat-features-section {
  background: #fff;
}

.easychat-section-header {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.easychat-section-header > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #126dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.easychat-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.easychat-feature-card {
  min-height: 220px;
  padding: 28px;
}

.easychat-feature-card h3 span {
  color: #126dff;
}

.easychat-steps-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.easychat-steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.easychat-steps-grid::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 109, 255, .35), rgba(18, 109, 255, .08));
}

.easychat-step-card {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 28px 22px;
  text-align: center;
}

.easychat-step-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: #126dff;
  font-size: 12px;
  font-weight: 900;
}

.easychat-step-card i {
  margin: 16px auto 20px;
  border-radius: 999px;
}

@media (max-width: 1199.98px) {
  .easychat-problems-layout {
    grid-template-columns: 1fr;
  }

  .easychat-problems-grid,
  .easychat-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .easychat-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .easychat-steps-grid::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .easychat-problems-section,
  .easychat-features-section,
  .easychat-steps-section {
    padding: 72px 0;
  }

  .easychat-problems-grid,
  .easychat-features-grid,
  .easychat-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .easychat-section-header {
    margin-bottom: 40px;
    text-align: left;
  }

  .easychat-problems-copy h2,
  .easychat-section-header h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .easychat-problems-copy p,
  .easychat-section-header p {
    font-size: 16px;
  }

  .easychat-problem-card,
  .easychat-feature-card,
  .easychat-step-card {
    min-height: auto;
    padding: 26px;
  }
}

/* EasyChat: IA integrada e segmentos em HTML real */
.easychat-ai-section {
  padding: 96px 0;
  background: #fff;
}

.easychat-ai-panel {
  display: grid;
  grid-template-columns: .95fr .75fr .9fr .9fr;
  grid-template-areas:
    "copy robot assistant side"
    "benefits benefits assistant side";
  gap: 32px;
  align-items: center;
  padding: 56px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 109, 255, .10), transparent 34%),
    linear-gradient(115deg, #eef4ff 0%, #f8fbff 100%);
  box-shadow: 0 28px 90px rgba(7, 27, 77, .08);
}

.easychat-ai-copy {
  grid-area: copy;
}

.easychat-ai-copy h2 {
  margin: 0 0 24px;
  color: #071b4d;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.easychat-ai-copy p {
  margin: 0;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.easychat-ai-robot-area {
  grid-area: robot;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easychat-ai-robot {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(18, 109, 255, .20));
}

.easychat-ai-assistant-card,
.easychat-ai-suggestion-card,
.easychat-ai-sentiment-card {
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(7, 27, 77, .08);
}

.easychat-ai-assistant-card {
  grid-area: assistant;
  padding: 28px;
}

.easychat-ai-assistant-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.easychat-ai-avatar img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.easychat-ai-assistant-card h3 {
  margin: 0;
  color: #071b4d;
  font-size: 18px;
  font-weight: 900;
}

.easychat-ai-assistant-card header span {
  color: #0ca960;
  font-size: 14px;
}

.easychat-ai-assistant-card header > i {
  margin-left: auto;
  color: #64748b;
}

.easychat-ai-message {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  color: #071b4d;
  background: #f3f7ff;
  font-size: 16px;
}

.easychat-ai-options {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.easychat-ai-options button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(18, 109, 255, .14);
  border-radius: 999px;
  color: #126dff;
  background: #fff;
  font-weight: 800;
  text-align: left;
}

.easychat-ai-options button i {
  font-size: 22px;
}

.easychat-ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 1px solid rgba(18, 109, 255, .16);
  border-radius: 16px;
  color: #94a3b8;
  background: #fff;
}

.easychat-ai-input i {
  color: #126dff;
  font-size: 24px;
}

.easychat-ai-side {
  grid-area: side;
  display: grid;
  gap: 24px;
}

.easychat-ai-suggestion-card,
.easychat-ai-sentiment-card {
  padding: 28px;
}

.easychat-ai-suggestion-card h3,
.easychat-ai-sentiment-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #071b4d;
  font-size: 20px;
  font-weight: 900;
}

.easychat-ai-suggestion-card h3 i,
.easychat-ai-sentiment-card h3 i {
  color: #126dff;
}

.easychat-ai-suggestion-box {
  padding: 22px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 18px;
  background: #fff;
}

.easychat-ai-suggestion-box span {
  display: block;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 14px;
}

.easychat-ai-suggestion-box p {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: 17px;
  line-height: 1.55;
}

.easychat-ai-suggestion-box button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  background: #126dff;
  font-weight: 800;
}

.easychat-sentiment-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.easychat-sentiment-row span {
  display: block;
  color: #64748b;
  font-size: 14px;
}

.easychat-sentiment-row strong {
  display: block;
  color: #0ca960;
  font-size: 34px;
  line-height: 1;
}

.easychat-sentiment-row em {
  border-radius: 999px;
  padding: 7px 12px;
  color: #0ca960;
  background: rgba(12, 169, 96, .12);
  font-style: normal;
  font-weight: 800;
}

.easychat-sentiment-progress {
  height: 9px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
}

.easychat-sentiment-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0ca960;
}

.easychat-response-time {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 109, 255, .12);
  color: #53627f;
  font-size: 14px;
}

.easychat-response-time i {
  color: #071b4d;
  font-size: 24px;
}

.easychat-response-time strong {
  margin-left: auto;
  color: #071b4d;
}

.easychat-ai-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 27, 77, .06);
}

.easychat-ai-benefits div {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 110px;
  padding: 18px;
  text-align: center;
}

.easychat-ai-benefits div + div {
  border-left: 1px solid rgba(18, 109, 255, .10);
}

.easychat-ai-benefits i {
  color: #126dff;
  font-size: 28px;
}

.easychat-ai-benefits span {
  color: #071b4d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.easychat-segments-section {
  padding: 96px 0;
  background: #fff;
}

.easychat-segments-layout {
  display: grid;
  grid-template-columns: .75fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.easychat-segments-copy h2 {
  margin: 0 0 24px;
  color: #071b4d;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.easychat-segments-copy p {
  margin: 0;
  color: #53627f;
  font-size: 18px;
  line-height: 1.7;
}

.easychat-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.easychat-segment-card {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 77, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.easychat-segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 27, 77, .10);
}

.easychat-segment-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 28px;
}

.easychat-segment-card h3 {
  margin: 0 0 12px;
  color: #071b4d;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.28;
}

.easychat-segment-card p {
  margin: 0;
  color: #53627f;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1399.98px) {
  .easychat-ai-panel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy robot"
      "assistant side"
      "benefits benefits";
  }

  .easychat-segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .easychat-ai-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "robot"
      "assistant"
      "side"
      "benefits";
    padding: 40px 28px;
  }

  .easychat-ai-benefits {
    grid-template-columns: 1fr;
  }

  .easychat-ai-benefits div + div {
    border-left: 0;
    border-top: 1px solid rgba(18, 109, 255, .10);
  }

  .easychat-segments-layout {
    grid-template-columns: 1fr;
  }

  .easychat-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .easychat-ai-section,
  .easychat-segments-section {
    padding: 72px 0;
  }

  .easychat-ai-panel {
    padding: 32px 20px;
    border-radius: 28px;
  }

  .easychat-ai-copy h2,
  .easychat-segments-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .easychat-ai-copy p,
  .easychat-segments-copy p {
    font-size: 16px;
  }

  .easychat-segments-grid {
    grid-template-columns: 1fr;
  }

  .easychat-segment-card {
    min-height: auto;
  }
}

/* EasyChat hero dashboard premium */
.ecx-hero-grid {
  grid-template-columns: minmax(420px, .9fr) minmax(620px, 1.15fr);
  align-items: center;
  gap: 72px;
}

.easychat-dashboard-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  min-height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.easychat-dashboard-frame::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 20%, rgba(18, 109, 255, 0.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 26, 0.12), transparent 38%);
  filter: blur(34px);
  opacity: 0.85;
}

.easychat-dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 920px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  filter:
    drop-shadow(0 28px 70px rgba(7, 27, 77, 0.14))
    drop-shadow(0 8px 24px rgba(18, 109, 255, 0.08));
  transform: translateZ(0);
}

@media (max-width: 1199.98px) {
  .ecx-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .easychat-dashboard-frame {
    max-width: 820px;
  }
}

@media (max-width: 767.98px) {
  .easychat-dashboard-frame {
    max-width: 100%;
    padding: 0 4px;
  }

  .easychat-dashboard-image {
    border-radius: 22px;
    filter:
      drop-shadow(0 18px 46px rgba(7, 27, 77, 0.12))
      drop-shadow(0 6px 18px rgba(18, 109, 255, 0.08));
  }
}

@media (max-width: 480px) {
  .easychat-dashboard-image {
    border-radius: 18px;
  }
}

/* EasyChat: benefícios, comparativo e integrações em HTML real */
.easychat-results-section {
  padding: 96px 0 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 109, 255, 0.08), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255, 107, 26, 0.06), transparent 30%),
    #f8fbff;
}

.easychat-results-section > .container,
.easychat-integrations-section > .container {
  width: min(100% - 48px, 1840px);
  max-width: 1840px;
}

.easychat-results-layout {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(520px, 1.15fr) minmax(440px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.easychat-benefits-card,
.easychat-comparison-card {
  padding: 40px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.08);
}

.easychat-benefits-card h2,
.easychat-comparison-card h2,
.easychat-integrations-copy h2 {
  margin: 0 0 32px;
  color: #071b4d;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.easychat-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.easychat-benefits-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #071b4d;
  font-size: 17px;
  font-weight: 800;
}

.easychat-benefits-list i {
  flex: 0 0 auto;
  color: #ff6b1a;
  font-size: 30px;
}

.easychat-benefits-hub {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(18, 109, 255, 0.10);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.06);
  overflow: hidden;
}

.easychat-benefits-hub::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.24) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
}

.easychat-benefits-hub::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-left: 2px dashed rgba(18, 109, 255, 0.38);
}

.easychat-hub-logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  padding: 26px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 27, 77, 0.12);
  transform: translate(-50%, -50%);
}

.easychat-hub-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.easychat-hub-item {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
  padding: 15px 18px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.09);
  color: #071b4d;
  font-weight: 900;
}

.easychat-hub-item i {
  color: #126dff;
  font-size: 26px;
}

.easychat-hub-item small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.easychat-hub-item span {
  display: block;
  line-height: 1.25;
}

.hub-top {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hub-left-1 {
  top: 130px;
  left: 20px;
}

.hub-left-2 {
  top: 235px;
  left: 20px;
}

.hub-left-3 {
  top: 340px;
  left: 20px;
}

.hub-bottom {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hub-right-1 {
  top: 130px;
  right: 20px;
}

.hub-right-2 {
  top: 235px;
  right: 20px;
}

.hub-right-3 {
  top: 340px;
  right: 20px;
}

.easychat-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.easychat-comparison-column {
  overflow: hidden;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 22px;
  background: #ffffff;
}

.easychat-comparison-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 900;
}

.easychat-common h3 {
  color: #f04438;
  background: rgba(240, 68, 56, 0.10);
}

.easychat-better h3 {
  color: #126dff;
  background: rgba(18, 109, 255, 0.10);
}

.easychat-comparison-column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.easychat-comparison-column li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #071b4d;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.easychat-common li i {
  color: #f04438;
}

.easychat-better li i {
  color: #0ca960;
}

.easychat-integrations-section {
  padding: 48px 0 96px;
  background: #f8fbff;
}

.easychat-integrations-card {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(640px, 1.35fr);
  gap: 56px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.08);
}

.easychat-integrations-copy p {
  margin: 0;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.easychat-integrations-map {
  position: relative;
  min-height: 430px;
}

.easychat-integrations-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed rgba(18, 109, 255, 0.36);
  transform: translateY(-50%);
}

.integration-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  padding: 36px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 27, 77, 0.12);
  transform: translate(-50%, -50%);
}

.integration-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.integration-stack {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 20px;
}

.integration-left {
  top: 30px;
  left: 0;
}

.integration-right {
  top: 30px;
  right: 250px;
}

.integration-extra {
  top: 115px;
  right: 0;
}

.integration-bottom {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 18px 22px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.08);
  color: #071b4d;
  font-size: 17px;
  font-weight: 900;
}

.integration-item i {
  color: #126dff;
  font-size: 30px;
}

.integration-item small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1399.98px) {
  .easychat-results-layout {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-hub {
    min-height: 560px;
  }

  .easychat-integrations-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .easychat-benefits-list {
    grid-template-columns: 1fr;
  }

  .easychat-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-hub,
  .easychat-integrations-map {
    min-height: auto;
    display: grid;
    gap: 20px;
    padding: 28px;
  }

  .easychat-benefits-hub::before,
  .easychat-benefits-hub::after,
  .easychat-integrations-map::before {
    display: none;
  }

  .easychat-hub-logo,
  .easychat-hub-item,
  .integration-center,
  .integration-stack,
  .integration-bottom {
    position: static;
    transform: none;
  }

  .easychat-hub-logo,
  .integration-center {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .easychat-hub-item,
  .integration-item {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .easychat-results-section,
  .easychat-integrations-section {
    padding: 72px 0;
  }

  .easychat-benefits-card,
  .easychat-comparison-card,
  .easychat-integrations-card {
    padding: 28px;
    border-radius: 28px;
  }

  .easychat-benefits-card h2,
  .easychat-comparison-card h2,
  .easychat-integrations-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .easychat-comparison-column ul {
    padding: 22px;
  }
}

/* EasyChat CTA final premium com textos editáveis */
section.easychat-final-cta {
  padding: 96px 0;
  background: #ffffff;
}

section.easychat-final-cta > .container {
  width: min(100% - 48px, 1840px);
  max-width: 1840px;
}

.easychat-final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(420px, 1fr) auto;
  grid-template-areas:
    "visual copy action"
    "visual benefits benefits";
  align-items: center;
  gap: 32px 56px;
  overflow: hidden;
  min-height: 320px;
  padding: 48px 56px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 50%, rgba(18, 109, 255, 0.55), transparent 32%),
    radial-gradient(circle at 90% 50%, rgba(255, 107, 26, 0.65), transparent 34%),
    linear-gradient(115deg, #0039d8 0%, #062b93 46%, #ff6b1a 100%);
  box-shadow:
    0 34px 110px rgba(7, 27, 77, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.easychat-final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.easychat-final-cta-card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.34);
  filter: blur(70px);
  z-index: -1;
}

.easychat-final-cta-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easychat-final-cta-visual img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.22));
}

.easychat-final-cta-copy {
  grid-area: copy;
}

.easychat-final-cta-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.easychat-final-cta-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.easychat-final-cta-action {
  grid-area: action;
  display: flex;
  justify-content: flex-end;
}

.easychat-final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 300px;
  min-height: 76px;
  padding: 22px 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a1a 0%, #ff5a00 100%);
  box-shadow:
    0 24px 50px rgba(255, 107, 26, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.easychat-final-cta-button:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(255, 107, 26, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.easychat-final-cta-button i {
  font-size: 26px;
}

.easychat-final-cta-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
  align-items: center;
  justify-content: start;
}

.easychat-final-cta-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.easychat-final-cta-benefits i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #126dff;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  font-size: 25px;
}

@media (max-width: 1199.98px) {
  .easychat-final-cta-card {
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "visual copy"
      "visual action"
      "benefits benefits";
    gap: 32px;
  }

  .easychat-final-cta-action {
    justify-content: flex-start;
  }

  .easychat-final-cta-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  section.easychat-final-cta {
    padding: 72px 0;
  }

  .easychat-final-cta-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "action"
      "benefits";
    padding: 40px 28px;
    text-align: center;
    border-radius: 30px;
  }

  .easychat-final-cta-visual img {
    max-width: 190px;
  }

  .easychat-final-cta-copy h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .easychat-final-cta-copy p {
    font-size: 17px;
  }

  .easychat-final-cta-action {
    justify-content: center;
  }

  .easychat-final-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 17px;
  }

  .easychat-final-cta-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-content: stretch;
    text-align: left;
  }

  .easychat-final-cta-benefits div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
  }
}

/* EasyChat: leitura, acentuação e quebras naturais de texto */
.easychat-segment-card h3,
.easychat-segment-card p,
.easychat-feature-card h3,
.easychat-feature-card p,
.easychat-problem-card h3,
.easychat-problem-card p,
.easychat-step-card h3,
.easychat-step-card p {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.easychat-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 24px;
}

.easychat-segment-card h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.easychat-segment-card p {
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1399.98px) {
  .easychat-segments-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .easychat-segments-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .easychat-segments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .easychat-hub,
  .easychat-trust {
    grid-template-columns: 1fr;
  }

  .hub-brand {
    grid-column: 1;
  }

  .easychat-floating {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, #EAF5FF 0, transparent 34%),
    radial-gradient(circle at top right, rgba(255, 107, 26, .12), transparent 28%),
    var(--bg);
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* HEADER CUSTOMIZADO */
.header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,27,77,.05);
}

.navbar {
  padding: 18px 0;
}

.navbar-brand img {
  width: min(250px, 62vw);
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.03);
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark) !important;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-orange) !important;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
  width: 100%;
}

.navbar-nav .dropdown-menu {
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(7, 27, 77, 0.14);
  backdrop-filter: blur(18px);
}

.navbar-nav .dropdown-item {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  color: var(--brand-blue);
  background: rgba(18, 109, 255, 0.08);
}

.btn-header-cta {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(255,107,26,.25);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,107,26,.32);
}

.navbar-toggler {
  color: var(--brand-dark);
  border-color: rgba(7,27,77,.15);
  padding: 8px 11px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(18,109,255,.14);
}

.navbar-toggler i {
  display: block;
  font-size: 26px;
}

/* HERO SECTION */
.hero {
  padding: 72px 0 64px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand-blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 28px;
}

.tag span {
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  font-weight: 900;
}

.hero h1 strong {
  background: linear-gradient(90deg, var(--brand-blue), #8B5CF6, var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.hero-robot {
  width: 100%;
  max-width: 430px;
  height: auto;
  filter: drop-shadow(0 28px 55px rgba(18, 109, 255, 0.22));
  animation: floatRobot 5.5s ease-in-out infinite;
}

.hero-dashboard {
  width: 100%;
  max-width: 390px;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

@keyframes floatRobot {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* BOTÕES */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
  color: white !important;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 18px 32px rgba(255, 107, 26, .24);
  transition: all .25s ease;
  border: none;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  color: white !important;
}

.btn-secondary-custom {
  background: white;
  color: var(--brand-dark) !important;
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* STATS SECTION */
.stats-section {
  background: rgba(255,255,255,.74);
  border-top: 1px solid #EEF2F7;
  border-bottom: 1px solid #EEF2F7;
  padding: 34px 0;
}

.stats-item strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-dark);
}

.stats-item span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 42px;
}

.section-header span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.section-header h2 {
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 12px 0 10px;
  font-weight: 900;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* SOLUTIONS CARDS */
.solutions-section {
  padding: 84px 0 52px;
}

.solution-card {
  min-height: 382px;
  background: linear-gradient(180deg, #fff, rgba(234,245,255,.42));
  border: 1px solid rgba(18,109,255,.14);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(7,27,77,.055);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card img {
  height: 150px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 25px;
  font-weight: 900;
  margin: 0 0 10px;
}

.solution-card h3 span {
  color: var(--brand-blue);
}

.solution-card h3 em {
  color: var(--brand-orange);
  font-style: normal;
}

.solution-card h4 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.solution-card a {
  margin-top: auto;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* SEGMENTS */
.segments-section {
  padding: 58px 0;
  background: white;
  border-top: 1px solid #EEF2F7;
  border-bottom: 1px solid #EEF2F7;
}

.segment-item {
  text-align: center;
  position: relative;
  background: white;
  padding: 15px;
}

.segment-item i {
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 30px;
  background: white;
  box-shadow: 0 10px 28px rgba(7,27,77,.05);
}

.segment-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
}

.segment-item p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

/* CASE + CTA */
.case-cta-section {
  padding: 60px 0;
}

.case-box,
.cta-box {
  background: linear-gradient(180deg, #fff, rgba(234,245,255,.38));
  border-radius: 24px;
  border: 1px solid rgba(18,109,255,.12);
  box-shadow: 0 18px 42px rgba(7,27,77,.06);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.case-box span,
.cta-box span {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.case-box h3,
.cta-box h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 14px;
}

.case-box p,
.cta-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.case-box a {
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.case-photo-box {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78), rgba(255,255,255,.08)),
    url("../assets-optimized/easylite/case-doctor.jpg");
  background-size: cover;
  background-position: center right;
  min-height: 250px;
  border-radius: 24px;
}

.case-metrics {
  position: absolute;
  inset: 0;
  width: 50%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.case-metrics strong {
  display: block;
  color: var(--brand-dark);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.case-metrics small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
}

.cta-features div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-features i {
  color: var(--brand-orange);
  font-size: 15px;
}

/* PARTNERS CAROUSEL */
.partners-section {
  background: white;
  padding: 54px 0 64px;
  border-top: 1px solid #EEF2F7;
  text-align: center;
  overflow: hidden;
}

.partners-carousel {
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  position: relative;
  margin: 0 auto 28px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-track img {
  width: 240px;
  height: 90px;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners-btn {
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  background: white;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
}

/* EASYVOICE PAGE */
.easyvoice-page {
  color: var(--brand-dark);
}

.easyvoice-page p {
  color: var(--text-muted);
}

.easyvoice-hero {
  padding: 70px 0 78px;
  background:
    radial-gradient(circle at 78% 26%, rgba(18, 109, 255, .13), transparent 28%),
    radial-gradient(circle at 96% 75%, rgba(255, 107, 26, .12), transparent 24%);
}

.easyvoice-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  gap: 54px;
}

.easyvoice-hero-copy h1 {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.055em;
  font-weight: 900;
}

.easyvoice-hero-copy h1 strong {
  color: var(--brand-blue);
}

.easyvoice-hero-copy > p {
  margin: 0 0 32px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}

.easyvoice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.easyvoice-hero-media {
  min-height: 528px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easyvoice-main-image {
  width: 100%;
  max-width: 505px;
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(18, 109, 255, .15));
}

.easyvoice-metrics {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: min(100%, 370px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(18, 109, 255, .12);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 50px rgba(7, 27, 77, .11);
}

.easyvoice-metrics-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
}

.easyvoice-metrics-title span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #119452;
  background: #DBFCE7;
  font-size: 11px;
}

.easyvoice-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.easyvoice-metrics small {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.3;
}

.easyvoice-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.easyvoice-metrics .metric-good {
  color: #119452;
}

.easyvoice-metrics p {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 800;
}

.easyvoice-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.easyvoice-channels span {
  padding: 6px 9px;
  color: var(--brand-blue);
  border-radius: 8px;
  background: var(--brand-light);
  font-size: 11px;
  font-weight: 800;
}

.easyvoice-section {
  padding: 76px 0;
}

.easyvoice-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.easyvoice-card {
  padding: 26px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(7, 27, 77, .055);
}

.easyvoice-image-card img {
  display: block;
  width: 100%;
  height: 166px;
  object-fit: contain;
  margin-bottom: 20px;
}

.easyvoice-image-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 850;
}

.easyvoice-image-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.easyvoice-problems {
  background: linear-gradient(180deg, #F1F8FF, #E9F3FF);
  border-top: 1px solid #E1EDF9;
  border-bottom: 1px solid #E1EDF9;
}

.easyvoice-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.easyvoice-problems-grid article {
  min-height: 156px;
  padding: 21px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 109, 255, .1);
}

.easyvoice-problems-grid i {
  display: inline-flex;
  width: 43px;
  height: 43px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand-blue);
  font-size: 23px;
}

.easyvoice-problems-grid p {
  margin: 0;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.easyvoice-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.easyvoice-feature-card {
  overflow: hidden;
  min-height: 343px;
  border-radius: 22px;
  border: 1px solid rgba(18, 109, 255, .11);
  background: #fff;
  box-shadow: 0 15px 38px rgba(7, 27, 77, .05);
}

.easyvoice-feature-card img {
  display: block;
  width: 100%;
  height: 126px;
  padding: 12px 18px 0;
  object-fit: contain;
  background: linear-gradient(180deg, #F2F8FF, #fff);
}

.easyvoice-feature-card div {
  padding: 19px 20px 22px;
}

.easyvoice-feature-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 850;
}

.easyvoice-feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.easyvoice-steps-section {
  background: #fff;
}

.easyvoice-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.easyvoice-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), #A4C8FF);
}

.easyvoice-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.easyvoice-step i {
  display: flex;
  width: 68px;
  height: 68px;
  margin: 0 auto 21px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #55AEFF);
  box-shadow: 0 13px 30px rgba(18, 109, 255, .22);
}

.easyvoice-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.easyvoice-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.52;
}

.easyvoice-segments {
  background: #F8FBFF;
}

.easyvoice-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.easyvoice-segments-grid article {
  padding: 25px 23px;
  border: 1px solid rgba(18, 109, 255, .1);
  border-radius: 20px;
  background: #fff;
}

.easyvoice-segments-grid i {
  color: var(--brand-blue);
  font-size: 32px;
}

.easyvoice-segments-grid h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 850;
}

.easyvoice-segments-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

.easyvoice-benefits {
  background: #fff;
}

.easyvoice-benefits-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 52px;
  align-items: center;
}

.easyvoice-header-left {
  margin-bottom: 32px;
  text-align: left;
}

.easyvoice-header-left p {
  margin-left: 0;
}

.easyvoice-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.easyvoice-check-grid p {
  display: flex;
  gap: 9px;
  margin: 0;
  align-items: flex-start;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 650;
}

.easyvoice-check-grid i {
  flex: 0 0 auto;
  color: #10A667;
  font-size: 21px;
}

.easyvoice-benefits-media {
  padding: 27px;
  border-radius: 30px;
  background: linear-gradient(140deg, #EAF5FF, #fff);
}

.easyvoice-benefits-media img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
}

.easyvoice-comparison {
  background: #F8FBFF;
  border-top: 1px solid #E8F1FC;
}

.easyvoice-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 455px));
  justify-content: center;
  gap: 24px;
}

.easyvoice-comparison-grid article {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 27, 77, .05);
}

.easyvoice-comparison-grid h3 {
  margin: 0 0 23px;
  font-size: 23px;
  font-weight: 900;
}

.easyvoice-comparison-grid p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 15px;
}

.comparison-old {
  border: 1px solid #F3E4E4;
}

.comparison-new {
  border: 2px solid rgba(18, 109, 255, .21);
}

.comparison-old i {
  color: #D86565;
  font-size: 21px;
}

.comparison-new h3,
.comparison-new i {
  color: var(--brand-blue);
}

.comparison-new i {
  font-size: 21px;
}

.easyvoice-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.easyvoice-connected-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.easyvoice-connected-cards span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(18, 109, 255, .14);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.easyvoice-connected-cards i {
  color: var(--brand-blue);
  font-size: 20px;
}

.easyvoice-integration-media {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 165px);
  gap: 13px;
}

.easyvoice-integration-media img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(18, 109, 255, .1);
  background: #F3F9FF;
}

.easyvoice-integration-media img:first-child {
  grid-row: span 2;
}

.easyvoice-final-cta {
  padding: 18px 0 78px;
}

.easyvoice-final-cta article {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 42px;
  padding: 50px 54px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at right bottom, rgba(255, 155, 50, .32), transparent 35%),
    linear-gradient(120deg, #071B4D, #063C9A);
}

.easyvoice-final-cta article > div:first-child > span {
  display: inline-block;
  margin-bottom: 14px;
  color: #72B6FF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.easyvoice-final-cta h2 {
  margin: 0 0 15px;
  max-width: 720px;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 900;
}

.easyvoice-final-cta article > div:first-child > p {
  margin: 0 0 26px;
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.easyvoice-trust {
  padding: 23px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
}

.easyvoice-trust p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #fff;
  font-weight: 650;
}

.easyvoice-trust p:last-child {
  margin-bottom: 0;
}

.easyvoice-trust i {
  color: #49DF9A;
  font-size: 22px;
}

/* FOOTER */
.footer {
  background: #F7FBFF;
  border-top: 1px solid #EEF2F7;
  padding: 42px 0 18px;
  overflow-x: hidden;
  overflow-x: clip;
}

.footer-logo {
  width: 155px;
  margin-bottom: 16px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 14px;
}

.footer p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer p a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer p a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.footer-contact p i {
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-contact p span,
.footer-contact p a {
  min-width: 0;
}

.footer-contact .email-line a {
  display: inline;
  margin-bottom: 0;
  white-space: nowrap;
}

.footer a {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--brand-blue);
}

.socials a {
  width: 32px;
  height: 32px;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  text-decoration: none;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.footer-copy {
  border-top: 1px solid #E2E8F0;
  padding-top: 16px;
  margin-top: 28px;
  text-align: center;
  color: #94A3B8;
  font-size: 12px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1040;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-float i {
  font-size: 34px;
}

.whatsapp-float:hover {
  background: #1fbd59;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(37, 211, 102, .46);
}

.whatsapp-float:focus-visible {
  color: #fff;
  outline: 3px solid rgba(37, 211, 102, .33);
  outline-offset: 4px;
}

/* PLACEHOLDER PAGES */
.page-placeholder {
  min-height: calc(100vh - 96px);
  padding: 150px 24px 80px;
  text-align: center;
}

.page-placeholder span {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.page-placeholder h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 900;
}

.page-placeholder p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* RESPONSIVO MOBILE */
@media (min-width: 992px) {
  .navbar-brand img {
    width: 310px;
  }
}

@media (min-width: 1400px) {
  .navbar-brand img {
    width: 380px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid rgba(7,27,77,.08);
    margin-top: 14px;
    padding-top: 12px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .hero {
    text-align: center;
    padding: 52px 0 40px;
  }

  .tag {
    margin-bottom: 20px;
  }

  .hero p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-robot,
  .hero-dashboard {
    max-width: 360px;
  }

  .easyvoice-hero {
    padding: 48px 0 58px;
  }

  .easyvoice-hero-grid,
  .easyvoice-benefits-grid,
  .easyvoice-integration-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .easyvoice-hero-copy {
    text-align: center;
  }

  .easyvoice-hero-copy h1,
  .easyvoice-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .easyvoice-actions {
    justify-content: center;
  }

  .easyvoice-hero-media {
    min-height: 485px;
  }

  .easyvoice-metrics {
    right: 50%;
    transform: translateX(50%);
  }

  .easyvoice-intro-grid,
  .easyvoice-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .easyvoice-problems-grid,
  .easyvoice-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .easyvoice-steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 17px;
  }

  .easyvoice-steps::before {
    top: 18px;
    bottom: 18px;
    left: 33px;
    right: auto;
    height: auto;
    width: 2px;
  }

  .easyvoice-step {
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 19px;
    text-align: left;
  }

  .easyvoice-step i {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .easyvoice-step strong {
    margin-top: 10px;
    margin-bottom: 6px;
  }

  .easyvoice-header-left {
    text-align: center;
  }

  .easyvoice-header-left p {
    margin-left: auto;
  }

  .easyvoice-final-cta article {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 38px;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 12px 0;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 44px);
    letter-spacing: -0.045em;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero .btn-primary-custom,
  .hero .btn-secondary-custom {
    width: 100%;
  }

  .stats-item strong {
    font-size: 30px;
  }

  .solutions-section {
    padding-top: 60px;
  }

  .solution-card {
    min-height: auto;
  }

  .case-metrics {
    width: 100%;
    background: rgba(255,255,255,.82);
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .partners-track img {
    width: 184px;
    height: 69px;
  }

  .partners-track {
    gap: 36px;
    animation-duration: 24s;
  }

  .footer {
    padding-top: 34px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float i {
    font-size: 31px;
  }

  .easyvoice-section {
    padding: 55px 0;
  }

  .easyvoice-hero-copy h1 {
    font-size: clamp(33px, 10vw, 42px);
  }

  .easyvoice-hero-copy > p {
    font-size: 16px;
  }

  .easyvoice-actions .btn-primary-custom,
  .easyvoice-actions .btn-secondary-custom {
    width: 100%;
  }

  .easyvoice-hero-media {
    min-height: 402px;
    align-items: flex-start;
  }

  .easyvoice-main-image {
    max-width: 340px;
  }

  .easyvoice-metrics {
    bottom: 0;
    padding: 17px;
  }

  .easyvoice-metrics strong {
    font-size: 19px;
  }

  .easyvoice-intro-grid,
  .easyvoice-problems-grid,
  .easyvoice-feature-grid,
  .easyvoice-segments-grid,
  .easyvoice-check-grid,
  .easyvoice-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easyvoice-card {
    padding: 22px;
  }

  .easyvoice-image-card img {
    height: 145px;
  }

  .easyvoice-feature-card {
    min-height: auto;
  }

  .easyvoice-integration-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 125px;
  }

  .easyvoice-integration-media img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .easyvoice-final-cta {
    padding-bottom: 57px;
  }

  .easyvoice-final-cta article {
    padding: 32px 23px;
    border-radius: 25px;
  }
}
.partners-btn[aria-disabled="true"],
.footer a[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

/* EASYVOICE MOCKUP REFINEMENT */
.easyvoice-page {
  background: #fff;
}

.easyvoice-page h2 {
  color: var(--brand-dark);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.04em;
}

.easyvoice-hero {
  padding: 40px 0 36px;
  background:
    radial-gradient(circle at 55% 25%, rgba(52, 143, 255, .23), transparent 26%),
    radial-gradient(circle at 68% 53%, rgba(255, 126, 38, .08), transparent 20%),
    linear-gradient(110deg, #fff 0%, #eef7ff 42%, #fff 100%);
}

.easyvoice-hero-grid {
  grid-template-columns: minmax(360px, 1.08fr) minmax(280px, .83fr) 285px;
  align-items: center;
  gap: 22px;
}

.easyvoice-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 3.2vw, 51px);
}

.easyvoice-hero-copy > p {
  margin-bottom: 25px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.68;
}

.easyvoice-actions .btn {
  min-height: 50px;
  font-size: 14px;
}

.easyvoice-hero-media {
  min-height: 0;
}

.easyvoice-main-image {
  display: block;
  width: 100%;
  max-width: 405px;
  filter: drop-shadow(0 22px 30px rgba(18, 109, 255, .13));
}

.easyvoice-metrics {
  position: static;
  width: 100%;
  padding: 17px 17px 15px;
  transform: none;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(7, 27, 77, .10);
}

.metric-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 8px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #e7eef8;
}

.metric-row > i {
  grid-row: 1 / span 2;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  background: #ebf4ff;
  border-radius: 50%;
  font-size: 18px;
}

.metric-row small {
  color: #52627c;
  font-size: 11.5px;
  font-weight: 650;
}

.metric-row strong {
  grid-column: 2;
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.metric-row .metric-text {
  font-size: 14px;
}

.metric-row em {
  grid-column: 3;
  grid-row: 2;
  color: #15a36a;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.easyvoice-metrics > p {
  margin: 15px 0 10px;
  color: #52627c;
  font-size: 11.5px;
}

.easyvoice-channels {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 5px;
}

.easyvoice-channels span {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 0;
  color: #54657f;
  background: transparent;
  font-size: 11px;
}

.easyvoice-channels i {
  display: flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--brand-blue);
  background: #eaf3ff;
  font-size: 18px;
}

.easyvoice-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 32px;
}

.easyvoice-hero-highlights p {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 9px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 12px;
}

.easyvoice-hero-highlights i {
  grid-row: span 2;
  color: var(--brand-blue);
  font-size: 30px;
}

.easyvoice-hero-highlights strong {
  display: block;
  font-size: 13px;
}

.easyvoice-hero-highlights span {
  color: var(--text-muted);
  line-height: 1.4;
}

.easyvoice-section {
  padding: 47px 0;
}

.easyvoice-intro-layout,
.easyvoice-problems-layout,
.easyvoice-segments-layout,
.easyvoice-integration-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 25px;
  align-items: start;
}

.easyvoice-intro-copy p,
.easyvoice-problems-copy p,
.easyvoice-integration-copy p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.72;
}

.easyvoice-intro-grid {
  gap: 14px;
}

.easyvoice-card {
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7, 27, 77, .06);
}

.easyvoice-image-card img {
  height: 125px;
  margin-bottom: 17px;
}

.easyvoice-image-card h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.easyvoice-image-card p {
  font-size: 13.5px;
  line-height: 1.62;
}

.easyvoice-problems {
  background: #eef6ff;
  padding: 62px 0;
}

.easyvoice-problems-layout {
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
}

.easyvoice-problems-grid {
  gap: 16px;
}

.easyvoice-problems-grid article {
  display: flex;
  min-height: 112px;
  padding: 22px 20px;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(7, 27, 77, .04);
}

.easyvoice-problems-grid i {
  flex: 0 0 49px;
  width: 49px;
  height: 49px;
  margin: 0;
  background: transparent;
  font-size: 39px;
}

.easyvoice-problems-grid p {
  font-size: 14px;
  line-height: 1.48;
}

.easyvoice-features .section-header,
.easyvoice-steps-section .section-header {
  margin-bottom: 40px;
}

.easyvoice-features {
  padding: 72px 0 78px;
}

.easyvoice-features .section-header p,
.easyvoice-steps-section .section-header p {
  max-width: 690px;
  font-size: 16px;
  line-height: 1.65;
}

.easyvoice-feature-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.easyvoice-feature-card {
  min-height: 245px;
  padding: 25px 22px 23px;
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.easyvoice-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 109, 255, .24);
  box-shadow: 0 18px 38px rgba(7, 27, 77, .09);
}

.easyvoice-feature-card > i {
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--brand-blue);
  background: #eef6ff;
  font-size: 29px;
}

.easyvoice-feature-card h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.38;
}

.easyvoice-feature-card h3 span {
  color: var(--brand-blue);
  font-size: 12px;
  letter-spacing: .08em;
}

.easyvoice-feature-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.easyvoice-steps-section {
  padding: 74px 0 82px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.easyvoice-steps {
  gap: 18px;
}

.easyvoice-steps::before {
  top: 92px;
  left: 9%;
  right: 9%;
}

.easyvoice-step {
  min-height: 288px;
  padding: 23px 20px 24px;
  border: 1px solid rgba(18, 109, 255, .1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 27, 77, .055);
}

.easyvoice-step > span {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.easyvoice-step i {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  color: var(--brand-blue);
  border: 1px solid #d7e8ff;
  background: #fff;
  box-shadow: none;
  font-size: 32px;
}

.easyvoice-step strong {
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 1.36;
}

.easyvoice-step p {
  font-size: 13.5px;
  line-height: 1.62;
}

.easyvoice-segments {
  padding: 70px 0;
  background: #eef6ff;
}

.easyvoice-segments-layout {
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
}

.easyvoice-segments-copy > span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}

.easyvoice-segments-copy p {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.66;
}

.easyvoice-segments-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.easyvoice-segments-grid article {
  min-height: 205px;
  padding: 24px 21px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(7, 27, 77, .05);
}

.easyvoice-segments-grid i {
  font-size: 38px;
}

.easyvoice-segments-grid h3 {
  margin: 15px 0 9px;
  font-size: 16px;
  line-height: 1.34;
}

.easyvoice-segments-grid p {
  font-size: 13.5px;
  line-height: 1.58;
}

.easyvoice-results {
  padding: 76px 0;
  background: #fff;
}

.easyvoice-results-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 26px;
}

.easyvoice-results-grid > article {
  padding: 33px 30px 31px;
  border: 1px solid #dce8fa;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 77, .045);
}

.easyvoice-section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 850;
}

.easyvoice-results-grid h2 {
  margin-bottom: 12px;
  font-size: clamp(25px, 1.9vw, 29px);
}

.easyvoice-results-lead {
  margin: 0 0 27px;
  max-width: 570px;
  font-size: 14.5px;
  line-height: 1.65;
}

.easyvoice-benefits-content {
  display: grid;
  grid-template-columns: minmax(235px, 1fr) minmax(210px, 278px);
  align-items: center;
  gap: 18px;
}

.easyvoice-check-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.easyvoice-check-grid p {
  gap: 11px;
  font-size: 13px;
  line-height: 1.5;
}

.easyvoice-check-grid p span {
  display: block;
}

.easyvoice-check-grid p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-dark);
  font-size: 14px;
}

.easyvoice-check-grid i {
  color: var(--brand-orange);
  font-size: 21px;
}

.easyvoice-benefits-content img {
  width: 100%;
  max-width: 278px;
  object-fit: contain;
}

.easyvoice-benefits-visual {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px 12px 13px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eff7ff 0%, #fff 100%);
}

.easyvoice-benefits-visual figcaption {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.easyvoice-comparison {
  border-top: 1px solid #edf2fb;
}

.easyvoice-comparison-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 22px;
  padding: 13px 15px;
  min-height: 112px;
  border-radius: 17px;
  background: linear-gradient(108deg, #fff7f2 0%, #f3f8ff 52%, #eaf4ff 100%);
}

.easyvoice-comparison-visual img {
  width: min(100%, 268px);
  height: auto;
  object-fit: contain;
}

.easyvoice-comparison-visual figcaption {
  max-width: 148px;
  margin: 0;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.easyvoice-comparison-grid {
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.easyvoice-comparison-grid > div {
  padding: 18px 16px 14px;
  border-radius: 15px;
  background: #fafcff;
}

.easyvoice-comparison-grid h3 {
  padding: 11px 12px;
  margin: -18px -16px 16px;
  color: var(--brand-blue);
  background: #eef6ff;
  border-radius: 15px 15px 0 0;
  font-size: 15px;
}

.easyvoice-comparison-grid p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--brand-dark);
  font-size: 13.5px;
  line-height: 1.45;
}

.easyvoice-comparison-grid i {
  flex: 0 0 auto;
  font-size: 18px;
}

.easyvoice-comparison .comparison-old {
  background: #fffafa;
  border: 1px solid #f8e3e3;
}

.easyvoice-comparison .comparison-old h3 {
  color: #c35353;
  background: #fff0f0;
}

.easyvoice-comparison .comparison-new {
  border: 1px solid #cfe2ff;
  background: #f8fbff;
}

.easyvoice-comparison-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 0;
  padding: 17px 16px;
  border-radius: 15px;
  color: var(--brand-dark) !important;
  background: #eef7ff;
  font-size: 13.5px;
  line-height: 1.55;
}

.easyvoice-comparison-highlight i {
  flex: 0 0 auto;
  color: var(--brand-blue);
  font-size: 25px;
}

.easyvoice-comparison-highlight strong {
  display: inline;
  margin-right: 4px;
}

.easyvoice-integration {
  padding: 76px 0 86px;
  background: #f8fbff;
}

.easyvoice-integration-layout {
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.easyvoice-integration-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.5vw, 38px);
}

.easyvoice-integration-copy p {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.72;
}

.easyvoice-integration-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 24px !important;
  padding: 14px 15px;
  border-radius: 13px;
  color: var(--brand-dark) !important;
  background: #fff;
  font-size: 13.5px !important;
  font-weight: 650;
}

.easyvoice-integration-note i {
  flex: 0 0 auto;
  color: #0fa769;
  font-size: 20px;
}

.easyvoice-connected-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.easyvoice-connected-cards span {
  position: relative;
  display: flex;
  min-height: 183px;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 22px 16px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(7, 27, 77, .05);
}

.easyvoice-connected-cards span:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  color: #7baefb;
  transform: translate(50%, -50%);
}

.easyvoice-connected-cards span:nth-child(3)::after {
  content: none;
}

.easyvoice-connected-cards i {
  display: flex;
  width: 59px;
  height: 59px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf5ff;
  font-size: 30px;
}

.easyvoice-connected-cards strong {
  font-size: 16px;
  line-height: 1.25;
}

.easyvoice-connected-cards small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.easyvoice-final-cta {
  padding: 0;
}

.easyvoice-final-cta .container {
  max-width: none;
  padding: 0;
}

.easyvoice-final-cta article {
  grid-template-columns: 250px minmax(340px, 1fr) auto;
  gap: 22px 34px;
  padding: 46px max(calc((100% - 1300px) / 2), 32px) 38px;
  border-radius: 0;
  background: linear-gradient(105deg, #0461ee 0%, #053ea8 66%, #fa711c 100%);
}

.easyvoice-cta-image {
  align-self: end;
  width: 100%;
  max-width: 250px;
  height: auto;
}

.easyvoice-cta-kicker {
  display: block;
  margin-bottom: 13px;
  color: #aad4ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
}

.easyvoice-final-cta h2 {
  margin-bottom: 13px;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.14;
}

.easyvoice-final-cta article > div:nth-child(2) > p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.66;
}

.easyvoice-final-cta .btn-primary-custom {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 15px;
  white-space: nowrap;
}

.easyvoice-trust {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  background: transparent;
}

.easyvoice-trust p {
  min-height: 72px;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 9px;
  align-items: center;
  margin: 0;
  padding: 12px 15px;
  border-radius: 14px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .94);
}

.easyvoice-trust p strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.easyvoice-trust p span {
  grid-column: 2;
  margin-top: -18px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.easyvoice-trust i {
  color: var(--brand-blue);
  grid-row: span 2;
  font-size: 24px;
}

.easyvoice-footer {
  color: rgba(255, 255, 255, .78);
  background: #061a49;
  border-top: 0;
}

.easyvoice-footer h4,
.easyvoice-footer .footer-copy {
  color: #fff;
}

.easyvoice-footer p,
.easyvoice-footer a {
  color: rgba(255, 255, 255, .75);
}

.easyvoice-footer a:hover {
  color: #fff;
}

.easyvoice-footer .socials a {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.easyvoice-footer .footer-copy {
  border-color: rgba(255, 255, 255, .12);
}

@media (max-width: 1199.98px) {
  .easyvoice-hero-grid {
    grid-template-columns: 1fr .88fr;
    gap: 30px;
  }

  .easyvoice-metrics {
    grid-column: 2;
  }

  .easyvoice-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .easyvoice-segments-layout,
  .easyvoice-problems-layout,
  .easyvoice-integration-layout {
    grid-template-columns: 1fr;
  }

  .easyvoice-problems-copy {
    max-width: 720px;
  }

  .easyvoice-results-grid {
    grid-template-columns: 1fr;
  }

  .easyvoice-benefits-content {
    grid-template-columns: 1fr 320px;
  }

  .easyvoice-benefits-content img {
    max-width: 320px;
  }

  .easyvoice-segments-copy {
    max-width: 600px;
    margin-bottom: 6px;
  }

  .easyvoice-connected-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .easyvoice-final-cta article {
    grid-template-columns: 205px 1fr;
  }

  .easyvoice-final-cta .btn-primary-custom {
    grid-column: 2;
  }

  .easyvoice-trust {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .easyvoice-hero-grid,
  .easyvoice-intro-layout,
  .easyvoice-problems-layout,
  .easyvoice-results-grid {
    grid-template-columns: 1fr;
  }

  .easyvoice-hero-media {
    margin: 0 auto;
  }

  .easyvoice-metrics {
    grid-column: auto;
    max-width: 420px;
    margin: 0 auto;
  }

  .easyvoice-problems-grid,
  .easyvoice-segments-grid,
  .easyvoice-connected-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .easyvoice-final-cta article {
    grid-template-columns: 180px 1fr;
  }

  .easyvoice-final-cta .btn-primary-custom {
    grid-column: 2;
  }

  .easyvoice-trust {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .easyvoice-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .easyvoice-step {
    min-height: auto;
    padding: 22px 20px;
  }

  .easyvoice-step > span {
    grid-column: 2;
    margin: 0 0 6px;
  }

  .easyvoice-step i {
    grid-row: 1 / span 3;
  }

  .easyvoice-results-grid > article {
    padding: 29px 25px;
  }

  .easyvoice-benefits-content {
    grid-template-columns: 1fr 265px;
  }

  .easyvoice-benefits-content img {
    max-width: 265px;
  }

  .easyvoice-connected-cards span:nth-child(3)::after {
    content: "\2192";
  }

  .easyvoice-connected-cards span:nth-child(2n)::after {
    content: none;
  }

  .easyvoice-integration {
    padding: 62px 0 70px;
  }
}

@media (max-width: 767.98px) {
  .easyvoice-hero {
    padding-top: 34px;
  }

  .easyvoice-hero-copy {
    text-align: left;
  }

  .easyvoice-hero-highlights,
  .easyvoice-intro-grid,
  .easyvoice-feature-grid,
  .easyvoice-segments-grid,
  .easyvoice-connected-cards,
  .easyvoice-benefits-content,
  .easyvoice-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easyvoice-features,
  .easyvoice-steps-section,
  .easyvoice-segments,
  .easyvoice-results,
  .easyvoice-integration {
    padding: 56px 0;
  }

  .easyvoice-features .section-header,
  .easyvoice-steps-section .section-header {
    margin-bottom: 30px;
  }

  .easyvoice-feature-card {
    min-height: auto;
    padding: 23px 20px;
  }

  .easyvoice-hero-highlights {
    gap: 16px;
  }

  .easyvoice-problems {
    padding: 48px 0;
  }

  .easyvoice-problems-grid {
    grid-template-columns: 1fr;
  }

  .easyvoice-problems-grid article {
    min-height: 94px;
    padding: 18px 16px;
  }

  .easyvoice-problems-grid i {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
    font-size: 34px;
  }

  .easyvoice-main-image {
    max-width: 320px;
  }

  .easyvoice-steps::before {
    top: 52px;
    bottom: 32px;
    left: 45px;
  }

  .easyvoice-step {
    min-height: auto;
    padding: 20px 18px;
  }

  .easyvoice-segments-grid article {
    min-height: auto;
    padding: 22px 20px;
  }

  .easyvoice-benefits-content img {
    max-width: 290px;
    margin: 18px auto 0;
  }

  .easyvoice-benefits-visual {
    max-width: 320px;
    margin: 20px auto 0;
  }

  .easyvoice-comparison-visual {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .easyvoice-comparison-visual img {
    width: min(100%, 295px);
  }

  .easyvoice-comparison-visual figcaption {
    max-width: 265px;
  }

  .easyvoice-comparison-grid > div {
    padding: 0;
  }

  .easyvoice-comparison-grid > div + div {
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid #edf2fb;
    border-left: 0;
  }

  .easyvoice-connected-cards span:not(:last-child)::after {
    content: none;
  }

  .easyvoice-connected-cards span {
    min-height: auto;
    padding: 21px 17px;
  }

  .easyvoice-final-cta article {
    grid-template-columns: 1fr;
    padding: 33px 20px 29px;
    text-align: center;
  }

  .easyvoice-cta-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .easyvoice-final-cta .btn-primary-custom {
    grid-column: auto;
    width: 100%;
  }

  .easyvoice-trust {
    grid-template-columns: 1fr;
  }
}

/* EasyChat: escala visual alinhada ao padrão refinado da página EasyVoice */
.easychat-problems {
  padding: 62px 0;
  background:
    radial-gradient(circle at 0 82%, rgba(18, 109, 255, .08) 0 2px, transparent 3px) 0 0 / 42px 42px,
    #eef6ff;
}

.easychat-problems-layout {
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
}

.easychat-problems-copy {
  padding-left: 0;
}

.easychat-problems-copy::before {
  content: none;
}

.easychat-problems-copy h2,
.easychat-segments-layout > div:first-child h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.25vw, 36px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.easychat-problems-copy p,
.easychat-segments-layout > div:first-child p {
  font-size: 15px;
  line-height: 1.72;
}

.easychat-problems-grid {
  gap: 16px;
}

.easychat-problems-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  align-items: center;
  min-height: 112px;
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(7, 27, 77, .04);
}

.easychat-problems-grid i {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: #f2f8ff;
  font-size: 29px;
}

.easychat-problems-grid h3 {
  font-size: 14px;
  line-height: 1.42;
}

.easychat-problems-grid p {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.48;
}

.easychat-features {
  padding: 72px 0 78px;
}

.easychat-features > .container,
.easychat-steps-section > .container {
  max-width: 1320px;
}

.easychat-features .section-header,
.easychat-steps-section .section-header {
  margin-bottom: 36px;
}

.easychat-features .section-header span {
  font-size: 11px;
  letter-spacing: .14em;
}

.easychat-features .section-header h2,
.easychat-steps-section .section-header h2 {
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.16;
  letter-spacing: -.04em;
}

.easychat-features .section-header p {
  max-width: 690px;
  font-size: 15.5px;
  line-height: 1.65;
}

.easychat-feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.easychat-feature-grid article {
  grid-template-columns: 52px 1fr;
  min-height: 176px;
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(7, 27, 77, .05);
}

.easychat-feature-grid i {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--brand-light);
  font-size: 27px;
}

.easychat-feature-grid h3 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.38;
}

.easychat-feature-grid h3 span {
  color: var(--brand-blue);
  font-size: 11px;
  letter-spacing: .08em;
}

.easychat-feature-grid p {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.easychat-steps-section {
  padding: 72px 0 80px;
}

.easychat-steps {
  gap: 18px;
}

.easychat-steps::before {
  top: 92px;
  left: 9%;
  right: 9%;
}

.easychat-steps article {
  min-height: 240px;
  padding: 23px 18px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(7, 27, 77, .05);
}

.easychat-steps b {
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.easychat-steps i,
.easychat-steps img {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
}

.easychat-steps i {
  font-size: 29px;
}

.easychat-steps img {
  padding: 13px;
}

.easychat-steps h3 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.36;
}

.easychat-steps p {
  font-size: 13px;
  line-height: 1.58;
}

@media (max-width: 1399.98px) {
  .easychat-problems-layout {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }

  .easychat-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .easychat-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .easychat-steps::before {
    content: none;
  }
}

@media (max-width: 991.98px) {
  .easychat-problems-layout {
    grid-template-columns: 1fr;
  }

  .easychat-problems-copy {
    max-width: 650px;
  }

  .easychat-problems-grid,
  .easychat-feature-grid,
  .easychat-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .easychat-problems,
  .easychat-features,
  .easychat-steps-section {
    padding: 52px 0;
  }

  .easychat-problems-grid,
  .easychat-feature-grid,
  .easychat-steps {
    grid-template-columns: 1fr;
  }

  .easychat-problems-grid article {
    min-height: auto;
    padding: 18px 16px;
  }

  .easychat-feature-grid article,
  .easychat-steps article {
    min-height: auto;
    padding: 21px 18px;
  }
}

/* EasyChat IA: proporções alinhadas com a página EasyVoice */
.easychat-ai-section {
  padding: 68px 0 76px;
}

.easychat-ai-layout {
  grid-template-columns: minmax(285px, .82fr) minmax(260px, .64fr) minmax(292px, .72fr) minmax(300px, .74fr);
  gap: 24px 30px;
  padding: 38px 34px 30px;
  border-radius: 26px;
}

.easychat-ai-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 2.4vw, 37px);
  line-height: 1.18;
}

.easychat-ai-copy > p {
  max-width: 390px;
  font-size: 16px;
  line-height: 1.72;
}

.easychat-ai-robot {
  max-width: 335px;
  max-height: 365px;
}

.easychat-ai-panel {
  min-height: 430px;
  padding: 23px;
  border-radius: 20px;
}

.easychat-ai-panel header {
  margin-bottom: 34px;
  font-size: 15px;
}

.easychat-ai-panel header i {
  width: 38px;
  height: 38px;
  font-size: 22px;
}

.ai-message {
  margin-bottom: 26px !important;
  padding: 14px 18px;
  font-size: 14px;
}

.easychat-ai-panel ul {
  gap: 13px;
  margin-bottom: 25px;
}

.easychat-ai-panel li {
  min-width: 190px;
  padding: 12px 20px;
  font-size: 14px;
}

.easychat-ai-panel label {
  padding: 14px 17px;
  font-size: 14px;
}

.easychat-ai-side {
  gap: 16px;
}

.easychat-ai-side article {
  padding: 23px;
  border-radius: 18px;
}

.easychat-ai-side h3 {
  margin-bottom: 18px;
  font-size: 16px;
}

.ai-suggestion div {
  padding: 18px;
}

.ai-suggestion small {
  font-size: 13px;
}

.ai-suggestion p {
  margin-bottom: 20px;
  font-size: 15px;
}

.ai-suggestion button {
  padding: 10px 18px;
  font-size: 14px;
}

.sentiment-row strong {
  font-size: 27px;
}

.ai-sentiment p {
  font-size: 13.5px;
}

.easychat-ai-tags {
  max-width: 690px;
}

.easychat-ai-tags span {
  min-height: 88px;
  padding: 15px 9px 13px;
  font-size: 12.5px;
}

.easychat-ai-tags i {
  font-size: 27px;
}

@media (max-width: 1399.98px) {
  .easychat-ai-layout {
    grid-template-columns: minmax(285px, .9fr) minmax(245px, .62fr) minmax(300px, .82fr);
  }
}

@media (max-width: 1199.98px) {
  .easychat-ai-robot {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .easychat-ai-layout {
    padding: 26px 20px;
  }

  .easychat-ai-copy h2 {
    font-size: clamp(28px, 8vw, 35px);
  }

  .easychat-ai-robot {
    max-width: 285px;
  }
}

/* EasyChat IA: enquadramento final sem vazamento lateral */
.easychat-ai-section .container {
  max-width: 1320px;
}

.easychat-ai-layout {
  grid-template-columns: minmax(275px, 1fr) minmax(210px, 270px) minmax(280px, 310px);
  grid-template-areas:
    "copy robot side"
    "tags robot panel";
  gap: 24px 30px;
  align-items: center;
  overflow: hidden;
}

.easychat-ai-copy h2 {
  max-width: 360px;
}

.easychat-ai-robot {
  justify-self: center;
  width: min(100%, 260px);
  max-width: 260px;
  max-height: 360px;
  object-fit: contain;
}

.easychat-ai-panel {
  width: 100%;
  min-height: 0;
  align-self: stretch;
}

.easychat-ai-side {
  width: 100%;
}

.easychat-ai-tags {
  width: 100%;
  max-width: none;
}

@media (max-width: 1199.98px) {
  .easychat-ai-layout {
    grid-template-columns: minmax(280px, 1fr) minmax(230px, 300px);
    grid-template-areas:
      "copy robot"
      "tags robot"
      "panel side";
  }

  .easychat-ai-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .easychat-ai-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "robot"
      "panel"
      "side"
      "tags";
  }

  .easychat-ai-copy h2,
  .easychat-ai-copy > p {
    max-width: 620px;
  }

  .easychat-ai-robot {
    width: min(100%, 300px);
    max-width: 300px;
  }
}

@media (max-width: 575.98px) {
  .easychat-ai-robot {
    width: min(100%, 250px);
    max-width: 250px;
  }
}

/* EasyChat IA: composição compacta conforme mockup aprovado */
.easychat-ai-section {
  padding: 54px 0 62px;
}

.easychat-ai-section .container {
  max-width: 1200px;
}

.easychat-ai-layout {
  grid-template-columns: minmax(260px, 330px) minmax(210px, 245px) minmax(235px, 260px) minmax(240px, 270px);
  grid-template-areas:
    "copy robot panel side"
    "tags tags panel side";
  align-items: center;
  gap: 18px 22px;
  min-height: auto;
  padding: 30px 30px 26px;
  overflow: hidden;
}

.easychat-ai-copy {
  align-self: center;
}

.easychat-ai-copy h2 {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.14;
  letter-spacing: -.045em;
}

.easychat-ai-copy > p {
  max-width: 330px;
  font-size: 13.5px;
  line-height: 1.72;
}

.easychat-ai-robot {
  align-self: center;
  justify-self: center;
  width: min(100%, 235px);
  max-width: 235px;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(18, 109, 255, .16));
}

.easychat-ai-panel {
  align-self: stretch;
  min-height: 0;
  padding: 20px;
  border-radius: 17px;
}

.easychat-ai-panel header {
  margin-bottom: 22px;
  font-size: 13.5px;
}

.easychat-ai-panel header i {
  width: 34px;
  height: 34px;
  font-size: 20px;
}

.easychat-ai-panel header b {
  font-size: 20px;
}

.ai-message {
  margin-bottom: 20px !important;
  padding: 12px 15px;
  font-size: 12.5px;
  line-height: 1.45;
}

.easychat-ai-panel ul {
  gap: 11px;
  margin-bottom: 19px;
}

.easychat-ai-panel li {
  min-width: 0;
  width: 100%;
  padding: 10px 17px;
  font-size: 12.5px;
}

.easychat-ai-panel label {
  padding: 12px 14px;
  font-size: 12.5px;
}

.easychat-ai-side {
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.easychat-ai-side article {
  padding: 20px;
  border-radius: 17px;
}

.easychat-ai-side h3 {
  margin-bottom: 15px;
  font-size: 15px;
}

.ai-suggestion div {
  padding: 15px;
  border-radius: 12px;
}

.ai-suggestion small {
  margin-bottom: 9px;
  font-size: 12px;
}

.ai-suggestion p {
  margin-bottom: 16px;
  font-size: 12.5px;
  line-height: 1.48;
}

.ai-suggestion button {
  padding: 9px 14px;
  font-size: 12px;
}

.ai-suggestion div > i {
  right: 17px;
  bottom: 20px;
  font-size: 18px;
}

.sentiment-row strong {
  font-size: 24px;
}

.ai-sentiment progress {
  height: 9px;
  margin-bottom: 14px;
}

.ai-sentiment p {
  padding-top: 13px;
  font-size: 12px;
}

.ai-sentiment p i {
  font-size: 22px;
}

.easychat-ai-tags {
  align-self: end;
  width: 100%;
}

.easychat-ai-tags span {
  min-height: 74px;
  padding: 12px 8px 10px;
  font-size: 10.5px;
  line-height: 1.25;
}

.easychat-ai-tags i {
  font-size: 22px;
}

@media (max-width: 1199.98px) {
  .easychat-ai-layout {
    grid-template-columns: minmax(260px, 1fr) minmax(210px, 250px) minmax(250px, 1fr);
    grid-template-areas:
      "copy robot panel"
      "tags tags panel"
      "side side side";
  }

  .easychat-ai-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .easychat-ai-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "robot"
      "panel"
      "side"
      "tags";
  }

  .easychat-ai-copy h2,
  .easychat-ai-copy > p {
    max-width: 620px;
  }

  .easychat-ai-robot {
    width: min(100%, 285px);
    max-width: 285px;
  }
}

@media (max-width: 575.98px) {
  .easychat-ai-layout {
    padding: 24px 18px;
  }

  .easychat-ai-side,
  .easychat-ai-tags {
    grid-template-columns: 1fr;
  }

  .easychat-ai-tags span + span {
    border-left: 0;
    border-top: 1px solid #edf2fa;
  }
}

/* EasyChat IA: ocupar o enquadramento da página sem sobras laterais */
.easychat-ai-section .container {
  max-width: 1320px;
}

.easychat-ai-layout {
  grid-template-columns: minmax(300px, 365px) minmax(245px, 285px) minmax(270px, 300px) minmax(285px, 320px);
  gap: 22px 28px;
  padding: 34px 34px 28px;
}

.easychat-ai-copy h2 {
  max-width: 350px;
  font-size: clamp(27px, 2.15vw, 34px);
}

.easychat-ai-copy > p {
  max-width: 350px;
  font-size: 14px;
}

.easychat-ai-robot {
  width: min(100%, 270px);
  max-width: 270px;
  max-height: 340px;
}

.easychat-ai-panel,
.easychat-ai-side article {
  border-radius: 18px;
}

.easychat-ai-panel {
  padding: 22px;
}

.easychat-ai-side article {
  padding: 22px;
}

.easychat-ai-tags span {
  min-height: 80px;
  font-size: 11px;
}

@media (max-width: 1299.98px) {
  .easychat-ai-section .container {
    max-width: calc(100% - 64px);
  }

  .easychat-ai-layout {
    grid-template-columns: minmax(280px, 1fr) minmax(220px, 270px) minmax(250px, 290px) minmax(260px, 300px);
  }
}

@media (max-width: 1199.98px) {
  .easychat-ai-section .container {
    max-width: 960px;
  }

  .easychat-ai-layout {
    grid-template-columns: minmax(280px, 1fr) minmax(230px, 280px) minmax(280px, 1fr);
    grid-template-areas:
      "copy robot panel"
      "tags tags panel"
      "side side side";
  }
}

/* EasyChat: arte premium para benefícios e comparativo */
.easychat-results {
  padding: 48px 0 58px;
  background: #fff;
}

.easychat-results .container {
  max-width: 1320px;
}

.easychat-results-art {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 48px rgba(7, 27, 77, .08);
}

.easychat-results-art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .easychat-results {
    padding: 38px 0 46px;
  }

  .easychat-results-art {
    border-radius: 20px;
  }
}

/* EasyChat: benefícios e comparativo reconstruídos com textos reais */
.easychat-results {
  padding: 62px 0 70px;
  background: #fff;
}

.easychat-results-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 1320px;
}

.easychat-results-card {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 38px 36px 32px;
  border: 1px solid #e1eafa;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 27, 77, .055);
}

.easychat-results-copy {
  position: relative;
  z-index: 2;
  max-width: 395px;
}

.easychat-results-copy h2 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.easychat-results-copy p {
  margin: 0;
  color: #52678f;
  font-size: 16px;
  line-height: 1.72;
}

.results-robot {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 24px;
  width: min(43%, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(18, 109, 255, .12));
}

.easychat-benefits-card .easychat-benefit-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  max-width: 520px;
  margin: 60px 0 26px;
}

.easychat-benefit-list p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 750;
}

.easychat-benefit-list i {
  color: var(--brand-orange);
  font-size: 19px;
}

.easychat-metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: #f1f7ff;
}

.easychat-metric-grid p {
  margin: 0;
  padding: 16px 13px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(7, 27, 77, .04);
}

.easychat-metric-grid i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 11px;
  border-radius: 50%;
  color: var(--brand-blue);
  background: #edf5ff;
  font-size: 23px;
}

.easychat-metric-grid small,
.easychat-metric-grid strong,
.easychat-metric-grid em {
  display: block;
}

.easychat-metric-grid small {
  color: #65779b;
  font-size: 11px;
}

.easychat-metric-grid strong {
  margin: 6px 0 7px;
  color: var(--brand-dark);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.easychat-metric-grid em {
  color: #16a34a;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.easychat-benefits-media {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
}

.easychat-benefits-media > img {
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  object-position: left bottom;
}

.benefits-callout {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 125px;
  padding: 18px;
  border: 1px solid #e6eefb;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 25px rgba(7, 27, 77, .05);
}

.benefits-callout i {
  flex: 0 0 auto;
  color: var(--brand-blue);
  font-size: 34px;
}

.benefits-callout strong {
  color: var(--brand-dark);
  font-size: 17px;
  line-height: 1.35;
}

.benefits-callout span {
  color: var(--brand-orange);
}

.easychat-comparison-card .easychat-results-copy {
  max-width: 570px;
}

.easychat-comparison-card .easychat-results-copy h2 {
  font-size: clamp(31px, 2.6vw, 42px);
}

.comparison-chart {
  position: absolute;
  top: 62px;
  right: 38px;
  width: 150px;
  height: auto;
}

.easychat-comparison-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 16px;
  margin-top: 70px;
}

.comparison-column {
  overflow: hidden;
  min-height: 460px;
  border-radius: 20px;
  background: #fff;
}

.comparison-column h3 {
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 0 0 20px;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 850;
}

.comparison-column h3 > img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.comparison-column p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 24px 18px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.comparison-column p i {
  flex: 0 0 auto;
  font-size: 20px;
}

.comparison-column > img {
  display: block;
  width: min(88%, 285px);
  height: auto;
  max-height: 210px;
  margin: 20px auto 0;
  object-fit: contain;
}

.comparison-old {
  border: 1px solid #fadede;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 55%);
}

.comparison-old h3 {
  color: #ff4242;
  background: #fff0f0;
}

.comparison-old p i {
  color: #ff4b4b;
}

.comparison-new {
  border: 1px solid #d4e4ff;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 55%);
}

.comparison-new h3 {
  color: var(--brand-blue);
  background: #edf5ff;
}

.comparison-new p i {
  color: #2ebd55;
}

@media (max-width: 1199.98px) {
  .easychat-results-showcase {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 767.98px) {
  .easychat-results-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .results-robot,
  .comparison-chart {
    position: static;
    display: block;
    width: min(100%, 260px);
    margin: 22px auto;
  }

  .easychat-benefits-card .easychat-benefit-list,
  .easychat-metric-grid,
  .easychat-comparison-board,
  .easychat-benefits-media {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-card .easychat-benefit-list,
  .easychat-comparison-board {
    margin-top: 28px;
  }

  .easychat-benefits-media {
    position: static;
    margin-top: 26px;
  }

  .comparison-column {
    min-height: auto;
  }
}

/* EasyChat resultados: refinamento visual no padrão EasyVoice */
.easychat-results-showcase {
  max-width: 1240px;
  gap: 26px;
}

.easychat-results-card {
  min-height: 680px;
  padding: 34px 32px 30px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(7, 27, 77, .05);
}

.easychat-results-copy {
  max-width: 360px;
}

.easychat-results-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.12;
}

.easychat-results-copy p {
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.7;
}

.results-robot {
  top: 35px;
  right: 42px;
  width: min(34%, 210px);
  max-height: 255px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(18, 109, 255, .14));
}

.easychat-benefits-card .easychat-benefit-list {
  max-width: 500px;
  margin: 50px 0 24px;
  gap: 13px 24px;
}

.easychat-benefit-list p {
  font-size: 13.5px;
  line-height: 1.35;
}

.easychat-metric-grid {
  gap: 9px;
  padding: 9px;
  border-radius: 17px;
}

.easychat-metric-grid p {
  padding: 14px 12px;
}

.easychat-metric-grid i {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  font-size: 20px;
}

.easychat-metric-grid strong {
  font-size: 22px;
}

.easychat-metric-grid em {
  font-size: 11px;
  line-height: 1.35;
}

.easychat-benefits-media {
  left: 28px;
  right: 28px;
  bottom: 24px;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 16px;
}

.easychat-benefits-media > img {
  max-height: 210px;
}

.benefits-callout {
  min-height: 112px;
  padding: 16px;
}

.benefits-callout strong {
  font-size: 15.5px;
}

.easychat-comparison-card .easychat-results-copy {
  max-width: 430px;
}

.easychat-comparison-card .easychat-results-copy h2 {
  max-width: 330px;
  font-size: clamp(29px, 2.35vw, 36px);
}

.easychat-comparison-card .easychat-results-copy p {
  max-width: 430px;
}

.comparison-chart {
  top: 78px;
  right: 34px;
  width: 112px;
  opacity: .95;
}

.easychat-comparison-board {
  gap: 14px;
  margin-top: 54px;
}

.comparison-column {
  min-height: 430px;
  border-radius: 18px;
}

.comparison-column h3 {
  padding: 19px 21px;
  font-size: 17px;
}

.comparison-column p {
  margin: 0 21px 15px;
  font-size: 13.5px;
}

.comparison-column > img {
  width: min(84%, 245px);
  max-height: 170px;
  margin-top: 16px;
}

@media (max-width: 1199.98px) {
  .easychat-results-showcase {
    max-width: 760px;
  }

  .results-robot {
    width: min(32%, 200px);
  }
}

@media (max-width: 767.98px) {
  .easychat-results-card {
    padding: 28px 22px;
  }

  .results-robot {
    width: min(100%, 230px);
    max-height: none;
  }

  .comparison-chart {
    width: min(100%, 135px);
  }
}

/* EasyChat resultados: correcoes de composicao dos destaques */
.easychat-benefits-card {
  min-height: 705px;
}

.easychat-benefits-media {
  left: 30px;
  right: 30px;
  bottom: 26px;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: end;
}

.easychat-benefits-media > img {
  width: min(100%, 330px);
  max-height: 185px;
  object-position: left bottom;
}

.benefits-callout {
  align-self: end;
  min-height: 118px;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 0%, #f6faff 100%);
  box-shadow: 0 12px 28px rgba(7, 27, 77, .06);
}

.benefits-callout i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef5ff;
  font-size: 23px;
}

.benefits-callout strong {
  font-size: 14.5px;
  line-height: 1.28;
}

.comparison-chart {
  display: none;
}

.comparison-growth-visual {
  position: absolute;
  top: 66px;
  right: 30px;
  z-index: 1;
  width: 96px;
  height: 86px;
  border-radius: 22px;
  background: radial-gradient(circle at 65% 18%, rgba(255, 122, 27, .16), transparent 35%),
    linear-gradient(145deg, rgba(236, 245, 255, .9), rgba(255, 255, 255, .86));
}

.growth-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 31px;
  height: 28px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 27, 77, .12);
}

.growth-bubble i {
  font-size: 16px;
}

.growth-bubble-blue {
  top: 4px;
  right: 8px;
  background: linear-gradient(135deg, #4c8dff, #0b63ff);
}

.growth-bubble-orange {
  top: 30px;
  left: 5px;
  background: linear-gradient(135deg, #ff9d2f, #ff6b1a);
}

.growth-bars {
  position: absolute;
  right: 11px;
  bottom: 12px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.growth-bars b {
  display: block;
  width: 13px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #69a7ff, #116dff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.growth-bars b:nth-child(1) {
  height: 24px;
}

.growth-bars b:nth-child(2) {
  height: 39px;
}

.growth-bars b:nth-child(3) {
  height: 56px;
}

.comparison-growth-visual > .ph-trend-up {
  position: absolute;
  right: 4px;
  bottom: 13px;
  color: var(--brand-orange);
  font-size: 62px;
  line-height: 1;
  transform: rotate(-4deg);
  filter: drop-shadow(0 4px 8px rgba(255, 107, 26, .18));
}

@media (max-width: 1199.98px) {
  .easychat-benefits-card {
    min-height: 720px;
  }

  .easychat-benefits-media {
    grid-template-columns: minmax(0, 1fr) 155px;
  }

  .easychat-benefits-media > img {
    width: min(100%, 360px);
  }
}

@media (max-width: 767.98px) {
  .easychat-benefits-card {
    min-height: auto;
  }

  .easychat-benefits-media {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .easychat-benefits-media > img {
    width: min(100%, 340px);
    margin: 0 auto;
    object-position: center;
  }

  .benefits-callout {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .comparison-growth-visual {
    position: static;
    width: 130px;
    margin: 18px auto 0;
  }
}

/* EasyChat resultados: substituicao dos recortes por arte limpa */
.easychat-benefits-card {
  min-height: 720px;
}

.easychat-benefits-media {
  left: 30px;
  right: 30px;
  bottom: 26px;
  grid-template-columns: minmax(0, 300px) minmax(138px, 150px);
  gap: 20px;
  align-items: end;
}

.easychat-benefits-media > img {
  display: none;
}

.benefits-dashboard-visual {
  position: relative;
  width: 100%;
  height: 132px;
  align-self: end;
}

.dash-laptop {
  position: absolute;
  left: 48px;
  right: 0;
  bottom: 0;
  height: 112px;
  border: 8px solid #06183a;
  border-bottom-width: 14px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 14px 26px rgba(7, 27, 77, .12);
}

.dash-laptop::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  bottom: -20px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #9facbf 18%, #e6ebf3 50%, #9facbf 82%, transparent);
}

.dash-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  background: linear-gradient(180deg, #061a46, #0a285f);
}

.dash-panel {
  position: absolute;
  top: 16px;
  height: 22px;
  border-radius: 8px;
  background: #eef5ff;
}

.dash-panel-a {
  left: 44px;
  width: 58px;
}

.dash-panel-b {
  left: 112px;
  width: 58px;
}

.dash-line {
  position: absolute;
  left: 45px;
  bottom: 22px;
  width: 96px;
  height: 42px;
  border-radius: 10px;
  background:
    linear-gradient(140deg, transparent 39%, #0b63ff 40%, #0b63ff 44%, transparent 45%),
    linear-gradient(25deg, transparent 52%, #ff7a1b 53%, #ff7a1b 57%, transparent 58%),
    repeating-linear-gradient(90deg, #e7f0ff 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, #e7f0ff 0 1px, transparent 1px 14px);
}

.dash-donut {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(#0b63ff 0 42%, #ff7a1b 42% 66%, #35c86f 66% 100%);
}

.dash-donut::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: #fff;
}

.dash-phone {
  position: absolute;
  left: 0;
  bottom: 7px;
  z-index: 2;
  width: 54px;
  height: 94px;
  border: 7px solid #071b43;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(7, 27, 77, .13);
}

.dash-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: #c8d6ee;
  transform: translateX(-50%);
}

.dash-phone b {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 8px;
  border-radius: 999px;
  background: #dff5ea;
}

.dash-phone b:nth-child(1) {
  top: 23px;
}

.dash-phone b:nth-child(2) {
  top: 42px;
}

.dash-phone b:nth-child(3) {
  top: 61px;
}

.benefits-callout {
  min-height: 118px;
  padding: 16px;
  border-color: #dce9fb;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 27, 77, .055);
}

.comparison-growth-visual {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.comparison-growth-visual::before {
  content: "";
  position: absolute;
  inset: 18px 12px 4px 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(236, 245, 255, .88), rgba(255, 255, 255, .08));
  z-index: -1;
}

@media (max-width: 767.98px) {
  .easychat-benefits-card {
    min-height: auto;
  }

  .easychat-benefits-media {
    grid-template-columns: 1fr;
  }

  .benefits-dashboard-visual {
    width: min(100%, 310px);
    margin: 0 auto;
  }
}

/* EasyChat CTA final em arte única */
.easychat-final-cta {
  padding: 52px 0 64px;
  background: #fff;
}

.easychat-final-cta .container {
  max-width: 1320px;
}

.easychat-final-art {
  display: block;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(7, 27, 77, .11);
}

.easychat-final-art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .easychat-final-cta {
    padding: 42px 0 52px;
  }

  .easychat-final-art {
    border-radius: 22px;
  }
}

/* EasyChat Enterprise Rebuild */
.ecx-page {
  --ecx-ink: #061743;
  --ecx-blue: #126dff;
  --ecx-blue-2: #5aa2ff;
  --ecx-orange: #ff6b1a;
  --ecx-green: #13b981;
  --ecx-muted: #60708e;
  --ecx-line: rgba(18, 109, 255, .14);
  --ecx-soft: #f6faff;
  --ecx-shadow: 0 32px 96px rgba(6, 23, 67, .12);
  overflow: hidden;
  color: var(--ecx-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 109, 255, .12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
}

.ecx-page h1,
.ecx-page h2,
.ecx-page h3,
.ecx-page p {
  margin: 0;
}

.ecx-page p {
  color: var(--ecx-muted);
}

.ecx-section {
  padding: 96px 0;
}

.ecx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ecx-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.ecx-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ecx-blue);
  box-shadow: 0 0 24px rgba(18, 109, 255, .64);
}

.ecx-section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.ecx-section-head.compact {
  margin-bottom: 48px;
}

.ecx-section-head h2,
.ecx-split h2,
.ecx-results h2,
.ecx-compare h2,
.ecx-integrations h2,
.ecx-final h2 {
  color: var(--ecx-ink);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.ecx-section-head p,
.ecx-split p,
.ecx-results p,
.ecx-compare p,
.ecx-integrations p,
.ecx-final p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
}

.ecx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ecx-btn:hover {
  transform: translateY(-2px);
}

.ecx-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ecx-orange), #ff8f2f);
  box-shadow: 0 24px 48px rgba(255, 107, 26, .28);
}

.ecx-btn-ghost {
  color: var(--ecx-ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(18, 109, 255, .16);
  box-shadow: 0 16px 48px rgba(6, 23, 67, .06);
}

.ecx-hero {
  position: relative;
  padding: 96px 0 128px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, .72), rgba(255, 255, 255, .96)),
    radial-gradient(circle at 76% 24%, rgba(18, 109, 255, .2), transparent 32%),
    radial-gradient(circle at 96% 78%, rgba(255, 107, 26, .12), transparent 28%);
}

.ecx-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(48px);
  opacity: .7;
}

.ecx-orb-blue {
  width: 360px;
  height: 360px;
  right: 18%;
  top: 64px;
  background: rgba(18, 109, 255, .24);
}

.ecx-orb-orange {
  width: 280px;
  height: 280px;
  right: -64px;
  bottom: 64px;
  background: rgba(255, 107, 26, .2);
}

.ecx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.ecx-hero-copy h1 {
  max-width: 640px;
  color: var(--ecx-ink);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.075em;
}

.ecx-hero-copy p {
  max-width: 600px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
}

.ecx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.ecx-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
  margin-top: 48px;
}

.ecx-proof span {
  padding: 16px;
  border: 1px solid var(--ecx-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 48px rgba(6, 23, 67, .05);
  color: var(--ecx-muted);
  font-size: 12px;
  font-weight: 700;
}

.ecx-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ecx-ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.ecx-hero-stage {
  position: relative;
  min-height: 640px;
}

.ecx-glow-card {
  border: 1px solid rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(246, 250, 255, .76));
  box-shadow: var(--ecx-shadow);
  backdrop-filter: blur(24px);
}

.ecx-dashboard {
  position: absolute;
  inset: 32px 0 0;
  padding: 24px;
  border-radius: 32px;
}

.ecx-dashboard::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 62% 18%, rgba(18, 109, 255, .24), transparent 32%),
    radial-gradient(circle at 94% 76%, rgba(255, 107, 26, .18), transparent 28%);
  filter: blur(24px);
}

.ecx-dashboard-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ecx-dashboard-top img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.ecx-dashboard-top b,
.ecx-dashboard-top span {
  display: block;
}

.ecx-dashboard-top b {
  font-size: 18px;
  font-weight: 900;
}

.ecx-dashboard-top span {
  color: var(--ecx-muted);
  font-size: 13px;
}

.ecx-dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.ecx-dashboard-kpis span {
  padding: 16px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  background: #fff;
}

.ecx-dashboard-kpis small,
.ecx-dashboard-kpis strong,
.ecx-dashboard-kpis em {
  display: block;
}

.ecx-dashboard-kpis small {
  color: var(--ecx-muted);
  font-size: 12px;
}

.ecx-dashboard-kpis strong {
  margin-top: 8px;
  color: var(--ecx-ink);
  font-size: 28px;
  font-weight: 900;
}

.ecx-dashboard-kpis em {
  color: var(--ecx-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ecx-dashboard-body {
  display: grid;
  grid-template-columns: 72px .9fr 1.1fr;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 32px;
  background: #fff;
}

.ecx-dashboard-body aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  background: linear-gradient(180deg, #061743, #0a2d7a);
}

.ecx-dashboard-body aside b {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
}

.ecx-inbox {
  padding: 24px 16px;
  border-right: 1px solid rgba(18, 109, 255, .12);
}

.ecx-inbox p {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 24px;
  background: #f7fbff;
}

.ecx-inbox p.active {
  background: #eaf3ff;
}

.ecx-inbox i,
.ecx-chat-panel header i {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #35c86f, #13b981);
}

.ecx-inbox span,
.ecx-inbox small,
.ecx-chat-panel span,
.ecx-chat-panel small {
  display: block;
}

.ecx-inbox span {
  color: var(--ecx-ink);
  font-size: 13px;
  font-weight: 900;
}

.ecx-inbox small {
  margin-top: 4px;
  color: var(--ecx-muted);
  font-size: 11px;
  font-weight: 600;
}

.ecx-chat-panel {
  padding: 24px;
}

.ecx-chat-panel header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ecx-chat-panel header span {
  color: var(--ecx-ink);
  font-size: 14px;
  font-weight: 900;
}

.ecx-chat-panel header small {
  color: var(--ecx-green);
  font-size: 12px;
}

.ecx-chat-panel .in,
.ecx-chat-panel .out {
  max-width: 88%;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 24px;
  font-size: 13px;
  line-height: 1.5;
}

.ecx-chat-panel .in {
  background: #f1f5fb;
}

.ecx-chat-panel .out {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--ecx-blue), #4c8dff);
}

.ecx-channel {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 24px 48px rgba(6, 23, 67, .18);
}

.ecx-whatsapp {
  right: -16px;
  top: 160px;
  background: #22c55e;
}

.ecx-instagram {
  left: -16px;
  top: 240px;
  background: linear-gradient(135deg, #ff7a1b, #d62976, #4f5bd5);
}

.ecx-messenger {
  right: 48px;
  bottom: 24px;
  background: #126dff;
}

.ecx-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ecx-problem {
  background: #fff;
}

.ecx-problem-panel {
  padding: 48px;
  border: 1px solid var(--ecx-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 107, 26, .08), transparent 32%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 64px rgba(6, 23, 67, .06);
}

.ecx-problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.ecx-problem-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  color: var(--ecx-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.ecx-problem-list i {
  color: var(--ecx-orange);
  font-size: 24px;
}

.ecx-solution {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.ecx-feature-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ecx-feature-editorial article {
  min-height: 420px;
  padding: 32px;
  border: 1px solid var(--ecx-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 64px rgba(6, 23, 67, .06);
}

.ecx-feature-editorial article.featured {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .24), transparent 32%),
    linear-gradient(145deg, #071b4d, #126dff);
  transform: translateY(-24px);
}

.ecx-feature-editorial i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  border-radius: 20px;
  color: var(--ecx-blue);
  background: #eef5ff;
  font-size: 28px;
}

.ecx-feature-editorial .featured i {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.ecx-feature-editorial h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.ecx-feature-editorial p {
  min-height: 112px;
  font-size: 15px;
  line-height: 1.7;
}

.ecx-feature-editorial .featured p {
  color: rgba(255, 255, 255, .78);
}

.ecx-feature-editorial ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ecx-feature-editorial li {
  color: var(--ecx-ink);
  font-size: 13px;
  font-weight: 800;
}

.ecx-feature-editorial .featured li {
  color: #fff;
}

.ecx-flow {
  background: #fff;
}

.ecx-flow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ecx-flow-line article {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--ecx-line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(6, 23, 67, .05);
}

.ecx-flow-line b {
  position: absolute;
  top: -16px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--ecx-blue);
}

.ecx-flow-line i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: var(--ecx-blue);
  background: #eef5ff;
  font-size: 28px;
}

.ecx-flow-line h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
}

.ecx-flow-line p {
  font-size: 14px;
  line-height: 1.6;
}

.ecx-ai {
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 109, 255, .14), transparent 34%),
    linear-gradient(135deg, #eef4ff, #f7fbff 56%, #fff);
}

.ecx-ai-grid {
  display: grid;
  grid-template-columns: .9fr .8fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 64px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 48px;
  background: rgba(255, 255, 255, .44);
  box-shadow: 0 32px 96px rgba(6, 23, 67, .08);
}

.ecx-ai-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.ecx-ai-copy p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.72;
}

.ecx-ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.ecx-ai-pills span {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ecx-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ecx-ai-robot-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.ecx-ai-robot-wrap::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 109, 255, .22), transparent 64%);
  filter: blur(16px);
}

.ecx-ai-robot-wrap img {
  position: relative;
  width: min(100%, 320px);
  filter: drop-shadow(0 32px 48px rgba(18, 109, 255, .22));
}

.ecx-ai-console {
  padding: 32px;
  border: 1px solid var(--ecx-line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(6, 23, 67, .08);
}

.ecx-ai-console header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.ecx-ai-console header i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--ecx-blue);
  background: #eef5ff;
  font-size: 24px;
}

.ecx-ai-console b,
.ecx-ai-console span {
  display: block;
}

.ecx-ai-console b {
  font-size: 18px;
  font-weight: 900;
}

.ecx-ai-console span {
  color: var(--ecx-green);
  font-size: 13px;
}

.ecx-ai-console .suggestion {
  padding: 24px;
  border-radius: 24px;
  background: #f2f7ff;
  color: var(--ecx-ink);
  font-size: 15px;
  line-height: 1.6;
}

.ecx-sentiment {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.ecx-sentiment span {
  color: var(--ecx-muted);
}

.ecx-sentiment strong {
  color: var(--ecx-green);
  font-size: 32px;
  font-weight: 900;
}

.ecx-progress {
  overflow: hidden;
  height: 8px;
  margin: 16px 0 32px;
  border-radius: 999px;
  background: #e8eef7;
}

.ecx-progress b {
  display: block;
  width: 92%;
  height: 100%;
  background: var(--ecx-green);
}

.ecx-ai-console button {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--ecx-blue);
  font-weight: 900;
}

.ecx-results {
  background: #fff;
}

.ecx-results-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.ecx-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ecx-metrics article {
  min-height: 220px;
  padding: 32px 24px;
  border: 1px solid var(--ecx-line);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 24px 64px rgba(6, 23, 67, .05);
}

.ecx-metrics i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 16px;
  color: var(--ecx-blue);
  background: #eef5ff;
  font-size: 24px;
}

.ecx-metrics strong,
.ecx-metrics span {
  display: block;
}

.ecx-metrics strong {
  color: var(--ecx-ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.ecx-metrics span {
  margin-top: 8px;
  color: var(--ecx-muted);
  font-size: 13px;
  font-weight: 700;
}

.ecx-compare {
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.ecx-compare-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: center;
}

.ecx-compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ecx-compare-board article {
  padding: 32px;
  border-radius: 32px;
}

.ecx-compare-board .old {
  border: 1px solid rgba(239, 68, 68, .18);
  background: #fff5f5;
}

.ecx-compare-board .new {
  border: 1px solid rgba(18, 109, 255, .18);
  background: #eef6ff;
}

.ecx-compare-board h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 900;
}

.ecx-compare-board p {
  margin-top: 16px;
  color: var(--ecx-ink);
  font-size: 15px;
  font-weight: 800;
}

.ecx-compare-board .old i {
  color: #ef4444;
}

.ecx-compare-board .new i {
  color: var(--ecx-green);
}

.ecx-integrations {
  background: #fff;
}

.ecx-integrations-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.ecx-hub {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 480px;
  padding: 48px;
  border: 1px solid var(--ecx-line);
  border-radius: 48px;
  background:
    radial-gradient(circle at center, rgba(18, 109, 255, .12), transparent 34%),
    linear-gradient(145deg, #fff, #f6faff);
  box-shadow: 0 32px 96px rgba(6, 23, 67, .08);
}

.ecx-hub::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 109, 255, .34), transparent);
  transform: translate(-50%, -50%);
}

.ecx-hub-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(18, 109, 255, .16);
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(18, 109, 255, .12);
  transform: translate(-50%, -50%);
}

.ecx-hub-core img {
  width: 128px;
}

.ecx-hub span {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: center;
  min-height: 64px;
  padding: 16px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 24px;
  color: var(--ecx-ink);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 48px rgba(6, 23, 67, .05);
  font-size: 14px;
  font-weight: 900;
}

.ecx-hub span i {
  color: var(--ecx-blue);
  font-size: 24px;
}

.ecx-final {
  padding: 96px 0;
  background: #fff;
}

.ecx-final-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px;
  align-items: center;
  min-height: 360px;
  padding: 48px 64px;
  border-radius: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 48%, rgba(90, 162, 255, .36), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(255, 107, 26, .32), transparent 28%),
    linear-gradient(135deg, #061743 0%, #0b4ec8 55%, #ff6b1a 140%);
  box-shadow: 0 32px 96px rgba(6, 23, 67, .18);
}

.ecx-final-card img {
  width: 220px;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, .24));
}

.ecx-final-card h2 {
  color: #fff;
  max-width: 760px;
}

.ecx-final-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.ecx-final-card .ecx-kicker {
  color: #9cc7ff;
}

.ecx-mobile-cta {
  display: none;
}

/* EasyChat About: textos reais em HTML, imagens apenas como apoio visual */
.easychat-about {
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(18, 109, 255, .07), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 107, 26, .05), transparent 26%),
    #ffffff;
}

.easychat-section-header {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.easychat-section-header h2 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.easychat-section-header p {
  max-width: 900px;
  margin: 0 auto;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.easychat-section-header strong {
  color: #071b4d;
  font-weight: 800;
}

.easychat-about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.easychat-about-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 32px;
  border: 1px solid rgba(18, 109, 255, .12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 27, 77, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.easychat-about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 109, 255, .28);
  box-shadow: 0 32px 90px rgba(7, 27, 77, .12);
}

.easychat-about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 36px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(18, 109, 255, .08), transparent 62%),
    #f8fbff;
  overflow: hidden;
}

.easychat-about-image img {
  width: 100%;
  max-width: 300px;
  height: 190px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(7, 27, 77, .10));
}

.easychat-about-card h3 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.easychat-about-card p {
  margin: 0;
  color: #071b4d;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 1199.98px) {
  .easychat-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .easychat-about-card {
    min-height: 480px;
  }
}

@media (max-width: 767.98px) {
  .easychat-about {
    padding: 72px 0;
  }

  .easychat-section-header {
    margin-bottom: 40px;
    text-align: left;
  }

  .easychat-section-header h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .easychat-section-header p {
    font-size: 16px;
  }

  .easychat-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .easychat-about-card {
    min-height: auto;
    padding: 28px;
  }

  .easychat-about-image {
    height: 200px;
    margin-bottom: 28px;
  }

  .easychat-about-card h3 {
    font-size: 24px;
  }

  .easychat-about-card p {
    font-size: 16px;
  }
}

.ecx-hero-art {
  display: grid;
  place-items: center;
  min-height: auto;
  margin: 0;
}

.ecx-hero-art img {
  width: min(118%, 980px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 32px 72px rgba(6, 23, 67, .16));
}

/* EasyChat hero: textos em HTML e arte apenas como apoio visual */
.ecx-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
}

.ecx-hero-copy {
  max-width: 620px;
}

.ecx-hero-copy h1 {
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.ecx-hero-copy h1 strong {
  color: var(--ecx-orange);
}

.ecx-hero-copy p {
  max-width: 560px;
  margin-top: 24px;
  margin-bottom: 0;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.ecx-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
  margin-top: 48px;
}

.ecx-highlights div {
  padding: 16px 12px;
  border: 1px solid rgba(18, 109, 255, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 16px 48px rgba(6, 23, 67, .05);
}

.ecx-highlights i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--ecx-blue);
  background: #eef5ff;
  font-size: 26px;
}

.ecx-highlights strong,
.ecx-highlights span {
  display: block;
}

.ecx-highlights strong {
  color: var(--ecx-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.ecx-highlights span {
  margin-top: 6px;
  color: var(--ecx-muted);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
}

.ecx-hero-art img {
  width: 100%;
  max-width: 860px;
  object-fit: contain;
  object-position: center right;
}

@media (max-width: 1199.98px) {
  .ecx-hero-grid,
  .ecx-split,
  .ecx-ai-grid,
  .ecx-results-grid,
  .ecx-compare-grid,
  .ecx-integrations-grid {
    grid-template-columns: 1fr;
  }

  .ecx-hero-stage {
    min-height: 620px;
  }

  .ecx-hero-art {
    min-height: auto;
  }

  .ecx-hero-art img {
    width: min(100%, 900px);
  }

  .ecx-feature-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecx-feature-editorial article.featured {
    transform: none;
  }

  .ecx-flow-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecx-results-grid,
  .ecx-compare-grid,
  .ecx-integrations-grid {
    gap: 48px;
  }

  .ecx-final-card {
    grid-template-columns: 160px 1fr;
  }

  .ecx-final-card .ecx-btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 991.98px) {
  .ecx-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .ecx-hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .ecx-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .ecx-actions {
    justify-content: center;
  }

  .ecx-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .ecx-hero-art img {
    max-width: 760px;
    object-position: center;
  }
}

@media (max-width: 767.98px) {
  .ecx-section,
  .ecx-final {
    padding: 64px 0;
  }

  .ecx-hero {
    padding: 64px 0 96px;
  }

  .ecx-hero-copy h1,
  .ecx-section-head h2,
  .ecx-split h2,
  .ecx-results h2,
  .ecx-compare h2,
  .ecx-integrations h2,
  .ecx-final h2,
  .ecx-ai-copy h2 {
    font-size: clamp(36px, 12vw, 48px);
    line-height: 1;
  }

  .ecx-hero-copy p,
  .ecx-section-head p,
  .ecx-split p,
  .ecx-results p,
  .ecx-compare p,
  .ecx-integrations p,
  .ecx-final p,
  .ecx-ai-copy p {
    font-size: 16px;
  }

  .ecx-actions,
  .ecx-proof,
  .ecx-problem-list,
  .ecx-feature-editorial,
  .ecx-flow-line,
  .ecx-metrics,
  .ecx-compare-board {
    grid-template-columns: 1fr;
  }

  .ecx-actions {
    display: grid;
  }

  .ecx-highlights {
    grid-template-columns: 1fr;
  }

  .ecx-btn {
    width: 100%;
  }

  .ecx-hero-stage {
    min-height: 560px;
  }

  .ecx-hero-art {
    min-height: auto;
  }

  .ecx-hero-art img {
    width: min(112%, 640px);
  }

  .ecx-dashboard {
    inset: 0;
    padding: 16px;
    border-radius: 32px;
  }

  .ecx-dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .ecx-dashboard-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ecx-dashboard-body aside {
    display: none;
  }

  .ecx-inbox {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 109, 255, .12);
  }

  .ecx-chat-panel .in,
  .ecx-chat-panel .out {
    max-width: 100%;
  }

  .ecx-channel {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    font-size: 24px;
  }

  .ecx-problem-panel,
  .ecx-ai-grid,
  .ecx-hub,
  .ecx-final-card {
    padding: 32px 24px;
    border-radius: 32px;
  }

  .ecx-feature-editorial article {
    min-height: auto;
  }

  .ecx-flow-line {
    gap: 32px;
  }

  .ecx-ai-grid {
    gap: 32px;
  }

  .ecx-ai-robot-wrap {
    order: -1;
  }

  .ecx-ai-robot-wrap img {
    width: min(100%, 240px);
  }

  .ecx-metrics {
    gap: 16px;
  }

  .ecx-metrics article {
    min-height: auto;
  }

  .ecx-hub {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ecx-hub::before {
    display: none;
  }

  .ecx-hub-core {
    position: static;
    width: 100%;
    height: auto;
    padding: 24px;
    transform: none;
  }

  .ecx-final-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ecx-final-card img {
    width: 180px;
    margin: 0 auto;
  }

  .ecx-final-card .ecx-btn {
    grid-column: auto;
  }

  .ecx-mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff6b1a, #ff8f2f);
    box-shadow: 0 24px 48px rgba(255, 107, 26, .32);
    font-weight: 900;
    text-decoration: none;
  }
}

/* EasyChat UI/UX audit overrides - final layer */
:root {
  --easychat-blue-dark: #071b4d;
  --easychat-blue: #126dff;
  --easychat-orange: #ff6b1a;
  --easychat-muted: #53627f;
  --easychat-bg: #f8fbff;
  --easychat-border: rgba(18, 109, 255, 0.14);
  --easychat-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --easychat-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
  --easychat-radius: 24px;
  --easychat-radius-lg: 32px;
}

main.ecx-page .container,
section.easychat-final-cta > .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.ecx-page h1,
.ecx-page h2,
.ecx-page h3,
.easychat-final-cta h2 {
  text-wrap: balance;
}

.easychat-about,
.easychat-problems-section,
.easychat-features-section,
.easychat-steps-section,
.easychat-ai-section,
.easychat-segments-section,
.easychat-results-section,
.easychat-integrations-section,
section.easychat-final-cta {
  padding-top: 96px;
  padding-bottom: 96px;
}

.easychat-about-card,
.easychat-problem-card,
.easychat-feature-card,
.easychat-step-card,
.easychat-segment-card,
.easychat-benefits-card,
.easychat-comparison-card,
.easychat-integrations-card,
.easychat-ai-assistant-card,
.easychat-ai-suggestion-card,
.easychat-ai-sentiment-card {
  border: 1px solid var(--easychat-border);
  border-radius: var(--easychat-radius);
  background: #ffffff;
  box-shadow: var(--easychat-shadow);
}

.easychat-about-card:hover,
.easychat-problem-card:hover,
.easychat-feature-card:hover,
.easychat-step-card:hover,
.easychat-segment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 109, 255, 0.28);
  box-shadow: var(--easychat-shadow-lg);
}

.easychat-section-header h2,
.easychat-problems-copy h2,
.easychat-segments-copy h2,
.easychat-benefits-card h2,
.easychat-comparison-card h2,
.easychat-integrations-copy h2,
.easychat-ai-copy h2,
.easychat-final-cta-copy h2 {
  color: var(--easychat-blue-dark);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.easychat-section-header p,
.easychat-problems-copy p,
.easychat-segments-copy p,
.easychat-integrations-copy p,
.easychat-ai-copy p,
.easychat-final-cta-copy p {
  color: var(--easychat-muted);
  line-height: 1.7;
}

.easychat-segment-card h3,
.easychat-segment-card p,
.easychat-feature-card h3,
.easychat-feature-card p,
.easychat-problem-card h3,
.easychat-problem-card p,
.easychat-step-card h3,
.easychat-step-card p,
.easychat-about-card h3,
.easychat-about-card p {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.ecx-hero {
  padding: 96px 0;
  overflow: visible;
}

.ecx-hero-grid {
  grid-template-columns: minmax(420px, .88fr) minmax(680px, 1.12fr);
  align-items: center;
  gap: 72px;
}

.ecx-hero-stage.easychat-dashboard-frame {
  min-height: auto;
  max-width: 920px;
  overflow: visible;
  padding: 8px;
}

.easychat-dashboard-image {
  max-width: 920px;
  overflow: visible;
}

.ecx-highlights {
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 16px;
}

.easychat-about-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.easychat-about-card {
  min-height: 470px;
  padding: 28px;
}

.easychat-about-image {
  height: 200px;
}

.easychat-problems-layout {
  grid-template-columns: minmax(280px, .45fr) minmax(720px, 1.55fr);
  gap: 64px;
}

.easychat-problems-grid {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px;
}

.easychat-problem-card {
  min-height: 188px;
  padding: 28px;
}

.easychat-features-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.easychat-feature-card {
  min-height: 230px;
  padding: 28px;
}

.easychat-steps-grid {
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 24px;
}

.easychat-step-card {
  min-height: 265px;
}

.easychat-ai-panel {
  grid-template-columns: minmax(260px, .95fr) minmax(220px, .75fr) minmax(280px, .9fr) minmax(280px, .9fr);
  gap: 32px;
}

.easychat-ai-robot {
  max-width: 320px;
}

.easychat-ai-benefits {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.easychat-segments-section {
  padding: 104px 0;
  background: #ffffff;
}

.easychat-segments-layout {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(760px, 1.58fr);
  gap: 64px;
  align-items: start;
}

.easychat-segments-copy {
  position: sticky;
  top: 120px;
  max-width: 360px;
}

.easychat-segments-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--easychat-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.easychat-segments-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 3.5vw, 54px);
}

.easychat-segments-copy p {
  margin: 0;
  font-size: 18px;
}

.easychat-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 24px;
}

.easychat-segment-card {
  min-height: 220px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.easychat-segment-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--easychat-blue);
  background: #eaf5ff;
  font-size: 28px;
}

.easychat-segment-card h3 {
  margin: 0 0 12px;
  color: var(--easychat-blue-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.easychat-segment-card p {
  margin: 0;
  color: var(--easychat-muted);
  font-size: 15px;
  line-height: 1.6;
}

.easychat-results-section > .container,
.easychat-integrations-section > .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
}

.easychat-results-layout {
  grid-template-columns: 1fr;
  gap: 32px;
}

.easychat-benefits-card,
.easychat-comparison-card {
  padding: 40px;
}

.easychat-benefits-hub {
  min-height: 560px;
}

.easychat-comparison-grid {
  gap: 24px;
}

.easychat-integrations-card {
  grid-template-columns: minmax(260px, .55fr) minmax(620px, 1.45fr);
  gap: 64px;
}

.easychat-final-cta-card {
  grid-template-columns: 250px minmax(400px, 1fr) auto;
  gap: 32px 48px;
}

@media (max-width: 1399.98px) {
  .easychat-segments-layout,
  .easychat-problems-layout,
  .easychat-integrations-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .easychat-segments-copy,
  .easychat-problems-copy,
  .easychat-integrations-copy {
    position: static;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .easychat-segments-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .easychat-problems-grid,
  .easychat-features-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .easychat-steps-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .easychat-steps-grid::before {
    display: none;
  }

  .easychat-ai-panel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy robot"
      "assistant side"
      "benefits benefits";
  }
}

@media (max-width: 1199.98px) {
  main.ecx-page .container,
  section.easychat-final-cta > .container,
  .easychat-results-section > .container,
  .easychat-integrations-section > .container {
    width: min(100% - 48px, 1280px);
  }

  .ecx-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .ecx-hero-copy {
    margin-inline: auto;
  }

  .ecx-actions {
    justify-content: center;
  }

  .ecx-hero-stage.easychat-dashboard-frame {
    max-width: 860px;
  }

  .easychat-dashboard-image {
    max-width: 860px;
  }

  .easychat-about-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .easychat-final-cta-card {
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "visual copy"
      "visual action"
      "benefits benefits";
  }
}

@media (max-width: 991.98px) {
  .easychat-segments-grid,
  .easychat-problems-grid,
  .easychat-features-grid,
  .easychat-steps-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .easychat-ai-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "robot"
      "assistant"
      "side"
      "benefits";
  }

  .easychat-ai-benefits,
  .easychat-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-hub,
  .easychat-integrations-map {
    min-height: auto;
    display: grid;
    gap: 20px;
    padding: 28px;
  }

  .easychat-benefits-hub::before,
  .easychat-benefits-hub::after,
  .easychat-integrations-map::before {
    display: none;
  }

  .easychat-hub-logo,
  .easychat-hub-item,
  .integration-center,
  .integration-stack,
  .integration-bottom {
    position: static;
    transform: none;
  }

  .easychat-hub-logo,
  .integration-center {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .easychat-hub-item,
  .integration-item {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .easychat-about,
  .easychat-problems-section,
  .easychat-features-section,
  .easychat-steps-section,
  .easychat-ai-section,
  .easychat-segments-section,
  .easychat-results-section,
  .easychat-integrations-section,
  section.easychat-final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  main.ecx-page .container,
  section.easychat-final-cta > .container,
  .easychat-results-section > .container,
  .easychat-integrations-section > .container {
    width: min(100% - 32px, 1280px);
  }

  .ecx-hero {
    padding: 64px 0;
  }

  .ecx-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .ecx-highlights,
  .easychat-about-grid,
  .easychat-segments-grid,
  .easychat-problems-grid,
  .easychat-features-grid,
  .easychat-steps-grid,
  .easychat-benefits-list {
    grid-template-columns: 1fr;
  }

  .easychat-segments-copy,
  .easychat-problems-copy,
  .easychat-integrations-copy,
  .easychat-section-header {
    text-align: left;
  }

  .easychat-segments-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .easychat-segments-copy p {
    font-size: 16px;
  }

  .easychat-about-card,
  .easychat-problem-card,
  .easychat-feature-card,
  .easychat-step-card,
  .easychat-segment-card {
    min-height: auto;
    padding: 26px;
  }

  .easychat-ai-panel,
  .easychat-benefits-card,
  .easychat-comparison-card,
  .easychat-integrations-card,
  .easychat-final-cta-card {
    padding: 28px;
    border-radius: 28px;
  }

  .easychat-final-cta-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "action"
      "benefits";
    text-align: center;
  }

  .easychat-final-cta-benefits {
    grid-template-columns: 1fr;
  }
}

/* EasyChat responsive hardening - prevents horizontal overflow and keeps the page premium on small screens */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.ecx-page,
.ecx-page *,
.easychat-final-cta,
.easychat-final-cta * {
  box-sizing: border-box;
}

.ecx-page img,
.easychat-final-cta img {
  max-width: 100%;
  height: auto;
}

.ecx-page section {
  max-width: 100%;
  overflow-x: clip;
}

.ecx-hero-copy,
.ecx-hero-stage,
.easychat-dashboard-frame,
.easychat-dashboard-image,
.easychat-section-header,
.easychat-problems-copy,
.easychat-segments-copy,
.easychat-integrations-copy {
  min-width: 0;
}

.ecx-kicker {
  max-width: 100%;
  white-space: normal;
  flex-wrap: wrap;
  line-height: 1.45;
}

.ecx-actions .ecx-btn {
  box-sizing: border-box;
}

@media (max-width: 1199.98px) {
  .ecx-hero-copy h1,
  .ecx-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .easychat-dashboard-frame {
    width: min(100%, 820px);
  }
}

@media (max-width: 767.98px) {
  .ecx-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .ecx-hero-copy {
    width: 100%;
    max-width: 320px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    overflow: hidden;
  }

  .ecx-kicker {
    justify-content: flex-start;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.10em;
  }

  .ecx-hero-copy h1 {
    width: 100%;
    max-width: 320px;
    margin: 0;
    font-size: clamp(30px, 7.4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    text-align: left;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .ecx-hero-copy h1 strong {
    display: block;
  }

  .ecx-hero-copy p {
    width: 100%;
    max-width: 320px;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
    overflow-wrap: break-word;
  }

  .ecx-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
    justify-content: stretch;
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .ecx-actions .ecx-btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .ecx-highlights {
    width: 100%;
    max-width: 320px;
    margin-left: 0;
    margin-right: 0;
  }

  .ecx-highlights div {
    min-width: 0;
  }

  .easychat-dashboard-frame {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .easychat-dashboard-image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (max-width: 430px) {
  main.ecx-page .container,
  section.easychat-final-cta > .container,
  .easychat-results-section > .container,
  .easychat-integrations-section > .container {
    width: min(100% - 32px, 1280px);
  }

  .ecx-hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .ecx-hero-copy h1 {
    max-width: 342px;
    font-size: clamp(30px, 8.7vw, 35px);
  }

  .ecx-hero-copy h1 strong {
    display: block;
  }

  .ecx-hero-copy,
  .ecx-hero-copy p,
  .ecx-actions,
  .ecx-highlights {
    max-width: 342px;
  }

  .ecx-actions {
    margin-left: 0;
    margin-right: 0;
  }

  .ecx-kicker {
    font-size: 10px;
    letter-spacing: 0.10em;
  }

  .easychat-about-card,
  .easychat-problem-card,
  .easychat-feature-card,
  .easychat-step-card,
  .easychat-segment-card {
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .ecx-hero-copy,
  .ecx-hero-copy h1,
  .ecx-hero-copy p,
  .ecx-actions,
  .ecx-highlights {
    max-width: 312px;
  }
}

/* EasyChat hero final UI/UX rebuild */
.easychat-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.easychat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}

.easychat-hero .ecx-orb {
  display: none;
}

.easychat-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.40fr) minmax(700px, 0.60fr);
  gap: 64px;
  align-items: start;
}

.easychat-hero-copy {
  max-width: 620px;
}

.easychat-hero .ecx-kicker,
.easychat-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #126dff;
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.easychat-hero-copy h1 {
  max-width: 580px;
  margin: 0 0 28px;
  color: #071b4d;
  font-size: clamp(42px, 3.55vw, 56px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.easychat-hero-copy h1 strong {
  display: inline;
  color: #ff6b1a;
}

.easychat-hero-copy p {
  max-width: 600px;
  margin: 0 0 36px;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.easychat-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 46px;
}

.easychat-hero-actions .ecx-btn,
.btn-primary-easychat,
.btn-secondary-easychat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.easychat-hero-actions .ecx-btn-primary,
.btn-primary-easychat {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5a00 100%);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28);
}

.easychat-hero-actions .ecx-btn-primary:hover,
.btn-primary-easychat:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(255, 107, 26, 0.36);
}

.easychat-hero-actions .ecx-btn-ghost,
.btn-secondary-easychat {
  color: #071b4d;
  background: #ffffff;
  border: 1px solid rgba(18, 109, 255, 0.16);
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06);
}

.easychat-hero-actions .ecx-btn-ghost:hover,
.btn-secondary-easychat:hover {
  color: #071b4d;
  transform: translateY(-3px);
  border-color: rgba(18, 109, 255, 0.28);
  box-shadow: 0 22px 52px rgba(7, 27, 77, 0.10);
}

.easychat-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 16px;
  max-width: none;
}

.easychat-hero-highlights > div,
.easychat-highlight-card {
  min-height: 156px;
  padding: 20px 18px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.07);
}

.easychat-hero-highlights i,
.easychat-highlight-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 22px;
}

.easychat-hero-highlights strong,
.easychat-highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #071b4d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.easychat-hero-highlights span,
.easychat-highlight-card span {
  display: block;
  color: #53627f;
  font-size: 12px;
  line-height: 1.45;
}

.easychat-hero-visual,
.easychat-hero-grid > .easychat-dashboard-frame {
  position: relative;
  min-width: 0;
  padding-top: 32px;
}

.easychat-hero .easychat-dashboard-frame {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  isolation: isolate;
  overflow: visible;
}

.easychat-hero .easychat-dashboard-frame::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 28% 24%, rgba(18, 109, 255, 0.22), transparent 42%),
    radial-gradient(circle at 86% 68%, rgba(255, 107, 26, 0.13), transparent 38%);
  filter: blur(42px);
  opacity: 0.9;
}

.easychat-hero .easychat-dashboard-image {
  display: block;
  width: 100%;
  max-width: 1040px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 32px;
  filter:
    drop-shadow(0 34px 90px rgba(7, 27, 77, 0.16))
    drop-shadow(0 10px 28px rgba(18, 109, 255, 0.10));
}

.easychat-hero-copy h1,
.easychat-hero-copy p,
.easychat-highlight-card strong,
.easychat-highlight-card span,
.easychat-hero-highlights strong,
.easychat-hero-highlights span {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 1399px) {
  .easychat-hero-grid {
    grid-template-columns: minmax(400px, 0.42fr) minmax(600px, 0.58fr);
    gap: 56px;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(40px, 3.65vw, 54px);
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image {
    max-width: 960px;
  }

  .easychat-hero-highlights {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 1199px) {
  .easychat-hero {
    padding: 88px 0;
  }

  .easychat-hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .easychat-hero-copy {
    max-width: 820px;
    text-align: center;
    margin-inline: auto;
  }

  .easychat-hero-copy h1,
  .easychat-hero-copy p {
    margin-inline: auto;
  }

  .easychat-hero-actions {
    justify-content: center;
  }

  .easychat-hero-highlights {
    max-width: 820px;
    margin-inline: auto;
    grid-template-columns: repeat(4, 1fr);
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image {
    max-width: 920px;
  }
}

@media (max-width: 767px) {
  .easychat-hero {
    padding: 72px 0;
  }

  .easychat-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    overflow: hidden;
  }

  .easychat-hero-copy {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
    text-align: left;
    overflow: hidden;
  }

  .easychat-hero-copy h1 {
    max-width: none;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    text-wrap: normal;
    overflow-wrap: normal;
  }

  .easychat-hero-copy h1 strong {
    display: block;
  }

  .easychat-hero-copy p {
    width: 100% !important;
    max-width: min(100%, 300px) !important;
    font-size: 16px;
  }

  .easychat-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .easychat-hero-actions .ecx-btn,
  .btn-primary-easychat,
  .btn-secondary-easychat {
    width: 100%;
  }

  .easychat-hero-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .easychat-hero .easychat-dashboard-image {
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .easychat-hero-highlights {
    grid-template-columns: 1fr;
  }

  .easychat-hero-highlights > div,
  .easychat-highlight-card {
    min-height: auto;
  }
}

/* EasyChat resultados, comparativo e integrações - reconstrução SaaS premium */
.easychat-results-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(18, 109, 255, 0.08), transparent 34%),
    #f8fbff;
}

.easychat-results-section > .container,
.easychat-comparison-section > .container,
.easychat-integrations-section > .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
}

.easychat-results-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.easychat-results-copy h2,
.easychat-comparison-section .easychat-section-header h2,
.easychat-integrations-copy h2 {
  margin: 0 0 24px;
  color: #071b4d;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.easychat-results-copy p,
.easychat-comparison-section .easychat-section-header p,
.easychat-integrations-copy p {
  margin: 0 0 36px;
  color: #53627f;
  font-size: 18px;
  line-height: 1.75;
}

.easychat-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #126dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.easychat-results-section .easychat-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px 28px;
}

.easychat-results-section .easychat-benefits-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #071b4d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.easychat-results-section .easychat-benefits-list i {
  color: #ff6b1a;
  font-size: 24px;
}

.easychat-results-panel {
  padding: 36px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.08);
}

.easychat-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.easychat-metrics-grid article {
  padding: 24px;
  border: 1px solid rgba(18, 109, 255, 0.10);
  border-radius: 22px;
  background: #f8fbff;
}

.easychat-metrics-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 24px;
}

.easychat-metrics-grid span {
  display: block;
  margin-bottom: 8px;
  color: #53627f;
  font-size: 14px;
  font-weight: 700;
}

.easychat-metrics-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #071b4d;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.easychat-metrics-grid small {
  color: #0ca960;
  font-size: 13px;
  font-weight: 800;
}

.easychat-dashboard-preview {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.dashboard-bars {
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(18, 109, 255, 0.10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 109, 255, 0.05), rgba(18, 109, 255, 0.02)),
    #f8fbff;
}

.dashboard-bars span {
  flex: 1;
  min-height: 36px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #126dff, #8ec5ff);
}

.dashboard-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 27, 77, 0.06);
}

.dashboard-summary i {
  color: #126dff;
  font-size: 42px;
}

.dashboard-summary strong {
  color: #071b4d;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.easychat-comparison-section {
  padding: 112px 0;
  background: #ffffff;
}

.easychat-comparison-section .easychat-section-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.easychat-comparison-section .easychat-section-header p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.easychat-comparison-section .easychat-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.easychat-comparison-section .easychat-comparison-column {
  overflow: hidden;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 27, 77, 0.08);
}

.easychat-comparison-section .easychat-comparison-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 26px 32px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.easychat-comparison-section .easychat-common h3 {
  color: #f04438;
  background: rgba(240, 68, 56, 0.10);
}

.easychat-comparison-section .easychat-better h3 {
  color: #126dff;
  background: rgba(18, 109, 255, 0.10);
}

.easychat-comparison-section .easychat-comparison-column ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 36px 32px;
  list-style: none;
}

.easychat-comparison-section .easychat-comparison-column li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #071b4d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.easychat-comparison-section .easychat-common li i {
  color: #f04438;
}

.easychat-comparison-section .easychat-better li i {
  color: #0ca960;
}

.easychat-integrations-section {
  padding: 112px 0;
  background: #f8fbff;
}

.easychat-integrations-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(720px, 1.45fr);
  gap: 80px;
  align-items: center;
}

.easychat-integrations-copy {
  max-width: 520px;
}

.easychat-integrations-map {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(18, 109, 255, 0.08), transparent 36%),
    #ffffff;
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.08);
}

.easychat-integrations-map::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 32px;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.22) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.20;
}

.easychat-integrations-map .integration-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 34px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(7, 27, 77, 0.13);
  transform: translate(-50%, -50%);
}

.easychat-integrations-map .integration-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.easychat-integrations-map .integration-item {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 18px 22px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 27, 77, 0.08);
  color: #071b4d;
  font-size: 16px;
  font-weight: 900;
}

.easychat-integrations-map .integration-item i {
  color: #126dff;
  font-size: 30px;
}

.easychat-integrations-map .integration-item small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.easychat-integrations-map .item-whatsapp { top: 56px; left: 48px; }
.easychat-integrations-map .item-instagram { top: 160px; left: 48px; }
.easychat-integrations-map .item-facebook { top: 264px; left: 48px; }
.easychat-integrations-map .item-telegram { bottom: 56px; left: 50%; transform: translateX(-50%); }
.easychat-integrations-map .item-crm { top: 56px; right: 48px; }
.easychat-integrations-map .item-phone { top: 160px; right: 48px; }
.easychat-integrations-map .item-ai { top: 264px; right: 48px; }
.easychat-integrations-map .item-api { bottom: 150px; right: 48px; }
.easychat-integrations-map .item-erp { bottom: 56px; right: 48px; }

@media (max-width: 1199.98px) {
  .easychat-results-grid,
  .easychat-integrations-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .easychat-results-copy,
  .easychat-integrations-copy {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
  }

  .easychat-results-section .easychat-benefits-list {
    max-width: 760px;
    margin-inline: auto;
  }

  .easychat-integrations-map {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .easychat-results-section,
  .easychat-comparison-section,
  .easychat-integrations-section {
    padding: 72px 0;
  }

  .easychat-results-section > .container,
  .easychat-comparison-section > .container,
  .easychat-integrations-section > .container {
    width: min(100% - 32px, 1280px);
  }

  .easychat-results-copy,
  .easychat-integrations-copy,
  .easychat-comparison-section .easychat-section-header {
    text-align: left;
  }

  .easychat-results-section .easychat-benefits-list,
  .easychat-metrics-grid,
  .easychat-dashboard-preview,
  .easychat-comparison-section .easychat-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easychat-results-panel {
    padding: 26px;
  }

  .easychat-integrations-map {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding: 28px;
  }

  .easychat-integrations-map::before {
    display: none;
  }

  .easychat-integrations-map .integration-center,
  .easychat-integrations-map .integration-item {
    position: static;
    transform: none;
  }

  .easychat-integrations-map .integration-center {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
  }

  .easychat-integrations-map .integration-item {
    width: 100%;
    min-width: 0;
  }
}

/* EasyChat CTA final - reconstrução premium definitiva */
section.easychat-final-cta {
  padding: 112px 0 !important;
  background: #ffffff !important;
}

section.easychat-final-cta > .container {
  width: min(100% - 48px, 1440px) !important;
  max-width: 1440px !important;
  margin-inline: auto !important;
}

.easychat-final-cta-card {
  position: relative !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 260px) minmax(420px, 1fr) minmax(280px, 360px) !important;
  grid-template-areas:
    "robot copy action"
    "robot benefits benefits" !important;
  align-items: center !important;
  gap: 34px 56px !important;
  min-height: 360px !important;
  overflow: hidden !important;
  padding: 56px 64px !important;
  border: 0 !important;
  border-radius: 38px !important;
  background:
    radial-gradient(circle at 12% 42%, rgba(18, 109, 255, 0.75), transparent 32%),
    radial-gradient(circle at 94% 48%, rgba(255, 107, 26, 0.82), transparent 34%),
    linear-gradient(115deg, #0047e6 0%, #062b93 48%, #ff6b1a 100%) !important;
  box-shadow:
    0 36px 120px rgba(7, 27, 77, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  isolation: isolate !important;
}

.easychat-final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 38%);
  pointer-events: none;
}

.easychat-final-cta-card::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -28%;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.34);
  filter: blur(74px);
  z-index: -1;
}

.easychat-final-cta-robot {
  grid-area: robot;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.easychat-final-cta-robot img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.24));
}

.easychat-final-cta-copy {
  grid-area: copy;
  min-width: 0;
}

.easychat-final-cta-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.easychat-final-cta-copy h2 {
  max-width: 780px !important;
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: clamp(38px, 4vw, 64px) !important;
  font-weight: 950 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance;
}

.easychat-final-cta-copy p {
  max-width: 720px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 19px !important;
  line-height: 1.6 !important;
}

.easychat-final-cta-action {
  grid-area: action;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.easychat-final-cta-button {
  box-sizing: border-box !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  min-width: 320px !important;
  min-height: 76px !important;
  padding: 22px 34px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff8a1a 0%, #ff5a00 100%) !important;
  box-shadow:
    0 24px 54px rgba(255, 107, 26, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.easychat-final-cta-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 74px rgba(255, 107, 26, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.easychat-final-cta-button i {
  font-size: 25px !important;
}

.easychat-final-cta-benefits {
  grid-area: benefits;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(160px, auto)) !important;
  gap: 26px !important;
  align-items: center !important;
  justify-content: start !important;
  margin-top: 4px !important;
}

.easychat-final-cta-benefits div {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  line-height: 1.3 !important;
}

.easychat-final-cta-benefits i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 999px !important;
  color: #126dff !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18) !important;
  font-size: 26px !important;
}

@media (max-width: 1199.98px) {
  .easychat-final-cta-card {
    grid-template-columns: 220px 1fr !important;
    grid-template-areas:
      "robot copy"
      "robot action"
      "benefits benefits" !important;
    gap: 34px !important;
  }

  .easychat-final-cta-action {
    justify-content: flex-start !important;
  }

  .easychat-final-cta-benefits {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  section.easychat-final-cta {
    padding: 72px 0 !important;
  }

  section.easychat-final-cta > .container {
    width: min(100% - 32px, 1440px) !important;
  }

  .easychat-final-cta-card {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "robot"
      "copy"
      "action"
      "benefits" !important;
    min-height: auto !important;
    padding: 40px 28px !important;
    border-radius: 30px !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .easychat-final-cta-robot img {
    max-width: 190px !important;
  }

  .easychat-final-cta-copy h2 {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .easychat-final-cta-copy p {
    font-size: 17px !important;
  }

  .easychat-final-cta-action {
    justify-content: center !important;
  }

  .easychat-final-cta-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 64px !important;
    padding-inline: 18px !important;
    font-size: 16px !important;
    white-space: normal !important;
  }

  .easychat-final-cta-benefits {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: left !important;
  }

  .easychat-final-cta-benefits div {
    padding: 16px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.11) !important;
  }
}

@media (max-width: 520px) {
  section.easychat-final-cta > .container {
    width: min(100% - 32px, 358px) !important;
    max-width: 358px !important;
    margin-left: 16px !important;
    margin-right: auto !important;
  }

  .easychat-final-cta-card {
    padding: 36px 24px !important;
  }

  .easychat-final-cta-copy span {
    max-width: 260px;
    margin-inline: auto;
    font-size: 11px;
    line-height: 1.35;
  }

  .easychat-final-cta-copy h2 {
    font-size: clamp(28px, 8.5vw, 34px) !important;
    letter-spacing: -0.035em !important;
  }

  .easychat-final-cta-button {
    gap: 10px !important;
    padding-inline: 14px !important;
  }
}

/* EasyChat benefícios e comparativo - arte premium aprovada */
.easychat-benefits-visual-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 109, 255, 0.08), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255, 107, 26, 0.06), transparent 30%),
    #f8fbff;
}

.easychat-benefits-visual-frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 34px 110px rgba(7, 27, 77, 0.14),
    0 10px 28px rgba(18, 109, 255, 0.08);
}

.easychat-benefits-visual-frame::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(18, 109, 255, 0.16), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 26, 0.10), transparent 38%);
  filter: blur(38px);
  opacity: 0.85;
}

.easychat-benefits-visual-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 36px;
}

@media (max-width: 1199.98px) {
  .easychat-benefits-visual-section {
    padding: 88px 0;
  }

  .easychat-benefits-visual-frame,
  .easychat-benefits-visual-image {
    border-radius: 30px;
  }
}

@media (max-width: 767.98px) {
  .easychat-benefits-visual-section {
    padding: 72px 0;
  }

  .easychat-benefits-visual-frame {
    border-radius: 24px;
    box-shadow:
      0 22px 70px rgba(7, 27, 77, 0.12),
      0 8px 22px rgba(18, 109, 255, 0.08);
  }

  .easychat-benefits-visual-image {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .easychat-benefits-visual-frame {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .easychat-benefits-visual-image {
    width: 980px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .easychat-benefits-visual-section .container {
    width: min(100% - 20px, 1280px);
  }

  .easychat-benefits-visual-frame,
  .easychat-benefits-visual-image {
    border-radius: 18px;
  }
}

/* EasyChat CTA premium - reconstruído fiel à referência */
.easychat-cta-premium {
  padding: 96px 0;
  background: #ffffff;
}

.easychat-cta-premium > .container {
  width: min(100% - 48px, 1440px);
  max-width: 1440px;
  margin-inline: auto;
}

.easychat-cta-premium-card {
  position: relative;
  min-height: 343px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 117, 255, 0.55), transparent 28%),
    radial-gradient(circle at 94% 50%, rgba(255, 107, 26, 0.78), transparent 34%),
    linear-gradient(110deg, #004ee9 0%, #0330a8 37%, #18227c 68%, #ff6b1a 100%);
  box-shadow:
    0 34px 110px rgba(7, 27, 77, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.easychat-cta-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 45%, rgba(255, 255, 255, 0.10), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.easychat-cta-premium-card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -45%;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.38);
  filter: blur(80px);
  z-index: -1;
}

.easychat-cta-robot {
  position: absolute;
  left: 58px;
  bottom: 0;
  width: 270px;
  height: 330px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.easychat-cta-robot img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.24));
}

.easychat-cta-content {
  position: absolute;
  left: 390px;
  top: 64px;
  max-width: 650px;
  z-index: 3;
}

.easychat-cta-content h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 3.35vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.easychat-cta-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.45;
}

.easychat-cta-button-area {
  position: absolute;
  top: 58px;
  right: 78px;
  z-index: 4;
}

.easychat-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 430px;
  min-height: 82px;
  padding: 0 42px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #ff9a1f 0%, #ff5f00 100%);
  box-shadow:
    0 24px 50px rgba(255, 107, 26, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.easychat-cta-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(255, 107, 26, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.easychat-cta-button i {
  font-size: 34px;
}

.easychat-cta-benefits {
  position: absolute;
  right: 70px;
  bottom: 62px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
  align-items: center;
  z-index: 4;
}

.easychat-cta-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 170px;
  color: #ffffff;
}

.easychat-cta-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.easychat-cta-benefit i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #126dff;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  font-size: 28px;
}

.easychat-cta-benefit span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.24;
}

@media (max-width: 1440px) {
  .easychat-cta-robot {
    left: 46px;
    width: 240px;
  }

  .easychat-cta-content {
    left: 330px;
    max-width: 600px;
  }

  .easychat-cta-content h2 {
    font-size: clamp(38px, 3.3vw, 52px);
  }

  .easychat-cta-button-area {
    right: 54px;
  }

  .easychat-cta-button {
    min-width: 360px;
    min-height: 76px;
    font-size: 24px;
  }

  .easychat-cta-benefits {
    right: 48px;
    gap: 22px;
  }

  .easychat-cta-benefit {
    min-width: 145px;
  }

  .easychat-cta-benefit span {
    font-size: 17px;
  }
}

@media (max-width: 1199px) {
  .easychat-cta-premium-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "robot content"
      "robot action"
      "benefits benefits";
    gap: 32px;
    padding: 48px;
  }

  .easychat-cta-robot,
  .easychat-cta-content,
  .easychat-cta-button-area,
  .easychat-cta-benefits {
    position: static;
  }

  .easychat-cta-robot {
    grid-area: robot;
    width: 220px;
    height: auto;
    align-self: center;
  }

  .easychat-cta-content {
    grid-area: content;
    max-width: 100%;
  }

  .easychat-cta-button-area {
    grid-area: action;
  }

  .easychat-cta-button {
    min-width: 0;
    min-height: 68px;
    font-size: 20px;
  }

  .easychat-cta-benefits {
    grid-area: benefits;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 10px;
  }

  .easychat-cta-benefit {
    min-width: 0;
  }

  .easychat-cta-benefit:not(:last-child)::after {
    display: none;
  }

  .easychat-cta-benefit span {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .easychat-cta-premium {
    padding: 72px 0;
  }

  .easychat-cta-premium > .container {
    width: min(100% - 32px, 1280px);
  }

  .easychat-cta-premium-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "robot"
      "content"
      "action"
      "benefits";
    padding: 40px 28px;
    border-radius: 30px;
    text-align: center;
  }

  .easychat-cta-robot {
    width: 190px;
    margin: 0 auto;
  }

  .easychat-cta-content h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .easychat-cta-content p {
    font-size: 17px;
  }

  .easychat-cta-button {
    width: 100%;
    min-height: 64px;
    font-size: 17px;
  }

  .easychat-cta-button i {
    font-size: 24px;
  }

  .easychat-cta-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .easychat-cta-benefit {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
  }

  .easychat-cta-benefit i {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .easychat-cta-benefit span {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .easychat-cta-premium > .container {
    width: min(100% - 32px, 358px);
    max-width: 358px;
    margin-left: 16px;
    margin-right: auto;
  }

  .easychat-cta-premium-card {
    padding: 36px 24px;
    overflow: hidden;
  }

  .easychat-cta-robot {
    width: 180px;
  }

  .easychat-cta-content h2 {
    font-size: clamp(28px, 8.5vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .easychat-cta-content p {
    font-size: 15px;
    line-height: 1.55;
  }

  .easychat-cta-button {
    gap: 10px;
    padding-inline: 14px;
    font-size: 16px;
    white-space: normal;
  }
}

/* Refinamento final do CTA EasyChat para evitar sobreposição em desktop */
@media (min-width: 1200px) {
  .easychat-cta-premium-card {
    min-height: 343px;
  }

  .easychat-cta-robot {
    left: 52px;
    width: 248px;
    height: 330px;
  }

  .easychat-cta-content {
    left: 330px;
    top: 68px;
    max-width: 520px;
  }

  .easychat-cta-content h2 {
    max-width: 520px;
    font-size: clamp(36px, 2.8vw, 40px);
    line-height: 1.08;
  }

  .easychat-cta-content p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.45;
  }

  .easychat-cta-button-area {
    top: 56px;
    right: 54px;
  }

  .easychat-cta-button {
    min-width: 370px;
    min-height: 74px;
    padding: 0 34px;
    font-size: 23px;
  }

  .easychat-cta-benefits {
    right: 48px;
    bottom: 30px;
    gap: 12px;
  }

  .easychat-cta-benefit {
    min-width: 110px;
    gap: 9px;
  }

  .easychat-cta-benefit:not(:last-child)::after {
    right: -6px;
  }

  .easychat-cta-benefit i {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .easychat-cta-benefit span {
    font-size: 14px;
    line-height: 1.22;
  }
}

/* EasyChat largura global - desktop mais amplo e proporcional */
@media (min-width: 1200px) {
  main.ecx-page > section > .container,
  main.ecx-page .easychat-hero > .container,
  main.ecx-page .easychat-about > .container,
  main.ecx-page .easychat-problems-section > .container,
  main.ecx-page .easychat-features-section > .container,
  main.ecx-page .easychat-steps-section > .container,
  main.ecx-page .easychat-ai-section > .container,
  main.ecx-page .easychat-segments-section > .container,
  main.ecx-page .easychat-benefits-visual-section > .container,
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - 64px, 1440px) !important;
    max-width: 1440px !important;
    margin-inline: auto !important;
  }

  .easychat-hero-grid {
    grid-template-columns: minmax(460px, 0.42fr) minmax(760px, 0.58fr) !important;
    gap: 80px !important;
  }

  .easychat-hero-copy {
    max-width: 660px !important;
  }

  .easychat-dashboard-frame,
  .easychat-dashboard-image {
    max-width: 980px !important;
  }

  .easychat-about-grid,
  .easychat-features-grid,
  .easychat-problems-grid {
    gap: 28px !important;
  }

  .easychat-problems-layout {
    grid-template-columns: minmax(340px, 0.34fr) minmax(860px, 0.66fr) !important;
    gap: 72px !important;
  }

  .easychat-segments-layout {
    grid-template-columns: minmax(320px, 0.30fr) minmax(920px, 0.70fr) !important;
    gap: 72px !important;
  }

  .easychat-segments-grid {
    grid-template-columns: repeat(5, minmax(170px, 1fr)) !important;
    gap: 24px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1380px) {
  main.ecx-page > section > .container,
  main.ecx-page .easychat-hero > .container,
  main.ecx-page .easychat-about > .container,
  main.ecx-page .easychat-problems-section > .container,
  main.ecx-page .easychat-features-section > .container,
  main.ecx-page .easychat-steps-section > .container,
  main.ecx-page .easychat-ai-section > .container,
  main.ecx-page .easychat-segments-section > .container,
  main.ecx-page .easychat-benefits-visual-section > .container,
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - 48px, 1440px) !important;
  }
}

@media (max-width: 1199.98px) {
  main.ecx-page > section > .container,
  main.ecx-page .easychat-hero > .container,
  main.ecx-page .easychat-about > .container,
  main.ecx-page .easychat-problems-section > .container,
  main.ecx-page .easychat-features-section > .container,
  main.ecx-page .easychat-steps-section > .container,
  main.ecx-page .easychat-ai-section > .container,
  main.ecx-page .easychat-segments-section > .container,
  main.ecx-page .easychat-benefits-visual-section > .container,
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - 48px, 1440px) !important;
    max-width: 1440px !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 767.98px) {
  main.ecx-page > section > .container,
  main.ecx-page .easychat-hero > .container,
  main.ecx-page .easychat-about > .container,
  main.ecx-page .easychat-problems-section > .container,
  main.ecx-page .easychat-features-section > .container,
  main.ecx-page .easychat-steps-section > .container,
  main.ecx-page .easychat-ai-section > .container,
  main.ecx-page .easychat-segments-section > .container,
  main.ecx-page .easychat-benefits-visual-section > .container,
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - 32px, 1440px) !important;
  }
}

@media (max-width: 520px) {
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - 32px, 358px) !important;
    max-width: 358px !important;
    margin-left: 16px !important;
    margin-right: auto !important;
  }
}

/* EasyChat escala visual global - sensacao de zoom 67% em 100% */
@media (min-width: 1200px) {
  body.easychat-page .header .navbar {
    padding: 12px 0 !important;
  }

  body.easychat-page .header .navbar-brand img {
    width: 250px !important;
    max-height: 72px !important;
    object-fit: contain !important;
  }

  body.easychat-page .header .nav-link {
    font-size: 13px !important;
  }

  body.easychat-page .header .btn-header-cta {
    min-height: 48px !important;
    padding: 0 24px !important;
    font-size: 13px !important;
  }

  main.ecx-page {
    --ecx-scale-container: 1680px;
    --ecx-scale-page-x: 56px;
    --ecx-title-color: #071b4d;
    font-size: 14px;
  }

  main.ecx-page > section > .container,
  main.ecx-page .easychat-hero > .container,
  main.ecx-page .easychat-about > .container,
  main.ecx-page .easychat-problems-section > .container,
  main.ecx-page .easychat-features-section > .container,
  main.ecx-page .easychat-steps-section > .container,
  main.ecx-page .easychat-ai-section > .container,
  main.ecx-page .easychat-segments-section > .container,
  main.ecx-page .easychat-benefits-visual-section > .container,
  main.ecx-page .easychat-cta-premium > .container {
    width: min(100% - var(--ecx-scale-page-x), var(--ecx-scale-container)) !important;
    max-width: var(--ecx-scale-container) !important;
  }

  .easychat-hero {
    padding: 46px 0 58px !important;
  }

  .easychat-hero-grid {
    grid-template-columns: minmax(390px, 0.36fr) minmax(820px, 0.64fr) !important;
    gap: 52px !important;
  }

  .easychat-hero-copy {
    max-width: 540px !important;
  }

  .easychat-hero-kicker {
    margin-bottom: 14px !important;
    padding: 6px 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.13em !important;
  }

  .easychat-hero-copy h1 {
    margin-bottom: 16px !important;
    font-size: clamp(32px, 2.5vw, 44px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
  }

  .easychat-hero-copy p {
    max-width: 520px !important;
    margin-bottom: 22px !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .easychat-hero-actions {
    gap: 12px !important;
    margin-bottom: 26px !important;
  }

  .btn-primary-easychat,
  .btn-secondary-easychat,
  .easychat-hero-actions .ecx-btn {
    min-height: 46px !important;
    padding: 0 20px !important;
    font-size: 13px !important;
  }

  .easychat-hero-highlights {
    grid-template-columns: repeat(4, minmax(96px, 1fr)) !important;
    gap: 10px !important;
  }

  .easychat-highlight-card,
  .easychat-hero-highlights > div {
    min-height: 114px !important;
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }

  .easychat-highlight-card i,
  .easychat-hero-highlights i {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 10px !important;
    border-radius: 11px !important;
    font-size: 18px !important;
  }

  .easychat-highlight-card strong,
  .easychat-hero-highlights strong {
    margin-bottom: 5px !important;
    font-size: 11.5px !important;
    line-height: 1.22 !important;
  }

  .easychat-highlight-card span,
  .easychat-hero-highlights span {
    font-size: 10.2px !important;
    line-height: 1.35 !important;
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-frame,
  .easychat-dashboard-image {
    max-width: 960px !important;
  }

  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-image {
    border-radius: 26px !important;
  }

  .easychat-about,
  .easychat-problems-section,
  .easychat-features-section,
  .easychat-steps-section,
  .easychat-ai-section,
  .easychat-segments-section {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }

  .easychat-section-header {
    margin-bottom: 34px !important;
  }

  .easychat-section-header h2,
  .easychat-problems-copy h2,
  .easychat-segments-copy h2,
  .easychat-ai-copy h2 {
    font-size: clamp(27px, 2.15vw, 38px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .easychat-section-header p,
  .easychat-problems-copy p,
  .easychat-segments-copy p,
  .easychat-ai-copy p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .easychat-about-grid {
    gap: 18px !important;
  }

  .easychat-about-card {
    min-height: 390px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .easychat-about-image {
    height: 165px !important;
    margin-bottom: 22px !important;
    border-radius: 18px !important;
  }

  .easychat-about-image img {
    max-width: 230px !important;
    height: 150px !important;
  }

  .easychat-about-card h3 {
    margin-bottom: 10px !important;
    font-size: 19px !important;
  }

  .easychat-about-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .easychat-problems-layout {
    grid-template-columns: minmax(280px, 0.28fr) minmax(900px, 0.72fr) !important;
    gap: 48px !important;
  }

  .easychat-problems-grid,
  .easychat-features-grid {
    gap: 16px !important;
  }

  .easychat-problem-card,
  .easychat-feature-card {
    min-height: 150px !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .easychat-problem-card i,
  .easychat-feature-card i,
  .easychat-step-card i {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 13px !important;
    border-radius: 12px !important;
    font-size: 22px !important;
  }

  .easychat-problem-card h3,
  .easychat-feature-card h3,
  .easychat-step-card h3 {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    line-height: 1.28 !important;
  }

  .easychat-problem-card p,
  .easychat-feature-card p,
  .easychat-step-card p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .easychat-feature-card {
    min-height: 172px !important;
  }

  .easychat-steps-grid {
    gap: 16px !important;
  }

  .easychat-step-card {
    min-height: 200px !important;
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }

  .easychat-step-card span {
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
  }

  .easychat-ai-panel {
    gap: 22px !important;
    padding: 34px !important;
    border-radius: 26px !important;
  }

  .easychat-ai-robot {
    max-width: 270px !important;
  }

  .easychat-ai-assistant-card,
  .easychat-ai-suggestion-card,
  .easychat-ai-sentiment-card {
    border-radius: 20px !important;
  }

  .easychat-ai-assistant-card,
  .easychat-ai-suggestion-card,
  .easychat-ai-sentiment-card {
    padding: 20px !important;
  }

  .easychat-ai-message,
  .easychat-ai-options button,
  .easychat-ai-input,
  .easychat-ai-suggestion-box {
    font-size: 12.5px !important;
  }

  .easychat-ai-message {
    padding: 12px 15px !important;
  }

  .easychat-ai-options {
    gap: 10px !important;
  }

  .easychat-ai-options button {
    padding: 10px 14px !important;
  }

  .easychat-ai-input {
    padding: 12px 14px !important;
  }

  .easychat-ai-benefits div {
    min-height: 84px !important;
    padding: 12px !important;
  }

  .easychat-ai-benefits i {
    font-size: 22px !important;
  }

  .easychat-ai-benefits span {
    font-size: 10.5px !important;
  }

  .easychat-segments-layout {
    grid-template-columns: minmax(270px, 0.24fr) minmax(1000px, 0.76fr) !important;
    gap: 48px !important;
  }

  .easychat-segments-copy {
    max-width: 300px !important;
  }

  .easychat-segments-grid {
    grid-template-columns: repeat(5, minmax(155px, 1fr)) !important;
    gap: 16px !important;
  }

  .easychat-segment-card {
    min-height: 160px !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .easychat-segment-card i {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 14px !important;
    border-radius: 12px !important;
    font-size: 22px !important;
  }

  .easychat-segment-card h3 {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .easychat-segment-card p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .easychat-benefits-visual-section {
    padding: 60px 0 !important;
  }

  .easychat-benefits-visual-frame {
    border-radius: 24px !important;
  }

  .easychat-benefits-visual-image {
    border-radius: 24px !important;
  }

  .easychat-cta-premium {
    padding: 60px 0 !important;
  }

  .easychat-cta-premium-card {
    min-height: 248px !important;
    border-radius: 28px !important;
  }

  .easychat-cta-robot {
    left: 48px !important;
    width: 196px !important;
    height: 248px !important;
  }

  .easychat-cta-content {
    left: 280px !important;
    top: 45px !important;
    max-width: 500px !important;
  }

  .easychat-cta-content h2 {
    max-width: 500px !important;
    font-size: clamp(28px, 2.35vw, 36px) !important;
    line-height: 1.08 !important;
  }

  .easychat-cta-content p {
    max-width: 510px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .easychat-cta-button-area {
    top: 42px !important;
    right: 48px !important;
  }

  .easychat-cta-button {
    min-width: 300px !important;
    min-height: 58px !important;
    padding: 0 26px !important;
    font-size: 17px !important;
  }

  .easychat-cta-button i {
    font-size: 20px !important;
  }

  .easychat-cta-benefits {
    right: 44px !important;
    bottom: 34px !important;
    gap: 10px !important;
  }

  .easychat-cta-benefit {
    min-width: 96px !important;
    gap: 8px !important;
  }

  .easychat-cta-benefit i {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }

  .easychat-cta-benefit span {
    font-size: 11.5px !important;
    line-height: 1.18 !important;
  }
}

@media (min-width: 1600px) {
  main.ecx-page {
    --ecx-scale-page-x: 64px;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(34px, 2.35vw, 48px) !important;
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-frame,
  .easychat-dashboard-image {
    max-width: 980px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  main.ecx-page {
    --ecx-scale-page-x: 40px;
  }

  .easychat-hero-grid {
    grid-template-columns: minmax(360px, 0.38fr) minmax(640px, 0.62fr) !important;
    gap: 36px !important;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(30px, 2.55vw, 38px) !important;
  }

  .easychat-hero-highlights {
    grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
  }

  .easychat-problems-layout,
  .easychat-segments-layout {
    grid-template-columns: 1fr !important;
  }

  .easychat-problems-copy,
  .easychat-segments-copy {
    max-width: 640px !important;
    position: static !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 1199.98px) {
  .easychat-hero,
  .easychat-about,
  .easychat-problems-section,
  .easychat-features-section,
  .easychat-steps-section,
  .easychat-ai-section,
  .easychat-segments-section,
  .easychat-benefits-visual-section,
  .easychat-cta-premium {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

/* EasyChat beneficios e comparativo - HTML editavel com recortes visuais */
.easychat-results-comparison-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 109, 255, 0.06), transparent 34%),
    radial-gradient(circle at 88% 15%, rgba(255, 107, 26, 0.05), transparent 30%),
    #f8fbff;
}

.easychat-results-comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.easychat-premium-card {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 36px;
  border: 1px solid rgba(18, 109, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 10%, rgba(18, 109, 255, 0.07), transparent 32%),
    #ffffff;
  box-shadow: 0 26px 80px rgba(7, 27, 77, 0.08);
}

.easychat-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 42%),
    radial-gradient(circle at 92% 88%, rgba(18, 109, 255, 0.05), transparent 34%);
}

.easychat-premium-card > * {
  position: relative;
  z-index: 1;
}

.easychat-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #126dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.easychat-card-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: start;
  min-height: 250px;
}

.easychat-card-copy h2,
.easychat-comparison-header h2 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.easychat-card-copy p,
.easychat-comparison-header p {
  max-width: 520px;
  margin: 0;
  color: #53627f;
  font-size: 16px;
  line-height: 1.65;
}

.easychat-benefits-robot {
  width: 260px;
  height: 250px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 36px rgba(18, 109, 255, 0.14));
}

.premium-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 26px 0 28px;
}

.premium-two-columns div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #071b4d;
  font-size: 15px;
  font-weight: 850;
}

.premium-two-columns i {
  flex: 0 0 auto;
  color: #ff6b1a;
  font-size: 19px;
}

.easychat-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px;
  border-radius: 20px;
  background: #f4f8ff;
}

.easychat-metric-card {
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 16px 14px;
  border: 1px solid rgba(18, 109, 255, 0.10);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.05);
}

.easychat-metric-card > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 19px;
}

.easychat-metric-card span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
}

.easychat-metric-card strong {
  color: #071b4d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.easychat-metric-card em {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #0ca960;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.easychat-benefits-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
}

.easychat-dashboard-visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.easychat-dashboard-visual img {
  position: absolute;
  left: -10px;
  bottom: -4px;
  width: 112%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(7, 27, 77, 0.13));
}

.easychat-control-callout {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 27, 77, 0.06);
}

.easychat-control-callout i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 22px;
}

.easychat-control-callout strong {
  color: #071b4d;
  font-size: 17px;
  line-height: 1.18;
}

.easychat-control-callout span {
  color: #ff6b1a;
}

.easychat-comparison-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: start;
  margin-bottom: 34px;
}

.easychat-comparison-chart {
  position: relative;
  width: 140px;
  height: 126px;
  justify-self: end;
  border-radius: 24px;
  background:
    radial-gradient(circle at 65% 35%, rgba(18, 109, 255, 0.16), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(234, 245, 255, 0.78));
  filter: drop-shadow(0 16px 28px rgba(18, 109, 255, 0.13));
}

.easychat-comparison-chart .chart-message {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 11px;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 27, 77, 0.13);
}

.easychat-comparison-chart .chart-message-blue {
  top: 15px;
  right: 18px;
  background: linear-gradient(135deg, #48a0ff, #126dff);
}

.easychat-comparison-chart .chart-message-orange {
  top: 46px;
  left: 18px;
  background: linear-gradient(135deg, #ff9a2f, #ff6b1a);
}

.easychat-comparison-chart .chart-message i {
  font-size: 20px;
}

.easychat-comparison-chart .chart-bars {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.easychat-comparison-chart .chart-bars em {
  display: block;
  width: 14px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #58a8ff, #126dff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.easychat-comparison-chart .chart-bars em:nth-child(1) { height: 28px; opacity: 0.72; }
.easychat-comparison-chart .chart-bars em:nth-child(2) { height: 42px; opacity: 0.82; }
.easychat-comparison-chart .chart-bars em:nth-child(3) { height: 58px; opacity: 0.92; }
.easychat-comparison-chart .chart-bars em:nth-child(4) { height: 78px; }

.easychat-comparison-chart .chart-trend {
  position: absolute;
  right: 16px;
  bottom: 33px;
  color: #ff6b1a;
  font-size: 72px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 8px 14px rgba(255, 107, 26, 0.20));
}

.easychat-comparison-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.easychat-comparison-column {
  overflow: hidden;
  border: 1px solid rgba(18, 109, 255, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 27, 77, 0.05);
}

.easychat-comparison-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin: 0;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 950;
}

.easychat-comparison-column h3 > i {
  font-size: 24px;
}

.easychat-comparison-column h3 > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.easychat-comparison-column ul {
  display: grid;
  gap: 16px;
  min-height: 314px;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.easychat-comparison-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #071b4d;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.easychat-comparison-column li i {
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 18px;
}

.easychat-common {
  background: linear-gradient(180deg, rgba(255, 242, 242, 0.76), #ffffff 45%);
}

.easychat-common h3 {
  color: #ff3b35;
  background: rgba(255, 59, 53, 0.10);
}

.easychat-common li i {
  color: #ff3b35;
}

.easychat-better {
  background: linear-gradient(180deg, rgba(234, 245, 255, 0.92), #ffffff 45%);
}

.easychat-better h3 {
  color: #126dff;
  background: rgba(18, 109, 255, 0.10);
}

.easychat-better li i {
  color: #23b84d;
}

.easychat-comparison-figure {
  display: block;
  width: calc(100% - 48px);
  height: 210px;
  margin: 0 auto 24px;
  border-radius: 18px;
  object-fit: contain;
  background: #ffffff;
}

.easychat-frustration-figure {
  object-position: center bottom;
  filter: grayscale(1) contrast(0.96);
}

.easychat-success-figure {
  width: calc(100% - 30px);
  object-position: center bottom;
  clip-path: inset(0 3px 0 3px round 18px);
}

@media (min-width: 1200px) {
  .easychat-results-comparison-section {
    padding: 54px 0 !important;
  }

  .easychat-premium-card {
    min-height: 660px;
    padding: 30px;
  }

  .easychat-card-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    min-height: 212px;
  }

  .easychat-card-copy h2,
  .easychat-comparison-header h2 {
    font-size: clamp(30px, 2.25vw, 40px);
  }

  .easychat-card-copy p,
  .easychat-comparison-header p {
    font-size: 13.5px;
  }

  .easychat-benefits-robot {
    width: 220px;
    height: 210px;
  }

  .easychat-kicker {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .premium-two-columns {
    gap: 12px 24px;
    margin: 22px 0 24px;
  }

  .premium-two-columns div {
    font-size: 12.5px;
  }

  .easychat-metric-card {
    min-height: 112px;
    padding: 13px 12px;
  }

  .easychat-metric-card strong {
    font-size: 21px;
  }

  .easychat-metric-card span,
  .easychat-metric-card em {
    font-size: 10px;
  }

  .easychat-dashboard-visual {
    min-height: 190px;
  }

  .easychat-control-callout {
    min-height: 120px;
    padding: 18px;
  }

  .easychat-control-callout strong {
    font-size: 14px;
  }

  .easychat-comparison-header {
    grid-template-columns: minmax(0, 1fr) 124px;
    margin-bottom: 26px;
  }

  .easychat-comparison-chart {
    width: 116px;
    height: 106px;
  }

  .easychat-comparison-column h3 {
    min-height: 56px;
    padding: 15px 20px;
    font-size: 16px;
  }

  .easychat-comparison-column ul {
    gap: 13px;
    min-height: 266px;
    padding: 20px;
  }

  .easychat-comparison-column li {
    font-size: 12.5px;
  }

  .easychat-comparison-figure {
    height: 172px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1199.98px) {
  .easychat-results-comparison-grid {
    grid-template-columns: 1fr;
  }

  .easychat-premium-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .easychat-results-comparison-section {
    padding: 56px 0;
  }

  .easychat-premium-card {
    padding: 24px;
    border-radius: 24px;
  }

  .easychat-card-hero,
  .easychat-comparison-header,
  .easychat-benefits-visuals,
  .easychat-comparison-board {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-robot,
  .easychat-comparison-chart {
    justify-self: center;
  }

  .easychat-card-copy h2,
  .easychat-comparison-header h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .premium-two-columns,
  .easychat-metrics-row {
    grid-template-columns: 1fr;
  }

  .easychat-benefits-visuals {
    gap: 16px;
  }

  .easychat-dashboard-visual {
    min-height: 180px;
  }

  .easychat-dashboard-visual img {
    width: 118%;
  }

  .easychat-control-callout {
    min-height: auto;
  }

  .easychat-comparison-column ul {
    min-height: auto;
  }

  .ecx-mobile-cta {
    display: none !important;
  }
}

/* EasyChat hero alignment - dashboard proportional to left copy */
.container-wide {
  width: min(100% - 64px, 1760px);
  margin-inline: auto;
}

.easychat-hero {
  position: relative !important;
  overflow: hidden !important;
  padding: 72px 0 76px !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%) !important;
}

.easychat-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(520px, 0.42fr) minmax(760px, 0.58fr) !important;
  gap: 64px !important;
  align-items: center !important;
  min-height: 720px !important;
}

.easychat-hero-copy {
  max-width: 650px !important;
  align-self: center !important;
}

.easychat-hero-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  color: #126dff !important;
  background: rgba(18, 109, 255, 0.08) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.easychat-hero-copy h1 {
  margin: 0 0 22px !important;
  color: #071b4d !important;
  font-size: clamp(42px, 3.45vw, 62px) !important;
  font-weight: 950 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance;
}

.easychat-hero-copy h1 strong {
  color: #ff6b1a !important;
}

.easychat-hero-copy p {
  max-width: 600px !important;
  margin: 0 0 28px !important;
  color: #53627f !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.easychat-hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 34px !important;
}

.btn-primary-easychat,
.btn-secondary-easychat,
.easychat-hero-actions .ecx-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.btn-primary-easychat {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5a00 100%) !important;
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28) !important;
}

.btn-secondary-easychat {
  color: #071b4d !important;
  background: #ffffff !important;
  border: 1px solid rgba(18, 109, 255, 0.16) !important;
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06) !important;
}

.easychat-hero-highlights {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(118px, 1fr)) !important;
  gap: 14px !important;
}

.easychat-highlight-card,
.easychat-hero-highlights > div {
  min-height: 128px !important;
  padding: 16px 14px !important;
  border: 1px solid rgba(18, 109, 255, 0.14) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.07) !important;
}

.easychat-highlight-card i,
.easychat-hero-highlights i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  margin-bottom: 12px !important;
  border-radius: 14px !important;
  color: #126dff !important;
  background: #eaf5ff !important;
  font-size: 20px !important;
}

.easychat-highlight-card strong,
.easychat-hero-highlights strong {
  display: block !important;
  margin-bottom: 7px !important;
  color: #071b4d !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.easychat-highlight-card span,
.easychat-hero-highlights span {
  display: block !important;
  color: #53627f !important;
  font-size: 11.5px !important;
  line-height: 1.4 !important;
}

.easychat-hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  min-width: 0 !important;
}

.easychat-hero .easychat-dashboard-frame,
.easychat-dashboard-frame {
  position: relative !important;
  width: 100% !important;
  max-width: 960px !important;
  margin-inline: auto !important;
  transform: translateY(-4px) !important;
  isolation: isolate !important;
}

.easychat-hero .easychat-dashboard-frame::before,
.easychat-dashboard-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% 5% !important;
  z-index: -1 !important;
  border-radius: 40px !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(18, 109, 255, 0.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 26, 0.10), transparent 38%) !important;
  filter: blur(34px) !important;
  opacity: 0.85 !important;
}

.easychat-hero .easychat-dashboard-image,
.easychat-dashboard-image {
  display: block !important;
  width: 100% !important;
  max-width: 960px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 30px !important;
  filter:
    drop-shadow(0 28px 70px rgba(7, 27, 77, 0.14))
    drop-shadow(0 8px 24px rgba(18, 109, 255, 0.08)) !important;
}

.easychat-hero-copy h1,
.easychat-hero-copy p,
.easychat-highlight-card strong,
.easychat-highlight-card span {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

@media (max-width: 1399px) {
  .easychat-hero-grid {
    grid-template-columns: minmax(440px, 0.44fr) minmax(620px, 0.56fr) !important;
    gap: 52px !important;
    min-height: 660px !important;
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-frame,
  .easychat-dashboard-image {
    max-width: 860px !important;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(40px, 3.6vw, 56px) !important;
  }
}

@media (max-width: 1199px) {
  .easychat-hero {
    padding: 64px 0 72px !important;
  }

  .easychat-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    min-height: auto !important;
  }

  .easychat-hero-copy {
    max-width: 780px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .easychat-hero-copy p {
    margin-inline: auto !important;
  }

  .easychat-hero-actions {
    justify-content: center !important;
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-frame,
  .easychat-dashboard-image {
    max-width: 900px !important;
  }

  .easychat-hero-highlights {
    max-width: 760px !important;
    margin-inline: auto !important;
    grid-template-columns: repeat(4, minmax(120px, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .container-wide {
    width: min(100% - 40px, 960px);
  }

  .easychat-hero-highlights {
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .container-wide {
    width: min(100% - 28px, 640px);
  }

  .easychat-hero {
    padding: 56px 0 !important;
  }

  .easychat-hero-copy {
    text-align: left !important;
  }

  .easychat-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.05 !important;
  }

  .easychat-hero-copy p {
    font-size: 15.5px !important;
  }

  .easychat-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn-primary-easychat,
  .btn-secondary-easychat {
    width: 100% !important;
  }

  .easychat-hero-highlights {
    grid-template-columns: 1fr !important;
  }

  .easychat-hero .easychat-dashboard-frame,
  .easychat-dashboard-frame {
    transform: none !important;
  }

  .easychat-hero .easychat-dashboard-image,
  .easychat-dashboard-image {
    border-radius: 22px !important;
  }
}

/* EasyChat results/comparison compact desktop fit */
@media (min-width: 1200px) {
  .easychat-results-comparison-section {
    padding: 36px 0 !important;
  }

  .easychat-results-comparison-grid {
    gap: 20px !important;
  }

  .easychat-premium-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .easychat-card-hero {
    grid-template-columns: minmax(0, 1fr) 190px !important;
    min-height: 170px !important;
    gap: 16px !important;
  }

  .easychat-kicker {
    margin-bottom: 8px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.18em !important;
  }

  .easychat-card-copy h2,
  .easychat-comparison-header h2 {
    margin-bottom: 10px !important;
    font-size: clamp(28px, 2.05vw, 36px) !important;
    line-height: 1.02 !important;
  }

  .easychat-card-copy p,
  .easychat-comparison-header p {
    max-width: 560px !important;
    font-size: 12.5px !important;
    line-height: 1.48 !important;
  }

  .easychat-benefits-robot {
    width: 190px !important;
    height: 168px !important;
  }

  .premium-two-columns {
    gap: 9px 22px !important;
    margin: 16px 0 18px !important;
  }

  .premium-two-columns div {
    gap: 8px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .premium-two-columns i {
    font-size: 16px !important;
  }

  .easychat-metrics-row {
    gap: 8px !important;
    margin-bottom: 18px !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }

  .easychat-metric-card {
    min-height: 94px !important;
    padding: 11px 10px !important;
    gap: 4px !important;
    border-radius: 14px !important;
  }

  .easychat-metric-card > i {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
  }

  .easychat-metric-card span,
  .easychat-metric-card em {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }

  .easychat-metric-card strong {
    font-size: 19px !important;
  }

  .easychat-benefits-visuals {
    grid-template-columns: minmax(0, 1fr) 150px !important;
    gap: 14px !important;
  }

  .easychat-dashboard-visual {
    min-height: 152px !important;
    border-radius: 16px !important;
  }

  .easychat-dashboard-visual img {
    left: -8px !important;
    bottom: -3px !important;
    width: 108% !important;
  }

  .easychat-control-callout {
    grid-template-columns: 32px 1fr !important;
    gap: 10px !important;
    min-height: 96px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .easychat-control-callout i {
    width: 32px !important;
    height: 32px !important;
    border-radius: 11px !important;
    font-size: 18px !important;
  }

  .easychat-control-callout strong {
    font-size: 12.5px !important;
    line-height: 1.12 !important;
  }

  .easychat-comparison-header {
    grid-template-columns: minmax(0, 1fr) 104px !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
  }

  .easychat-comparison-chart {
    width: 96px !important;
    height: 88px !important;
    border-radius: 18px !important;
  }

  .easychat-comparison-chart .chart-message {
    width: 32px !important;
    height: 26px !important;
    border-radius: 9px !important;
  }

  .easychat-comparison-chart .chart-message i {
    font-size: 15px !important;
  }

  .easychat-comparison-chart .chart-message-blue {
    top: 10px !important;
    right: 12px !important;
  }

  .easychat-comparison-chart .chart-message-orange {
    top: 34px !important;
    left: 12px !important;
  }

  .easychat-comparison-chart .chart-bars {
    right: 12px !important;
    bottom: 12px !important;
    gap: 4px !important;
  }

  .easychat-comparison-chart .chart-bars em {
    width: 10px !important;
  }

  .easychat-comparison-chart .chart-bars em:nth-child(1) { height: 20px !important; }
  .easychat-comparison-chart .chart-bars em:nth-child(2) { height: 30px !important; }
  .easychat-comparison-chart .chart-bars em:nth-child(3) { height: 42px !important; }
  .easychat-comparison-chart .chart-bars em:nth-child(4) { height: 56px !important; }

  .easychat-comparison-chart .chart-trend {
    right: 10px !important;
    bottom: 24px !important;
    font-size: 52px !important;
  }

  .easychat-comparison-board {
    gap: 14px !important;
  }

  .easychat-comparison-column {
    border-radius: 18px !important;
  }

  .easychat-comparison-column h3 {
    min-height: 46px !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    font-size: 14px !important;
  }

  .easychat-comparison-column h3 > i {
    font-size: 18px !important;
  }

  .easychat-comparison-column h3 > img {
    width: 22px !important;
    height: 22px !important;
  }

  .easychat-comparison-column ul {
    gap: 9px !important;
    min-height: 0 !important;
    padding: 15px 18px 12px !important;
  }

  .easychat-comparison-column li {
    gap: 8px !important;
    font-size: 11.5px !important;
    line-height: 1.24 !important;
  }

  .easychat-comparison-column li i {
    font-size: 14px !important;
  }

  .easychat-comparison-figure {
    width: calc(100% - 36px) !important;
    height: 128px !important;
    margin: 0 auto 14px !important;
    border-radius: 14px !important;
  }
}

/* EasyLine full landing page */
:root {
  --easyline-blue-dark: #071b4d;
  --easyline-blue: #126dff;
  --easyline-blue-soft: #eaf5ff;
  --easyline-orange: #ff6b1a;
  --easyline-green: #0ca960;
  --easyline-muted: #53627f;
  --easyline-bg: #f8fbff;
  --easyline-border: rgba(18, 109, 255, 0.14);
  --easyline-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --easyline-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
  --page-max: 1440px;
  --page-wide: 1680px;
}

.easyline-page {
  background: #ffffff;
  color: var(--easyline-blue-dark);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.easyline-page .container {
  width: min(100% - 64px, var(--page-max));
  max-width: none;
}

.easyline-page .container-wide {
  width: min(100% - 64px, var(--page-wide));
  margin-inline: auto;
}

.easyline-page h1,
.easyline-page h2,
.easyline-page h3 {
  color: var(--easyline-blue-dark);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.easyline-page p {
  color: var(--easyline-muted);
  line-height: 1.65;
}

.easyline-page h1,
.easyline-page h2,
.easyline-page h3,
.easyline-page p,
.easyline-page span,
.easyline-page li,
.easyline-page a,
.easyline-page strong {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.easyline-header .nav-link.active {
  color: var(--easyline-blue) !important;
  font-weight: 900;
}

.easyline-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 52px;
  background:
    radial-gradient(circle at 74% 16%, rgba(18, 109, 255, 0.16), transparent 34%),
    radial-gradient(circle at 94% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 58%, #fff7f2 100%);
}

.easyline-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}

.easyline-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.43fr) minmax(600px, 0.57fr);
  gap: 56px;
  align-items: center;
}

.easyline-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--easyline-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.easyline-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(38px, 3.05vw, 58px);
  line-height: 1.06;
}

.easyline-hero-copy h1 strong {
  color: var(--easyline-blue);
}

.easyline-hero-copy p {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: 16px;
}

.easyline-hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0 22px;
}

.btn-primary-easyline,
.btn-secondary-easyline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.btn-primary-easyline {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5a00 100%);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.26);
}

.btn-secondary-easyline {
  color: var(--easyline-blue-dark);
  background: #ffffff;
  border: 1px solid var(--easyline-border);
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06);
}

.btn-primary-easyline:hover,
.btn-secondary-easyline:hover {
  transform: translateY(-3px);
}

.easyline-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 28px;
}

.easyline-hero-benefits div,
.easyline-mini-grid div,
.easyline-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--easyline-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 34px rgba(7, 27, 77, 0.05);
  color: var(--easyline-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.easyline-hero-benefits div {
  min-height: 70px;
  padding: 14px;
}

.easyline-hero-benefits i,
.easyline-mini-grid i,
.easyline-cta-benefits i {
  color: var(--easyline-blue);
  font-size: 22px;
}

.easyline-hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 36%, rgba(18, 109, 255, .18), transparent 38%),
    rgba(255, 255, 255, .58);
  isolation: isolate;
}

.easyline-map-glow {
  position: absolute;
  inset: 8% 8% 14%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 109, 255, .24), transparent 62%);
  filter: blur(30px);
}

.easyline-network-img {
  position: absolute;
  top: 6%;
  left: 20%;
  width: min(54%, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 54px rgba(18, 109, 255, .18));
}

.easyline-phone-img {
  position: absolute;
  left: 10%;
  bottom: 4%;
  width: min(62%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(7, 27, 77, .18));
}

.easyline-coverage-map {
  position: absolute;
  top: 10%;
  right: 22%;
  display: grid;
  place-items: center;
  width: 300px;
  height: 210px;
  border-radius: 48% 52% 42% 58%;
  color: #ffffff;
  background: linear-gradient(135deg, #126dff, #0a4ec8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26), 0 24px 64px rgba(18, 109, 255, .28);
  opacity: .92;
}

.easyline-coverage-map i {
  font-size: 86px;
  opacity: .18;
}

.easyline-coverage-map span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9ee7ff;
  box-shadow: 0 0 0 8px rgba(158,231,255,.14), 0 0 22px rgba(158,231,255,.9);
}

.easyline-coverage-map span:nth-child(2) { top: 34%; left: 28%; }
.easyline-coverage-map span:nth-child(3) { top: 48%; left: 44%; }
.easyline-coverage-map span:nth-child(4) { top: 30%; right: 26%; }
.easyline-coverage-map span:nth-child(5) { bottom: 28%; left: 38%; }
.easyline-coverage-map span:nth-child(6) { bottom: 36%; right: 30%; }

.easyline-floating-card {
  position: absolute;
  right: 4%;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid var(--easyline-border);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.10);
}

.easyline-floating-card i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--easyline-blue), #0ca960);
  font-size: 22px;
}

.easyline-floating-card strong {
  color: var(--easyline-blue-dark);
  font-size: 14px;
  line-height: 1;
}

.easyline-floating-card span {
  color: var(--easyline-muted);
  font-size: 12px;
}

.card-line { top: 12%; }
.card-portability { top: 30%; }
.card-calls { top: 48%; }
.card-integration { top: 66%; }

.easyline-section {
  padding: 78px 0;
}

.easyline-problems,
.easyline-coverage,
.easyline-benefits {
  background: var(--easyline-bg);
}

.easyline-section-header {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.easyline-section-header h2,
.easyline-split-card h2,
.easyline-coverage h2,
.easyline-comparison h2,
.easyline-cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
}

.easyline-section-header p {
  margin: 0 auto;
  max-width: 980px;
  font-size: 16px;
}

.easyline-card-grid {
  display: grid;
  gap: 22px;
}

.easyline-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.easyline-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.easyline-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--easyline-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.easyline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18,109,255,.28);
  box-shadow: var(--easyline-shadow-lg);
}

.easyline-card > i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--easyline-blue);
  background: var(--easyline-blue-soft);
  font-size: 28px;
}

.easyline-problem > i {
  color: #e5484d;
  background: rgba(229, 72, 77, .10);
}

.easyline-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
}

.easyline-card p {
  margin: 0;
  font-size: 14px;
}

.easyline-steps {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.easyline-steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.easyline-steps-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(18,109,255,.30);
}

.easyline-steps-grid article {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 24px 18px;
  border: 1px solid var(--easyline-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
  text-align: center;
}

.easyline-steps-grid article > span {
  position: absolute;
  top: -14px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--easyline-blue);
  font-weight: 900;
  transform: translateX(-50%);
}

.easyline-steps-grid i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 8px auto 16px;
  border-radius: 999px;
  color: var(--easyline-blue);
  background: var(--easyline-blue-soft);
  font-size: 30px;
}

.easyline-steps-grid h3 {
  font-size: 17px;
}

.easyline-steps-grid p {
  margin: 0;
  font-size: 14px;
}

.easyline-split-grid,
.easyline-coverage-grid,
.easyline-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.easyline-split-card,
.easyline-visual-card,
.easyline-map-panel,
.easyline-comparison {
  padding: 34px;
  border: 1px solid var(--easyline-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
}

.easyline-split-card p {
  font-size: 16px;
}

.easyline-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.easyline-mini-grid div {
  min-height: 86px;
  padding: 14px;
  flex-direction: column;
  align-items: flex-start;
}

.easyline-split-card small {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--easyline-muted);
  background: var(--easyline-blue-soft);
  font-weight: 700;
}

.easyline-visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 340px;
  background:
    radial-gradient(circle at 70% 40%, rgba(18,109,255,.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.easyline-visual-card strong {
  padding: 22px 30px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #071b4d, #126dff);
  font-size: clamp(24px, 2vw, 34px);
  box-shadow: 0 24px 54px rgba(18,109,255,.22);
}

.easyline-visual-card > i {
  color: var(--easyline-blue);
  font-size: 54px;
}

.easyline-cloud {
  display: grid;
  place-items: center;
  width: 140px;
  height: 100px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #58a8ff, #126dff);
  box-shadow: 0 24px 54px rgba(18,109,255,.22);
}

.easyline-cloud i {
  font-size: 50px;
}

.easyline-flow {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
  gap: 16px;
}

.easyline-flow article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--easyline-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
  text-align: center;
}

.easyline-flow article i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 20px;
  color: var(--easyline-blue);
  background: var(--easyline-blue-soft);
  font-size: 34px;
}

.easyline-flow > i {
  color: var(--easyline-blue);
  font-size: 42px;
}

.easyline-coverage-grid {
  align-items: center;
}

.easyline-coverage h2 {
  max-width: 680px;
}

.easyline-check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.easyline-check-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--easyline-blue-dark);
  font-weight: 750;
}

.easyline-check-list i {
  color: var(--easyline-green);
  font-size: 24px;
}

.easyline-map-panel {
  display: grid;
  place-items: center;
  min-height: 380px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18,109,255,.14), transparent 45%),
    #ffffff;
}

.easyline-map-panel img {
  max-width: 560px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 54px rgba(18,109,255,.14));
}

.easyline-left-header {
  margin-inline: 0;
  text-align: left;
}

.easyline-benefit-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.easyline-benefit-icons div {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--easyline-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
  text-align: center;
  color: var(--easyline-blue-dark);
  font-weight: 850;
}

.easyline-benefit-icons i {
  margin-bottom: 10px;
  color: var(--easyline-blue);
  font-size: 30px;
}

.easyline-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.easyline-comparison-grid > div {
  overflow: hidden;
  border: 1px solid var(--easyline-border);
  border-radius: 20px;
  background: #ffffff;
}

.easyline-comparison-grid h3 {
  margin: 0;
  padding: 16px 20px;
  color: #ffffff;
  background: #e5484d;
  font-size: 18px;
}

.easyline-comparison-grid > div:nth-child(2) h3 {
  background: var(--easyline-blue);
}

.easyline-comparison-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px;
  list-style: none;
}

.easyline-comparison-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--easyline-blue-dark);
  font-size: 14px;
  font-weight: 750;
}

.easyline-comparison-grid li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #e5484d;
  font-weight: 900;
}

.easyline-comparison-grid > div:nth-child(2) li::before {
  content: "✓";
  color: var(--easyline-green);
}

.easyline-faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.easyline-faq-list details {
  border: 1px solid var(--easyline-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--easyline-shadow);
}

.easyline-faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--easyline-blue-dark);
  font-weight: 900;
}

.easyline-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.easyline-final-cta {
  padding: 78px 0;
  background: #ffffff;
}

.easyline-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 46px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 36%, rgba(255,107,26,.46), transparent 32%),
    linear-gradient(115deg, #0039d8 0%, #062b93 52%, #ff6b1a 100%);
  box-shadow: 0 34px 110px rgba(7, 27, 77, 0.22);
}

.easyline-cta-card h2,
.easyline-cta-card p {
  color: #ffffff;
}

.easyline-cta-card h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.3vw, 56px);
}

.easyline-cta-card p {
  max-width: 780px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
}

.easyline-cta-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(0,0,0,.22));
}

.easyline-cta-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.easyline-cta-benefits span {
  min-height: 58px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}

.easyline-cta-benefits i {
  color: #ffffff;
}

@media (max-width: 1399px) {
  .easyline-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .easyline-benefit-icons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .easyline-hero-grid {
    grid-template-columns: minmax(390px, 0.44fr) minmax(520px, 0.56fr);
    gap: 40px;
  }
  .easyline-hero-copy h1 {
    font-size: clamp(36px, 3.15vw, 50px);
  }
  .easyline-hero-visual {
    min-height: 440px;
  }
  .easyline-coverage-map {
    width: 250px;
    height: 180px;
  }
}

@media (max-width: 1199px) {
  .easyline-hero-grid { grid-template-columns: 1fr; }
  .easyline-hero-copy { max-width: 900px; text-align: center; margin-inline: auto; }
  .easyline-hero-copy h1 { max-width: 820px; margin-inline: auto; }
  .easyline-hero-copy p { margin-inline: auto; }
  .easyline-hero-actions { justify-content: center; }
  .easyline-hero-benefits { margin-inline: auto; }
  .easyline-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .easyline-split-grid,
  .easyline-coverage-grid,
  .easyline-benefits-grid,
  .easyline-cta-card {
    grid-template-columns: 1fr;
  }
  .easyline-flow {
    grid-template-columns: 1fr;
  }
  .easyline-flow > i {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .easyline-steps-grid {
    grid-template-columns: 1fr;
  }
  .easyline-steps-grid::before {
    display: none;
  }
  .easyline-hero-visual { min-height: 520px; }
}

@media (max-width: 991px) {
  .easyline-page .container,
  .easyline-page .container-wide {
    width: min(100% - 40px, 960px);
  }
  .easyline-hero-benefits,
  .easyline-mini-grid,
  .easyline-cta-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .easyline-steps-grid {
    grid-template-columns: 1fr;
  }
  .easyline-steps-grid::before {
    display: none;
  }
  .easyline-floating-card {
    position: static;
    min-width: 0;
  }
  .easyline-hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: auto;
    padding-top: 360px;
  }
  .easyline-network-img { top: 24px; left: 12%; width: 46%; }
  .easyline-phone-img { top: 92px; left: 8%; bottom: auto; width: 58%; }
  .easyline-coverage-map { top: 26px; right: 5%; width: 220px; height: 160px; }
}

@media (max-width: 640px) {
  .easyline-page .container,
  .easyline-page .container-wide {
    width: min(100% - 28px, 640px);
  }
  .easyline-hero,
  .easyline-section,
  .easyline-final-cta {
    padding: 56px 0;
  }
  .easyline-hero-copy,
  .easyline-section-header,
  .easyline-left-header {
    text-align: left;
  }
  .easyline-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .easyline-hero-actions {
    flex-direction: column;
  }
  .btn-primary-easyline,
  .btn-secondary-easyline {
    width: 100%;
  }
  .easyline-hero-benefits,
  .easyline-grid-4,
  .easyline-grid-5,
  .easyline-mini-grid,
  .easyline-benefit-icons,
  .easyline-comparison-grid,
  .easyline-cta-benefits {
    grid-template-columns: 1fr;
  }
  .easyline-hero-visual {
    grid-template-columns: 1fr;
    padding-top: 300px;
  }
  .easyline-network-img { top: 18px; left: 6%; width: 58%; }
  .easyline-phone-img { top: 100px; left: 0; width: 78%; }
  .easyline-coverage-map { top: 18px; right: 0; width: 160px; height: 120px; }
  .easyline-card,
  .easyline-split-card,
  .easyline-visual-card,
  .easyline-map-panel,
  .easyline-comparison,
  .easyline-cta-card {
    padding: 24px;
    border-radius: 22px;
  }
  .easyline-visual-card {
    flex-direction: column;
  }
}

/* EASYLINE PORTABILIDADE NUMERICA - seção premium */
.easyline-portability-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(18, 109, 255, 0.08), transparent 34%),
    radial-gradient(circle at 86% 38%, rgba(18, 109, 255, 0.06), transparent 32%),
    #ffffff;
}

.easyline-portability-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(640px, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

.easyline-portability-copy-card,
.easyline-portability-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border: 1px solid rgba(18, 109, 255, 0.16);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 28px 90px rgba(7, 27, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.easyline-portability-copy-card {
  padding: 58px 58px 42px;
}

.easyline-portability-visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 109, 255, 0.10), transparent 42%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.easyline-portability-copy-card .easyline-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #126dff;
  background: rgba(18, 109, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.easyline-portability-copy-card .easyline-kicker i {
  font-size: 19px;
}

.easyline-portability-copy-card h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #071b4d;
  font-size: clamp(42px, 3.6vw, 64px);
  font-weight: 950;
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.easyline-portability-copy-card > p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #53627f;
  font-size: 19px;
  line-height: 1.7;
}

.easyline-portability-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.easyline-portability-benefit-card {
  min-height: 150px;
  padding: 24px 20px;
  border: 1px solid rgba(18, 109, 255, 0.15);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.06);
}

.easyline-portability-benefit-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 25px;
}

.easyline-portability-benefit-card strong {
  display: block;
  color: #071b4d;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.easyline-portability-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 22px;
  background: #eaf5ff;
}

.easyline-portability-note i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #126dff;
  background: #ffffff;
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.08);
}

.easyline-portability-note p {
  margin: 0;
  color: #344563;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.easyline-portability-visual-image {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  filter:
    drop-shadow(0 28px 70px rgba(7, 27, 77, 0.12))
    drop-shadow(0 8px 22px rgba(18, 109, 255, 0.10));
}

@media (max-width: 1399px) {
  .easyline-portability-layout {
    grid-template-columns: 1fr;
    max-width: 1120px;
    margin-inline: auto;
  }

  .easyline-portability-copy-card,
  .easyline-portability-visual-card {
    min-height: auto;
  }

  .easyline-portability-visual-card {
    padding: 42px;
  }

  .easyline-portability-visual-image {
    max-width: 860px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .easyline-portability-layout {
    grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
    max-width: none;
  }

  .easyline-portability-copy-card {
    padding: 48px 44px 36px;
  }

  .easyline-portability-copy-card h2 {
    font-size: clamp(38px, 3.2vw, 52px);
  }

  .easyline-portability-copy-card > p {
    font-size: 17px;
  }

  .easyline-portability-benefits {
    gap: 14px;
  }

  .easyline-portability-benefit-card {
    min-height: 132px;
    padding: 20px 16px;
  }

  .easyline-portability-visual-card {
    padding: 28px;
  }

  .easyline-portability-visual-image {
    max-width: 620px;
  }
}

@media (max-width: 991px) {
  .easyline-portability-section {
    padding: 72px 0;
  }

  .easyline-portability-copy-card {
    padding: 42px 34px;
  }

  .easyline-portability-copy-card h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .easyline-portability-copy-card > p {
    font-size: 17px;
  }

  .easyline-portability-benefits {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .easyline-portability-visual-card {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .easyline-portability-section {
    padding: 56px 0;
  }

  .easyline-portability-copy-card,
  .easyline-portability-visual-card {
    border-radius: 26px;
  }

  .easyline-portability-copy-card {
    padding: 34px 24px;
  }

  .easyline-portability-copy-card .easyline-kicker {
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .easyline-portability-copy-card h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
  }

  .easyline-portability-copy-card > p {
    font-size: 16px;
  }

  .easyline-portability-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .easyline-portability-benefit-card {
    min-height: auto;
  }

  .easyline-portability-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .easyline-portability-note p {
    font-size: 15.5px;
  }

  .easyline-portability-visual-card {
    padding: 20px;
  }

  .easyline-portability-visual-image {
    border-radius: 20px;
  }
}

/* EASYLINE - benefícios e comparativo premium */
.container-wide {
  width: min(100% - 64px, 1760px);
  margin-inline: auto;
}

.easyline-results-comparison-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 109, 255, 0.08), transparent 34%),
    radial-gradient(circle at 84% 34%, rgba(255, 107, 26, 0.045), transparent 30%),
    #f8fbff;
}

.easyline-results-comparison-grid {
  display: grid;
  grid-template-columns: minmax(620px, 0.95fr) minmax(620px, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

.easyline-results-panel,
.easyline-comparison-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(18, 109, 255, 0.16);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 28px 90px rgba(7, 27, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.easyline-section-title-left {
  max-width: 720px;
  margin-bottom: 36px;
}

.easyline-section-title-left .easyline-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #126dff;
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.easyline-section-title-left .easyline-kicker i {
  font-size: 18px;
}

.easyline-section-title-left h2 {
  margin: 0 0 18px;
  color: #071b4d;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.easyline-section-title-left p {
  margin: 0;
  color: #53627f;
  font-size: 17px;
  line-height: 1.65;
}

.easyline-benefits-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.easyline-benefit-premium-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 109, 255, 0.035), #ffffff);
  box-shadow: 0 16px 42px rgba(7, 27, 77, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.easyline-benefit-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 109, 255, 0.24);
  box-shadow: 0 22px 58px rgba(7, 27, 77, 0.09);
}

.easyline-benefit-premium-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #126dff;
  background: #eaf5ff;
  font-size: 24px;
}

.easyline-benefit-premium-card strong {
  display: block;
  margin-bottom: 10px;
  color: #071b4d;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.easyline-benefit-premium-card span {
  display: block;
  color: #53627f;
  font-size: 14px;
  line-height: 1.55;
}

.easyline-comparison-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.easyline-comparison-column {
  overflow: hidden;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(7, 27, 77, 0.06);
}

.easyline-old-column {
  border-color: rgba(240, 68, 56, 0.18);
}

.easyline-new-column {
  border-color: rgba(18, 109, 255, 0.20);
}

.easyline-comparison-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 22px 26px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.easyline-old-column .easyline-comparison-column-header {
  background: #e9474f;
}

.easyline-new-column .easyline-comparison-column-header {
  color: #071b4d;
  background: linear-gradient(135deg, #eaf5ff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(18, 109, 255, 0.14);
}

.easyline-logo-header {
  justify-content: center;
}

.easyline-comparison-logo {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 54px;
  object-fit: contain;
}

.easyline-comparison-column ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px 26px 32px;
  list-style: none;
}

.easyline-comparison-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #071b4d;
  font-size: 15.5px;
  font-weight: 850;
  line-height: 1.38;
}

.easyline-old-column li i {
  color: #e9474f;
  font-weight: 900;
}

.easyline-new-column li i {
  color: #0ca960;
  font-weight: 900;
}

.easyline-comparison-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #eaf5ff;
}

.easyline-comparison-note i {
  flex: 0 0 auto;
  color: #126dff;
  font-size: 24px;
}

.easyline-comparison-note p {
  margin: 0;
  color: #344563;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.easyline-benefit-premium-card strong,
.easyline-benefit-premium-card span,
.easyline-comparison-column li {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* EASYCHAT - correção de escala e alinhamento do header/hero */
body.easychat-page {
  overflow-x: hidden;
}

body.easychat-page .header .container {
  width: min(100% - 64px, 1440px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 0;
}

body.easychat-page .header .navbar {
  min-height: 112px;
  padding: 20px 0;
}

body.easychat-page .header .navbar-brand img {
  width: clamp(210px, 17vw, 280px);
  max-height: 92px;
  object-fit: contain;
}

body.easychat-page .header .navbar-nav {
  align-items: center;
  gap: 8px;
}

body.easychat-page .container-wide {
  width: min(100% - 64px, 1760px);
  max-width: 1760px;
  margin-inline: auto;
}

body.easychat-page .easychat-hero {
  overflow: hidden;
  padding: 72px 0 80px;
}

body.easychat-page .easychat-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.42fr) minmax(680px, 0.58fr);
  gap: 64px;
  align-items: center;
}

body.easychat-page .easychat-hero-copy {
  max-width: 620px;
  min-width: 0;
}

body.easychat-page .easychat-hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 3.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.easychat-page .easychat-hero-copy p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
}

body.easychat-page .easychat-hero-highlights {
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 16px;
}

body.easychat-page .easychat-highlight-card {
  min-height: 148px;
}

body.easychat-page .easychat-hero-visual {
  min-width: 0;
}

body.easychat-page .easychat-dashboard-frame,
body.easychat-page .easychat-dashboard-image {
  width: 100%;
  max-width: 980px;
}

body.easychat-page .easychat-dashboard-image {
  height: auto;
  object-fit: contain;
  object-position: center;
}

body.easychat-page .easychat-hero-copy h1,
body.easychat-page .easychat-hero-copy p,
body.easychat-page .easychat-highlight-card strong,
body.easychat-page .easychat-highlight-card span {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 1399px) {
  .easyline-results-comparison-grid {
    grid-template-columns: 1fr;
    max-width: 1120px;
    margin-inline: auto;
  }

  .easyline-benefits-premium-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  body.easychat-page .easychat-hero-grid {
    grid-template-columns: minmax(380px, 0.45fr) minmax(560px, 0.55fr);
    gap: 48px;
  }

  body.easychat-page .easychat-hero-copy h1 {
    font-size: clamp(40px, 3.6vw, 58px);
  }

  body.easychat-page .easychat-dashboard-frame,
  body.easychat-page .easychat-dashboard-image {
    max-width: 900px;
  }
}

@media (max-width: 1199px) {
  body.easychat-page .easychat-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  body.easychat-page .easychat-hero-copy {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
  }

  body.easychat-page .easychat-hero-copy p {
    margin-inline: auto;
  }

  body.easychat-page .easychat-hero-highlights {
    max-width: 820px;
    margin-inline: auto;
  }

  body.easychat-page .easychat-dashboard-frame,
  body.easychat-page .easychat-dashboard-image {
    max-width: 920px;
  }
}

@media (max-width: 991px) {
  .container-wide,
  body.easychat-page .container-wide {
    width: min(100% - 40px, 960px);
  }

  .easyline-results-comparison-section {
    padding: 72px 0;
  }

  .easyline-results-panel,
  .easyline-comparison-panel {
    padding: 36px 30px;
    border-radius: 28px;
  }

  .easyline-section-title-left h2 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .easyline-benefits-premium-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .easyline-comparison-premium-grid {
    grid-template-columns: 1fr;
  }

  .easyline-comparison-logo {
    max-width: 170px;
  }
}

@media (max-width: 767px) {
  body.easychat-page .header .container {
    width: min(100% - 32px, 720px);
  }

  body.easychat-page .header .navbar {
    min-height: 86px;
    padding: 14px 0;
  }

  body.easychat-page .header .navbar-brand img {
    width: clamp(170px, 48vw, 230px);
  }

  body.easychat-page .easychat-hero {
    padding: 64px 0;
  }

  body.easychat-page .easychat-hero-copy {
    text-align: left;
  }

  body.easychat-page .easychat-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.04;
  }

  body.easychat-page .easychat-hero-copy p {
    font-size: 16px;
  }

  body.easychat-page .easychat-hero-highlights {
    grid-template-columns: 1fr 1fr;
  }

  body.easychat-page .easychat-dashboard-image {
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .container-wide,
  body.easychat-page .container-wide {
    width: min(100% - 28px, 640px);
  }

  .easyline-results-comparison-section {
    padding: 56px 0;
  }

  .easyline-results-panel,
  .easyline-comparison-panel {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .easyline-benefits-premium-grid {
    grid-template-columns: 1fr;
  }

  .easyline-benefit-premium-card {
    min-height: auto;
  }

  .easyline-section-title-left .easyline-kicker {
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .easyline-section-title-left h2 {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.08;
  }

  .easyline-section-title-left p {
    font-size: 15.5px;
  }

  .easyline-comparison-column-header {
    min-height: 66px;
    padding: 18px 20px;
    font-size: 16px;
  }

  .easyline-comparison-column ul {
    padding: 24px 20px;
  }

  .easyline-comparison-column li {
    font-size: 14.5px;
  }

  .easyline-comparison-note {
    flex-direction: column;
  }

  body.easychat-page .easychat-hero-highlights {
    grid-template-columns: 1fr;
  }

  body.easychat-page .easychat-highlight-card {
    min-height: auto;
  }
}

/* SOLUÇÕES EASYLITE - página comercial dos 4 pilares */
:root {
  --easylite-blue-dark: #071b4d;
  --easylite-blue: #126dff;
  --easylite-blue-soft: #eaf5ff;
  --easylite-orange: #ff6b1a;
  --easylite-green: #0ca960;
  --easylite-muted: #53627f;
  --easylite-bg: #f8fbff;
  --easylite-border: rgba(18, 109, 255, 0.14);
  --easylite-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --easylite-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
  --page-max: 1440px;
  --page-wide: 1680px;
}

body.solutions-body {
  overflow-x: hidden;
  background: #ffffff;
}

body.solutions-body .container {
  width: min(100% - 64px, var(--page-max));
  max-width: var(--page-max);
  margin-inline: auto;
}

body.solutions-body .container-wide {
  width: min(100% - 64px, var(--page-wide));
  max-width: var(--page-wide);
  margin-inline: auto;
}

.solutions-page {
  background: #ffffff;
  color: var(--easylite-blue-dark);
}

.solutions-page h1,
.solutions-page h2,
.solutions-page h3,
.solutions-page p,
.solutions-page span,
.solutions-page li,
.solutions-page a,
.solutions-page strong,
.solutions-page summary {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.solutions-body .solutions-section {
  padding: 88px 0;
}

body.solutions-body .solutions-section-header {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

body.solutions-body .solutions-section-header h2,
.solutions-elite-grid h2 {
  margin: 0 0 16px;
  color: var(--easylite-blue-dark);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.solutions-body .solutions-section-header p,
.solutions-elite-grid p {
  margin: 0;
  color: var(--easylite-muted);
  font-size: 17px;
  line-height: 1.65;
}

body.solutions-body .solutions-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--easylite-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-card,
.solutions-product-card,
.solutions-comparison-card,
.solutions-elite-letters article,
.solutions-faq-list details {
  border: 1px solid var(--easylite-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--easylite-shadow);
}

.solutions-card,
.solutions-product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solutions-card:hover,
.solutions-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 109, 255, 0.26);
  box-shadow: var(--easylite-shadow-lg);
}

.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.12), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.11;
  pointer-events: none;
}

.solutions-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.44fr) minmax(680px, 0.56fr);
  gap: 72px;
  align-items: center;
}

.solutions-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--easylite-blue-dark);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.solutions-hero-copy h1 strong {
  background: linear-gradient(135deg, var(--easylite-blue), var(--easylite-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solutions-hero-copy p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--easylite-muted);
  font-size: 17px;
  line-height: 1.7;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.btn-primary-solutions,
.btn-secondary-solutions,
.solutions-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary-solutions,
.solutions-cta-button {
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #ff5a00);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28);
}

.btn-secondary-solutions {
  color: var(--easylite-blue-dark);
  background: #ffffff;
  border: 1px solid var(--easylite-border);
}

.btn-primary-solutions:hover,
.btn-secondary-solutions:hover,
.solutions-cta-button:hover {
  transform: translateY(-3px);
}

.solutions-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.solutions-hero-highlights div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--easylite-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--easylite-shadow);
}

.solutions-hero-highlights i {
  color: var(--easylite-blue);
  font-size: 24px;
}

.solutions-hero-highlights span {
  display: block;
  margin-top: 10px;
  color: var(--easylite-blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.solutions-hero-visual {
  min-width: 0;
}

.solutions-orbit-panel {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 46%, rgba(18, 109, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(238,246,255,0.82));
  box-shadow: 0 36px 110px rgba(7, 27, 77, 0.12);
  overflow: hidden;
}

.solutions-orbit-panel::before {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px dashed rgba(18, 109, 255, 0.28);
  border-radius: 999px;
}

.solutions-orbit-panel::after {
  content: "";
  position: absolute;
  inset: 120px;
  border: 1px dashed rgba(255, 107, 26, 0.20);
  border-radius: 999px;
}

.solutions-connection-line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 109, 255, 0.35), transparent);
  transform-origin: left center;
}

.line-a { transform: rotate(24deg); }
.line-b { transform: rotate(145deg); }
.line-c { transform: rotate(270deg); }

.solutions-center-brand {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  padding: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--easylite-blue-dark);
  text-align: center;
  box-shadow: 0 30px 90px rgba(7, 27, 77, 0.14);
  transform: translate(-50%, -50%);
}

.solutions-center-brand i {
  color: var(--easylite-blue);
  font-size: 54px;
}

.solutions-center-brand strong {
  font-size: 28px;
  font-weight: 950;
}

.solutions-center-brand span {
  color: var(--easylite-muted);
  font-size: 13px;
  font-weight: 800;
}

.solutions-floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(7, 27, 77, 0.10);
}

.solutions-floating-card i {
  color: var(--easylite-blue);
  font-size: 30px;
}

.solutions-floating-card strong {
  color: var(--easylite-blue-dark);
  font-size: 17px;
  font-weight: 950;
}

.solutions-floating-card span {
  color: var(--easylite-muted);
  font-size: 13px;
  font-weight: 750;
}

.solutions-card-chat { top: 58px; left: 64px; }
.solutions-card-voice { top: 70px; right: 64px; }
.solutions-card-line { bottom: 70px; left: 68px; }
.solutions-card-elite { right: 70px; bottom: 62px; }

.solutions-problems {
  background: #ffffff;
}

.solutions-problems-grid,
.solutions-benefits-grid,
.solutions-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.solutions-problems-grid .solutions-card,
.solutions-benefits-grid .solutions-card,
.solutions-fit-grid .solutions-card {
  padding: 30px;
  min-height: 250px;
}

.solutions-card > i,
.solutions-fit-grid .solutions-card > i,
.solutions-benefits-grid .solutions-card > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--easylite-blue);
  background: var(--easylite-blue-soft);
  font-size: 30px;
}

.solutions-card h3 {
  margin: 0 0 12px;
  color: var(--easylite-blue-dark);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.solutions-card p {
  margin: 0;
  color: var(--easylite-muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.solutions-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--easylite-blue);
  font-weight: 900;
  text-decoration: none;
}

.solutions-products {
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 109, 255, 0.08), transparent 32%),
    #f8fbff;
}

.solutions-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(480px, 1fr));
  gap: 30px;
}

.solutions-product-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  min-height: 560px;
}

.solutions-product-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(18, 109, 255, 0.08);
}

.product-easychat::before { background: rgba(18, 109, 255, 0.10); }
.product-easyvoice::before { background: rgba(12, 169, 96, 0.10); }
.product-easyline::before { background: rgba(255, 107, 26, 0.10); }
.product-elite::before { background: rgba(89, 73, 255, 0.10); }

.solutions-product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: var(--easylite-blue);
  background: var(--easylite-blue-soft);
  font-size: 32px;
}

.solutions-product-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--easylite-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solutions-product-card h3 {
  margin: 0 0 16px;
  color: var(--easylite-blue-dark);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.solutions-product-subtitle {
  color: var(--easylite-blue-dark) !important;
  font-size: 18px !important;
  font-weight: 850;
  line-height: 1.5 !important;
}

.solutions-product-card p {
  color: var(--easylite-muted);
  font-size: 16px;
  line-height: 1.65;
}

.solutions-product-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.solutions-product-card li {
  display: flex;
  gap: 10px;
  color: var(--easylite-blue-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.solutions-product-card li i {
  color: var(--easylite-green);
  font-size: 20px;
}

.solutions-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--easylite-blue);
  font-weight: 900;
  text-decoration: none;
}

.solutions-ecosystem,
.solutions-journey,
.solutions-faq {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.solutions-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.solutions-flow > article,
.solutions-steps article {
  padding: 30px;
  border: 1px solid var(--easylite-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--easylite-shadow);
}

.solutions-flow > i {
  align-self: center;
  color: var(--easylite-blue);
  font-size: 28px;
}

.solutions-flow article i,
.solutions-steps article i {
  color: var(--easylite-blue);
  font-size: 34px;
}

.solutions-flow h3,
.solutions-steps h3 {
  margin: 18px 0 10px;
  color: var(--easylite-blue-dark);
  font-size: 20px;
  font-weight: 950;
}

.solutions-flow p,
.solutions-steps p {
  margin: 0;
  color: var(--easylite-muted);
  font-size: 15px;
  line-height: 1.58;
}

.solutions-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 22px;
}

.solutions-steps article {
  position: relative;
  min-height: 250px;
}

.solutions-steps article span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--easylite-blue);
  font-size: 14px;
  font-weight: 950;
}

.solutions-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 30px;
}

.solutions-comparison-card {
  overflow: hidden;
}

.solutions-comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 24px 30px;
  font-size: 22px;
  font-weight: 950;
}

.comparison-before h3 {
  color: #f04438;
  background: rgba(240, 68, 56, 0.10);
}

.comparison-after h3 {
  color: var(--easylite-green);
  background: rgba(12, 169, 96, 0.10);
}

.solutions-comparison-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 30px;
  list-style: none;
}

.solutions-comparison-card li {
  color: var(--easylite-blue-dark);
  font-size: 15.5px;
  font-weight: 800;
}

.solutions-center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.solutions-elite-highlight {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 107, 26, 0.08), transparent 32%),
    #f8fbff;
}

.solutions-elite-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(620px, 1.22fr);
  gap: 60px;
  align-items: center;
}

.solutions-elite-grid .btn-primary-solutions {
  margin-top: 30px;
}

.solutions-elite-letters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.solutions-elite-letters article {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 26px;
}

.solutions-elite-letters strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--easylite-blue), var(--easylite-orange));
  font-size: 28px;
  font-weight: 950;
}

.solutions-elite-letters span {
  color: var(--easylite-blue-dark);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.42;
}

.solutions-faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-inline: auto;
}

.solutions-faq-list details {
  padding: 24px 28px;
}

.solutions-faq-list summary {
  cursor: pointer;
  color: var(--easylite-blue-dark);
  font-size: 17px;
  font-weight: 900;
}

.solutions-faq-list p {
  margin: 16px 0 0;
  color: var(--easylite-muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.solutions-final-cta {
  padding: 88px 0;
  background: #ffffff;
}

.solutions-final-card {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) auto;
  grid-template-areas:
    "copy action"
    "benefits benefits";
  gap: 34px 48px;
  align-items: center;
  padding: 56px;
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 50%, rgba(18, 109, 255, 0.60), transparent 32%),
    radial-gradient(circle at 90% 45%, rgba(255, 107, 26, 0.68), transparent 36%),
    linear-gradient(115deg, #0039d8 0%, #062b93 48%, #ff6b1a 100%);
  box-shadow: 0 34px 110px rgba(7, 27, 77, 0.22);
}

.solutions-final-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 3.3vw, 56px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.solutions-final-card p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.solutions-cta-button {
  grid-area: action;
  min-height: 68px;
  min-width: 280px;
  padding: 0 32px;
  font-size: 17px;
}

.solutions-cta-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solutions-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
}

.solutions-cta-benefits i {
  font-size: 22px;
}

.solutions-final-cta-informative .solutions-final-card {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "benefits";
}

.solutions-final-cta-informative .solutions-final-card p {
  max-width: 980px;
}

@media (max-width: 1399px) {
  .solutions-problems-grid,
  .solutions-benefits-grid,
  .solutions-fit-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .solutions-steps,
  .solutions-elite-letters {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 1199px) {
  .solutions-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .solutions-hero-copy {
    max-width: 960px;
    margin-inline: auto;
    text-align: center;
  }

  .solutions-hero-copy p {
    margin-inline: auto;
  }

  .solutions-hero-actions {
    justify-content: center;
  }

  .solutions-orbit-panel {
    max-width: 980px;
    margin-inline: auto;
  }

  .solutions-products-grid,
  .solutions-elite-grid,
  .solutions-final-card {
    grid-template-columns: 1fr;
  }

  .solutions-final-card {
    grid-template-areas:
      "copy"
      "action"
      "benefits";
  }

  .solutions-flow {
    grid-template-columns: 1fr;
  }

  .solutions-flow > i {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 991px) {
  body.solutions-body .container,
  body.solutions-body .container-wide {
    width: min(100% - 40px, 960px);
  }

  body.solutions-body .solutions-section,
  .solutions-final-cta {
    padding: 72px 0;
  }

  .solutions-hero-highlights,
  .solutions-cta-benefits {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .solutions-steps,
  .solutions-elite-letters {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .solutions-comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.solutions-body .container,
  body.solutions-body .container-wide {
    width: min(100% - 28px, 640px);
  }

  body.solutions-body .solutions-section,
  .solutions-hero,
  .solutions-final-cta {
    padding: 56px 0;
  }

  .solutions-hero-copy {
    text-align: left;
  }

  .solutions-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .solutions-hero-actions,
  .solutions-center-action {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-solutions,
  .btn-secondary-solutions,
  .solutions-cta-button {
    width: 100%;
  }

  .solutions-hero-highlights,
  .solutions-products-grid,
  .solutions-problems-grid,
  .solutions-benefits-grid,
  .solutions-fit-grid,
  .solutions-steps,
  .solutions-elite-letters,
  .solutions-cta-benefits,
  .solutions-comparison-card ul {
    grid-template-columns: 1fr;
  }

  .solutions-orbit-panel {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 24px;
  }

  .solutions-orbit-panel::before,
  .solutions-orbit-panel::after,
  .solutions-connection-line {
    display: none;
  }

  .solutions-center-brand,
  .solutions-floating-card {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .solutions-center-brand {
    height: auto;
    border-radius: 28px;
  }

  .solutions-product-card,
  .solutions-final-card {
    padding: 30px 24px;
    min-height: auto;
    border-radius: 28px;
  }
}

/* MÉTODO E.L.I.T.E. - página institucional */
:root {
  --elite-blue-dark: #071b4d;
  --elite-blue: #126dff;
  --elite-blue-soft: #eaf5ff;
  --elite-orange: #ff6b1a;
  --elite-purple: #7c4dff;
  --elite-cyan: #16b8e8;
  --elite-green: #0ca960;
  --elite-red: #e9474f;
  --elite-muted: #53627f;
  --elite-bg: #f8fbff;
  --elite-border: rgba(18, 109, 255, 0.14);
  --elite-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --elite-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
}

body.elite-body {
  overflow-x: hidden;
  background: #ffffff;
}

body.elite-body .container {
  width: min(100% - 64px, var(--page-max));
  max-width: var(--page-max);
  margin-inline: auto;
}

body.elite-body .container-wide {
  width: min(100% - 64px, var(--page-wide));
  max-width: var(--page-wide);
  margin-inline: auto;
}

.elite-page {
  background: #ffffff;
  color: var(--elite-blue-dark);
}

.elite-page h1,
.elite-page h2,
.elite-page h3,
.elite-page p,
.elite-page span,
.elite-page li,
.elite-page a,
.elite-page strong,
.elite-page summary {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.elite-body .elite-section {
  padding: 88px 0;
}

body.elite-body .elite-section-header {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

body.elite-body .elite-section-header h2,
.elite-about-copy h2,
.elite-deliverables-copy h2 {
  margin: 0;
  color: var(--elite-blue-dark);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.elite-about-copy h2,
.elite-deliverables-copy h2 {
  margin-bottom: 20px;
}

body.elite-body .elite-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--elite-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.elite-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(18, 109, 255, 0.12), transparent 34%),
    radial-gradient(circle at 94% 44%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.elite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.1;
  pointer-events: none;
}

.elite-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.44fr) minmax(680px, 0.56fr);
  gap: 72px;
  align-items: center;
}

.elite-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--elite-blue-dark);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.elite-hero-copy h1 strong {
  background: linear-gradient(135deg, var(--elite-blue), var(--elite-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.elite-hero-copy p,
.elite-about-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--elite-muted);
  font-size: 17px;
  line-height: 1.7;
}

.elite-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.elite-hero-highlights div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--elite-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--elite-shadow);
}

.elite-hero-highlights i {
  color: var(--elite-blue);
  font-size: 24px;
}

.elite-hero-highlights span {
  display: block;
  margin-top: 10px;
  color: var(--elite-blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.elite-hero-visual {
  min-width: 0;
}

.elite-orbit {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 46%, rgba(124, 77, 255, 0.12), transparent 34%),
    radial-gradient(circle at 70% 30%, rgba(18, 109, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 36px 110px rgba(7, 27, 77, 0.12);
  overflow: hidden;
}

.elite-orbit::before,
.elite-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.elite-orbit::before {
  inset: 64px;
  border: 1px dashed rgba(18, 109, 255, 0.26);
}

.elite-orbit::after {
  inset: 128px;
  border: 1px dashed rgba(255, 107, 26, 0.22);
}

.elite-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(7, 27, 77, 0.14);
  transform: translate(-50%, -50%);
}

.elite-center strong {
  color: var(--elite-blue-dark);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.elite-orbit-item {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 8px;
  width: 220px;
  padding: 22px;
  border: 1px solid var(--elite-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(7, 27, 77, 0.10);
}

.elite-orbit-item i {
  color: var(--elite-blue);
  font-size: 30px;
}

.elite-orbit-item span {
  color: var(--elite-blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.elite-orbit-e1 { top: 56px; left: 50%; transform: translateX(-50%); }
.elite-orbit-l { top: 180px; left: 48px; }
.elite-orbit-i { top: 180px; right: 48px; }
.elite-orbit-t { bottom: 70px; left: 92px; }
.elite-orbit-e2 { bottom: 70px; right: 92px; }

.elite-robot-visual {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 32px;
  color: var(--elite-blue);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 109, 255, 0.18);
  font-size: 58px;
}

.elite-about,
.elite-deliverables,
.elite-implementation,
.elite-faq {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.elite-about-grid,
.elite-deliverables-grid,
.elite-before-after-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.elite-check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.elite-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--elite-blue-dark);
  font-size: 16px;
  font-weight: 850;
}

.elite-check-list i {
  color: var(--elite-green);
  font-size: 23px;
}

.elite-flow-card,
.elite-dashboard-card,
.elite-plan-card,
.elite-before-card,
.elite-after-card {
  border: 1px solid var(--elite-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--elite-shadow);
  padding: 32px;
}

.elite-flow-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.elite-flow-arrow {
  display: none;
}

.elite-flow-step {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: var(--elite-blue-soft);
  text-align: center;
}

.elite-flow-step i {
  color: var(--elite-blue);
  font-size: 32px;
}

.elite-flow-step strong {
  color: var(--elite-blue-dark);
  font-size: 14px;
  font-weight: 950;
}

.elite-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 24px;
}

.elite-step-card,
.elite-applications-grid article,
.elite-deliverables-cards article,
.elite-results-grid article,
.elite-implementation-timeline article {
  border: 1px solid var(--elite-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--elite-shadow);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.elite-step-card:hover,
.elite-applications-grid article:hover,
.elite-deliverables-cards article:hover,
.elite-results-grid article:hover,
.elite-implementation-timeline article:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 109, 255, 0.28);
  box-shadow: var(--elite-shadow-lg);
}

.elite-step-card {
  min-height: 245px;
}

.elite-step-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--elite-blue);
  font-size: 26px;
  font-weight: 950;
}

.step-l span { background: var(--elite-orange); }
.step-i span { background: var(--elite-green); }
.step-t span { background: var(--elite-purple); }
.step-e2 span { background: var(--elite-cyan); }

.elite-step-card h3,
.elite-applications-grid h3,
.elite-implementation-timeline h3 {
  margin: 0 0 12px;
  color: var(--elite-blue-dark);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.elite-step-card p,
.elite-applications-grid p,
.elite-implementation-timeline p {
  margin: 0;
  color: var(--elite-muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.elite-applications-grid,
.elite-deliverables-cards,
.elite-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
}

.elite-applications-grid article > i,
.elite-deliverables-cards article > i,
.elite-results-grid article > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--elite-blue);
  background: var(--elite-blue-soft);
  font-size: 30px;
}

.elite-deliverables-copy h2 {
  max-width: 680px;
}

.elite-deliverables-cards article {
  min-height: 136px;
}

.elite-deliverables-cards strong,
.elite-results-grid strong {
  display: block;
  color: var(--elite-blue-dark);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
}

.elite-dashboard-visual {
  display: grid;
  gap: 24px;
}

.elite-dashboard-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--elite-blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.elite-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.elite-dashboard-metrics strong {
  padding: 18px;
  border-radius: 18px;
  color: var(--elite-blue-dark);
  background: #f4f8ff;
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.elite-chart-placeholder {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 160px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
}

.elite-chart-placeholder span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--elite-blue), var(--elite-cyan));
}

.elite-chart-placeholder span:nth-child(1) { height: 44%; }
.elite-chart-placeholder span:nth-child(2) { height: 62%; }
.elite-chart-placeholder span:nth-child(3) { height: 50%; }
.elite-chart-placeholder span:nth-child(4) { height: 78%; }
.elite-chart-placeholder span:nth-child(5) { height: 92%; }

/* Ajuste de proporção: entregáveis do Método E.L.I.T.E. */
body.elite-body .elite-deliverables-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 64px;
  align-items: center;
}

body.elite-body .elite-deliverables-copy,
body.elite-body .elite-dashboard-visual {
  min-width: 0;
}

body.elite-body .elite-deliverables-cards {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 20px;
}

body.elite-body .elite-deliverables-cards article {
  min-width: 0;
  min-height: 128px;
  padding: 22px;
}

body.elite-body .elite-deliverables-cards article > i {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  font-size: 26px;
}

body.elite-body .elite-deliverables-cards strong {
  font-size: 15px;
}

body.elite-body .elite-dashboard-card,
body.elite-body .elite-plan-card {
  min-width: 0;
}

@media (min-width: 1500px) {
  body.elite-body .elite-deliverables-grid {
    grid-template-columns: minmax(720px, 1.12fr) minmax(520px, 0.88fr);
  }

  body.elite-body .elite-deliverables-cards {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media (max-width: 1199px) {
  body.elite-body .elite-deliverables-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.elite-body .elite-deliverables-cards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  body.elite-body .elite-deliverables-cards {
    grid-template-columns: 1fr;
  }
}

/* INFRAESTRUTURA E CONSULTORIA - página técnica EasyLite */
:root {
  --infra-blue-dark: #071b4d;
  --infra-blue: #126dff;
  --infra-blue-soft: #eaf5ff;
  --infra-orange: #ff6b1a;
  --infra-green: #0ca960;
  --infra-muted: #53627f;
  --infra-bg: #f8fbff;
  --infra-border: rgba(18, 109, 255, 0.14);
  --infra-shadow: 0 18px 52px rgba(7, 27, 77, 0.06);
  --infra-shadow-lg: 0 28px 90px rgba(7, 27, 77, 0.10);
  --infra-radius: 24px;
  --infra-radius-lg: 32px;
}

body.infra-body {
  background: #ffffff;
}

body.infra-body .container {
  width: min(100% - 64px, 1440px);
  max-width: none;
  margin-inline: auto;
}

body.infra-body .container-wide {
  width: min(100% - 64px, 1680px);
  max-width: none;
  margin-inline: auto;
}

.infra-page {
  overflow: hidden;
  color: var(--infra-blue-dark);
  background: #ffffff;
}

.infra-page h1,
.infra-page h2,
.infra-page h3,
.infra-page p,
.infra-page span,
.infra-page li,
.infra-page a,
.infra-page strong {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.infra-section {
  padding: 88px 0;
}

.infra-section-header {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.infra-section-header h2,
.infra-card h2,
.infra-split-card h2,
.infra-cta-card h2 {
  margin: 0 0 16px;
  color: var(--infra-blue-dark);
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.infra-section-header p,
.infra-card > p,
.infra-split-card p,
.infra-cta-card p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 17px;
  line-height: 1.65;
}

.infra-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--infra-blue);
  background: rgba(18, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.infra-card {
  min-width: 0;
  border: 1px solid var(--infra-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--infra-shadow);
  padding: 28px;
}

.infra-card > i,
.infra-card li > i,
.infra-mini-grid i,
.infra-icon-row i,
.infra-product-grid i,
.infra-benefit-grid i,
.infra-segment-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: var(--infra-blue);
  background: var(--infra-blue-soft);
  font-size: 28px;
}

.infra-card > i {
  margin-bottom: 18px;
}

.infra-card h3 {
  margin: 0 0 12px;
  color: var(--infra-blue-dark);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.infra-card p {
  color: var(--infra-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.infra-grid-4,
.infra-grid-3,
.infra-grid-2,
.infra-triple-grid {
  display: grid;
  gap: 24px;
}

.infra-grid-4 {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.infra-grid-3,
.infra-triple-grid {
  grid-template-columns: repeat(3, minmax(320px, 1fr));
}

.infra-grid-2 {
  grid-template-columns: repeat(2, minmax(420px, 1fr));
}

.infra-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 109, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 42%, rgba(255, 107, 26, 0.08), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 54%, #fff7f2 100%);
}

.infra-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(18, 109, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.10;
}

.infra-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.46fr) minmax(680px, 0.54fr);
  gap: 72px;
  align-items: center;
}

.infra-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--infra-blue-dark);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.infra-hero-copy h1 strong {
  background: linear-gradient(135deg, var(--infra-blue), var(--infra-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.infra-hero-copy p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--infra-muted);
  font-size: 17px;
  line-height: 1.7;
}

.infra-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.btn-primary-infra,
.btn-secondary-infra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary-infra {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff7a1a, #ff5a00);
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.28);
}

.btn-secondary-infra {
  color: var(--infra-blue-dark) !important;
  background: #ffffff;
  border: 1px solid var(--infra-border);
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06);
}

.btn-primary-infra:hover,
.btn-secondary-infra:hover {
  transform: translateY(-3px);
}

.infra-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 28px;
}

.infra-hero-highlights div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--infra-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--infra-shadow);
}

.infra-hero-highlights i {
  color: var(--infra-blue);
  font-size: 26px;
}

.infra-hero-highlights span {
  display: block;
  margin-top: 12px;
  color: var(--infra-blue-dark);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.3;
}

.infra-hero-visual {
  min-width: 0;
}

.infra-tech-panel {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(18, 109, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 32%, rgba(18, 109, 255, 0.20), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #edf6ff 100%);
  box-shadow: var(--infra-shadow-lg);
  overflow: hidden;
}

.infra-blueprint {
  position: absolute;
  inset: 38px 38px auto auto;
  width: 310px;
  height: 440px;
  border: 1px solid rgba(18, 109, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(18, 109, 255, 0.10) 1px, transparent 1px),
    linear-gradient(rgba(18, 109, 255, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.65;
  transform: rotate(-4deg);
}

.infra-rack {
  position: absolute;
  left: 36%;
  top: 72px;
  width: 260px;
  height: 460px;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #071b4d 0%, #0d285f 54%, #051333 100%);
  box-shadow: 0 34px 90px rgba(7, 27, 77, 0.30);
}

.infra-rack::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 32px;
  height: 4px;
  border-radius: 999px;
  background: #126dff;
  box-shadow: 0 42px 0 #24b6e8, 0 84px 0 #126dff, 0 126px 0 #24b6e8, 0 168px 0 #126dff, 0 210px 0 #24b6e8, 0 252px 0 #126dff;
}

.infra-rack span {
  position: absolute;
  left: 56px;
  right: 38px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27d3ff, #126dff);
  filter: drop-shadow(0 0 10px rgba(39, 211, 255, 0.62));
}

.infra-rack span:nth-child(1) { top: 96px; }
.infra-rack span:nth-child(2) { top: 144px; left: 44px; }
.infra-rack span:nth-child(3) { top: 192px; }
.infra-rack span:nth-child(4) { top: 240px; left: 72px; }
.infra-rack span:nth-child(5) { top: 288px; }
.infra-rack span:nth-child(6) { top: 336px; left: 48px; }

.infra-engineer-card {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 260px;
  padding: 24px;
  border: 1px solid var(--infra-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--infra-shadow-lg);
}

.infra-engineer-card i {
  color: var(--infra-blue);
  font-size: 48px;
}

.infra-engineer-card strong,
.infra-engineer-card span {
  display: block;
}

.infra-engineer-card strong {
  margin: 10px 0 8px;
  color: var(--infra-blue-dark);
  font-weight: 950;
}

.infra-engineer-card span {
  color: var(--infra-muted);
  font-size: 13px;
  line-height: 1.45;
}

.infra-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-width: 230px;
  padding: 18px;
  border: 1px solid var(--infra-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--infra-shadow-lg);
}

.infra-floating-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--infra-blue);
  background: var(--infra-blue-soft);
  font-size: 24px;
}

.infra-floating-card strong,
.infra-floating-card span {
  display: block;
}

.infra-floating-card strong {
  color: var(--infra-blue-dark);
  font-size: 14px;
  font-weight: 950;
}

.infra-floating-card span {
  color: var(--infra-muted);
  font-size: 12px;
}

.infra-card-network { left: 36px; top: 88px; }
.infra-card-cabling { right: 48px; top: 88px; }
.infra-card-telecom { left: 44px; bottom: 180px; }
.infra-card-consulting { right: 48px; bottom: 150px; }

.infra-technical,
.infra-process,
.infra-benefits-segments {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.infra-list-card ul,
.infra-standards-card ul {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.infra-list-card li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.infra-list-card li i {
  grid-row: span 2;
}

.infra-list-card li strong,
.infra-list-card li span {
  display: block;
}

.infra-list-card li strong {
  color: var(--infra-blue-dark);
  font-weight: 950;
}

.infra-list-card li span,
.infra-disclaimer {
  color: var(--infra-muted);
  font-size: 14px;
  line-height: 1.55;
}

.infra-note,
.infra-disclaimer {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  color: #344563;
  background: #eef6ff;
  font-weight: 800;
}

.infra-note {
  display: flex;
  gap: 12px;
  align-items: center;
}

.infra-note i {
  color: var(--infra-blue);
  font-size: 24px;
}

.infra-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--infra-blue-dark);
  font-size: 15px;
  font-weight: 850;
}

.infra-checks i {
  color: var(--infra-green);
}

.infra-cable-visual {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 150px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #071b4d, #126dff);
  overflow: hidden;
}

.infra-cable-visual span {
  flex: 1;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, #27d3ff, #ffffff);
  transform: rotate(8deg);
}

.infra-cable-visual span:nth-child(2) { height: 88%; transform: rotate(-8deg); }
.infra-cable-visual span:nth-child(3) { height: 62%; transform: rotate(5deg); }
.infra-cable-visual span:nth-child(4) { height: 95%; transform: rotate(-5deg); }

.infra-split-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(620px, 1.3fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--infra-border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--infra-shadow);
}

.infra-mini-grid,
.infra-icon-row,
.infra-product-grid,
.infra-benefit-grid,
.infra-segment-grid {
  display: grid;
  gap: 16px;
}

.infra-mini-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.infra-mini-grid div,
.infra-icon-row div,
.infra-product-grid div,
.infra-benefit-grid div,
.infra-segment-grid div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--infra-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.04);
}

.infra-mini-grid i,
.infra-icon-row i,
.infra-product-grid i,
.infra-benefit-grid i,
.infra-segment-grid i {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  font-size: 24px;
}

.infra-mini-grid span,
.infra-benefit-grid span,
.infra-segment-grid span {
  display: block;
  color: var(--infra-blue-dark);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
}

.infra-icon-row {
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  margin-top: 28px;
}

.infra-product-grid,
.infra-benefit-grid,
.infra-segment-grid {
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  margin-top: 28px;
}

.infra-icon-row strong,
.infra-product-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--infra-blue-dark);
  font-size: 14px;
  font-weight: 950;
}

.infra-icon-row span,
.infra-product-grid span {
  display: block;
  color: var(--infra-muted);
  font-size: 13px;
  line-height: 1.45;
}

.infra-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 16px;
}

.infra-timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,109,255,.5), rgba(255,107,26,.45));
}

.infra-timeline article {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--infra-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--infra-shadow);
  text-align: center;
}

.infra-timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--infra-blue);
  font-weight: 950;
}

.infra-timeline article:nth-child(2) span,
.infra-timeline article:nth-child(6) span { background: var(--infra-green); }
.infra-timeline article:nth-child(3) span,
.infra-timeline article:nth-child(7) span { background: #7c3aed; }
.infra-timeline article:nth-child(4) span { background: var(--infra-orange); }

.infra-timeline h3 {
  margin: 0 0 10px;
  color: var(--infra-blue-dark);
  font-size: 15px;
  font-weight: 950;
}

.infra-timeline p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 13px;
  line-height: 1.45;
}

.infra-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.infra-faq details {
  border: 1px solid var(--infra-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--infra-shadow);
  padding: 20px 22px;
}

.infra-faq summary {
  cursor: pointer;
  color: var(--infra-blue-dark);
  font-weight: 950;
}

.infra-faq p {
  margin: 16px 0 0;
  color: var(--infra-muted);
  line-height: 1.6;
}

.infra-final-cta {
  padding: 88px 0;
  background: #ffffff;
}

.infra-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.7fr);
  gap: 38px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 45%, rgba(255, 107, 26, 0.52), transparent 34%),
    linear-gradient(115deg, #061d68 0%, #0039d8 48%, #ff6b1a 100%);
  box-shadow: 0 34px 110px rgba(7, 27, 77, 0.22);
  overflow: hidden;
}

.infra-cta-card h2,
.infra-cta-card p {
  color: #ffffff;
}

.infra-cta-card p {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

.infra-cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.infra-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 14px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255,255,255,.12);
  font-weight: 850;
}

.infra-cta-benefits i {
  font-size: 24px;
}

@media (max-width: 1399px) {
  .infra-hero-grid {
    grid-template-columns: minmax(500px, 0.46fr) minmax(520px, 0.54fr);
    gap: 44px;
  }

  .infra-hero-copy h1 {
    font-size: clamp(38px, 3.1vw, 48px);
  }

  .infra-hero-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .infra-hero-actions {
    margin: 24px 0;
  }

  .infra-hero-highlights div {
    min-height: 96px;
    padding: 15px;
  }

  .infra-tech-panel {
    min-height: 500px;
  }

  .infra-grid-4 {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .infra-grid-3,
  .infra-triple-grid {
    grid-template-columns: 1fr;
  }

  .infra-icon-row,
  .infra-timeline {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .infra-timeline::before {
    display: none;
  }
}

@media (max-width: 1199px) {
  .infra-hero-grid,
  .infra-grid-2,
  .infra-split-card,
  .infra-cta-card {
    grid-template-columns: 1fr;
  }

  .infra-hero-copy {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
  }

  .infra-hero-copy p,
  .infra-hero-highlights {
    margin-inline: auto;
  }

  .infra-hero-actions {
    justify-content: center;
  }

  .infra-mini-grid,
  .infra-product-grid,
  .infra-benefit-grid,
  .infra-segment-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 991px) {
  body.infra-body .container,
  body.infra-body .container-wide {
    width: min(100% - 40px, 960px);
  }

  .infra-section,
  .infra-hero,
  .infra-final-cta {
    padding: 72px 0;
  }

  .infra-hero-highlights,
  .infra-faq-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .infra-tech-panel {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 28px;
  }

  .infra-blueprint,
  .infra-rack,
  .infra-engineer-card,
  .infra-floating-card {
    position: static;
    width: auto;
    transform: none;
  }

  .infra-rack {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 640px) {
  body.infra-body .container,
  body.infra-body .container-wide {
    width: min(100% - 28px, 640px);
  }

  .infra-section,
  .infra-hero,
  .infra-final-cta {
    padding: 56px 0;
  }

  .infra-section-header,
  .infra-hero-copy {
    text-align: left;
  }

  .infra-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .infra-hero-actions {
    flex-direction: column;
  }

  .btn-primary-infra,
  .btn-secondary-infra {
    width: 100%;
  }

  .infra-hero-highlights,
  .infra-grid-4,
  .infra-grid-3,
  .infra-grid-2,
  .infra-mini-grid,
  .infra-icon-row,
  .infra-product-grid,
  .infra-benefit-grid,
  .infra-segment-grid,
  .infra-faq-grid,
  .infra-timeline,
  .infra-cta-benefits {
    grid-template-columns: 1fr;
  }

  .infra-card,
  .infra-split-card,
  .infra-cta-card {
    padding: 24px;
    border-radius: 22px;
  }

  .infra-tech-panel {
    gap: 12px;
    padding: 20px;
  }

  .infra-blueprint,
  .infra-engineer-card {
    display: none;
  }

  .infra-rack {
    height: 220px;
  }

  .infra-floating-card {
    grid-template-columns: 38px 1fr;
    min-width: 0;
    padding: 14px;
  }

  .infra-floating-card i {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .infra-list-card li {
    grid-template-columns: 44px 1fr;
  }
}

.elite-plan-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--elite-blue-dark);
  font-size: 20px;
  font-weight: 950;
}

.elite-plan-card ul,
.elite-before-card ul,
.elite-after-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.elite-plan-card li,
.elite-before-card li,
.elite-after-card li {
  color: var(--elite-blue-dark);
  font-size: 16px;
  font-weight: 800;
}

.elite-before-card,
.elite-after-card {
  overflow: hidden;
  padding: 0;
}

.elite-before-card h2,
.elite-after-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 26px 32px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.elite-before-card h2 {
  color: var(--elite-red);
  background: rgba(233, 71, 79, 0.10);
}

.elite-after-card h2 {
  color: var(--elite-green);
  background: rgba(12, 169, 96, 0.10);
}

.elite-before-card ul,
.elite-after-card ul {
  padding: 32px;
}

.elite-before-card li,
.elite-after-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elite-before-card li i { color: var(--elite-red); }
.elite-after-card li i { color: var(--elite-green); }

.elite-implementation-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 22px;
}

.elite-implementation-timeline article {
  min-height: 230px;
}

.elite-implementation-timeline span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--elite-blue);
  font-size: 14px;
  font-weight: 950;
}

.elite-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.elite-faq details {
  border: 1px solid var(--elite-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--elite-shadow);
  padding: 22px;
}

.elite-faq summary {
  cursor: pointer;
  color: var(--elite-blue-dark);
  font-weight: 900;
}

.elite-faq p {
  margin: 16px 0 0;
  color: var(--elite-muted);
  line-height: 1.6;
}

@media (max-width: 1399px) {
  .elite-hero-grid {
    grid-template-columns: minmax(440px, 0.45fr) minmax(560px, 0.55fr);
    gap: 48px;
  }

  .elite-orbit {
    min-height: 560px;
  }
}

@media (max-width: 1199px) {
  .elite-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .elite-hero-copy {
    max-width: 960px;
    margin-inline: auto;
    text-align: center;
  }

  .elite-hero-copy p {
    margin-inline: auto;
  }

  .elite-orbit {
    max-width: 980px;
    margin-inline: auto;
  }

  .elite-about-grid,
  .elite-deliverables-grid,
  .elite-before-after-grid {
    grid-template-columns: 1fr;
  }

  .elite-steps-grid,
  .elite-implementation-timeline {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .elite-applications-grid,
  .elite-deliverables-cards,
  .elite-results-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 991px) {
  body.elite-body .container,
  body.elite-body .container-wide {
    width: min(100% - 40px, 960px);
  }

  body.elite-body .elite-section,
  .elite-hero {
    padding: 72px 0;
  }

  .elite-hero-highlights {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .elite-flow-card {
    grid-template-columns: 1fr;
  }

  .elite-flow-arrow {
    display: block;
    text-align: center;
    color: var(--elite-blue);
    font-size: 26px;
    transform: rotate(90deg);
  }

  .elite-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.elite-body .container,
  body.elite-body .container-wide {
    width: min(100% - 28px, 640px);
  }

  body.elite-body .elite-section,
  .elite-hero {
    padding: 56px 0;
  }

  .elite-hero-copy {
    text-align: left;
  }

  .elite-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .elite-hero-highlights,
  .elite-steps-grid,
  .elite-applications-grid,
  .elite-deliverables-cards,
  .elite-results-grid,
  .elite-implementation-timeline,
  .elite-dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .elite-orbit {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 24px;
  }

  .elite-orbit::before,
  .elite-orbit::after {
    display: none;
  }

  .elite-center,
  .elite-orbit-item,
  .elite-robot-visual {
    position: static;
    width: 100%;
    height: auto;
    min-width: 0;
    transform: none;
  }

  .elite-center,
  .elite-robot-visual {
    min-height: 118px;
    border-radius: 28px;
  }

  .elite-before-card h2,
  .elite-after-card h2,
  .elite-before-card ul,
  .elite-after-card ul {
    padding: 24px;
  }
}

/* EasyChat: header normalizado para o mesmo padrão visual da EasyVoice */
body.easychat-page .header .container {
  width: 100% !important;
  max-width: 1320px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: calc(var(--bs-gutter-x) * .5) !important;
  padding-left: calc(var(--bs-gutter-x) * .5) !important;
}

body.easychat-page .header .navbar {
  min-height: 0 !important;
  padding: 18px 0 !important;
}

body.easychat-page .header .navbar-brand img {
  width: min(250px, 62vw) !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}

body.easychat-page .header .navbar-nav {
  align-items: center !important;
  gap: 0 !important;
}

body.easychat-page .header .nav-link {
  color: var(--brand-dark) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 0.5rem 0.5rem !important;
}

@media (min-width: 992px) {
  body.easychat-page .header .navbar-brand img {
    width: 310px !important;
  }
}

@media (min-width: 1400px) {
  body.easychat-page .header .navbar-brand img {
    width: 380px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  body.easychat-page .header .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body.easychat-page .header .container {
    max-width: 960px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body.easychat-page .header .container {
    max-width: 720px !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body.easychat-page .header .container {
    max-width: 540px !important;
  }
}

@media (max-width: 767.98px) {
  body.easychat-page .header .navbar {
    padding: 12px 0 !important;
  }
}
