﻿@charset "utf-8";
/* CSS Document — Landing pages comerciais */
@import url('style2.css');

/* -- Landing pages comerciais (erp-distribuidora, revenda de gas, etc.) -- */
.erp-landing-page .erp-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.erp-landing-page .erp-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.erp-landing-page .erp-breadcrumb a:hover {
  color: var(--success-color, #96c322);
}

.erp-landing-page .erp-breadcrumb span[aria-hidden="true"] {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.erp-hero-visual {
  position: relative;
}

.erp-hero-float {
  position: absolute;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color, #1071a1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  animation: erp-float 4s ease-in-out infinite;
}

.erp-float-1 { bottom: 12%; left: -4%; }
.erp-float-2 { top: 18%; right: -2%; animation-delay: 1.5s; }

@keyframes erp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.erp-stats-note {
  margin-top: 0.75rem;
  color: #64748b;
}

.erp-module-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.erp-module-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.erp-module-tab:hover,
.erp-module-tab.is-active {
  background: var(--primary-color, #1071a1);
  border-color: var(--primary-color, #1071a1);
  color: #fff;
}

.erp-module-panels {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  min-height: 280px;
}

.erp-module-panel {
  display: none;
}

.erp-module-panel.is-active {
  display: block;
  animation: erp-panel-in 0.35s ease;
}

@keyframes erp-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.erp-module-panel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.erp-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.erp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
}

.erp-check-list i {
  color: var(--success-color, #96c322);
  margin-top: 0.2rem;
}

.erp-module-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfccb 100%);
  border-radius: 14px;
  font-size: 4rem;
  color: var(--primary-color, #1071a1);
  opacity: 0.85;
}

.erp-compare-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.erp-compare-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.erp-compare-table {
  width: 100%;
  margin: 0;
  background: #fff;
  font-size: 0.95rem;
}

.erp-compare-table th,
.erp-compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.erp-compare-table thead th {
  background: #f1f5f9;
  font-weight: 600;
  color: #0f172a;
}

.erp-compare-table .is-highlight {
  background: var(--primary-color, #1071a1);
  color: #fff;
}

.erp-compare-table tbody tr:hover {
  background: #fafafa;
}

.erp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.erp-step {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.erp-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.erp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color, #1071a1);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.erp-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.erp-step p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.erp-mid-cta {
  background: linear-gradient(135deg, #f0f9ff, #ecfccb);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
}

.erp-segments {
  padding: 4rem 0;
  background: #fff;
}

.erp-segment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  height: 100%;
}

.erp-segment-card i {
  font-size: 1.5rem;
  color: var(--primary-color, #1071a1);
}

.erp-segment-card:hover {
  border-color: var(--primary-color, #1071a1);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(16, 113, 161, 0.12);
  color: var(--primary-color, #1071a1);
}

.erp-segment-all {
  background: var(--primary-color, #1071a1);
  color: #fff;
  border-color: var(--primary-color, #1071a1);
}

.erp-segment-all i { color: #fff; }
.erp-segment-all:hover { background: #0c5a80; color: #fff; }

.erp-content-section {
  padding: 3rem 0 4rem;
  background: #f8fafc;
}

.erp-content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.erp-content-aside {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.erp-content-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.erp-content-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.erp-content-aside li {
  border-bottom: 1px solid #f1f5f9;
}

.erp-content-aside a {
  display: block;
  padding: 0.55rem 0;
  color: var(--primary-color, #1071a1);
  text-decoration: none;
  font-size: 0.9rem;
}

.erp-content-aside a:hover {
  color: var(--success-color, #96c322);
}

.erp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.erp-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.erp-intro-section {
  padding: 2.5rem 0;
  background: #fff;
}

.erp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.erp-intro-copy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.erp-intro-copy p {
  color: #475569;
  line-height: 1.7;
}

.erp-toc {
  position: sticky;
  top: 100px;
}

.erp-flow-section {
  padding: 3.5rem 0;
  background: #fff;
}

.erp-flow {
  max-width: 960px;
  margin: 0 auto;
}

.erp-checklist-section .section-subtitle {
  max-width: none;
}

.erp-case-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.erp-case-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.erp-planos-section {
  padding: 3.5rem 0;
  background: #f8fafc;
}

.erp-plano-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.erp-plano-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.erp-plano-card p {
  font-size: 0.9rem;
  color: #64748b;
  flex: 1;
}

.erp-plano-card--featured {
  border-color: var(--primary-color, #1071a1);
  box-shadow: 0 8px 24px rgba(16, 113, 161, 0.15);
}

.erp-plano-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--success-color, #96c322);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}

.erp-content-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}

.erp-blog-related {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.erp-blog-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.erp-blog-list li {
  border-bottom: 1px solid #f1f5f9;
}

.erp-blog-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--primary-color, #1071a1);
  text-decoration: none;
  font-size: 0.9rem;
}

.erp-blog-list a:hover {
  color: var(--success-color, #96c322);
}

.erp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.erp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.erp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 0.75rem 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(8px);
}

.erp-sticky-cta.is-visible {
  transform: translateY(0);
}

.erp-sticky-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.erp-sticky-inner p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .erp-intro-grid { grid-template-columns: 1fr; }
  .erp-toc { position: static; }
  .erp-steps { grid-template-columns: repeat(2, 1fr); }
  .erp-float-1, .erp-float-2 { display: none; }
}

@media (max-width: 575.98px) {
  .erp-steps { grid-template-columns: 1fr; }
  .erp-module-panels { padding: 1.25rem; }
  .erp-module-tab { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
}
