@charset "utf-8";
/* CSS Document */
 /* Cores personalizadas */
    * {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    }

    :root {
      --primary-color: #1071a1;
      --primary-dark: #0c5a80;
      --secondary-color: #f39333;
      --success-color: #96c322;
      --hover-bg: #f8f9fa;
      --text-muted: #64748b;
      --surface: #f8fafc;
      --border: #e2e8f0;
      --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
      --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
      --whatsapp-color: #25d366;
      --whatsapp-hover: #1da851;
      --header-height: 72px;
    }

    .top-header {
      background-color: var(--primary-color);
      color: white;
      font-size: 0.9rem;
    }

    .top-header a {
      color: white;
      text-decoration: none;
    }

    .top-header a:hover {
      text-decoration: underline;
    }

    .social-icons a {
      color: var(--secondary-color);
      margin: 0 8px;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: var(--success-color);
    }

    .navbar-brand img {
      height: 50px;
    }

    .nav-link {
      position: relative;
      padding: 0.5rem 0.75rem !important;
      color: var(--primary-color) !important;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--success-color);
    }

    .btn-contact {
      background-color: var(--success-color);
      color: white;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
      transition: background-color 0.3s ease;
    }

    .btn-contact:hover {
      background-color: #218838;
	  color:#ffffff;
    }

    .border-bottom {
      border-color: #e9ecef !important;
    }

    /* Estilo adicional para mobile buttons */
    .mobile-nav .btn-outline-primary {
      border-color: var(--primary-color);
      color: var(--primary-color);
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .mobile-nav .btn-outline-primary:hover {
      background-color: var(--primary-color);
      color: white;
    }
    .banner {
      background: linear-gradient(160deg, #0c5a80 0%, #1071a1 45%, #1a8f7a 100%);
      padding: 72px 0 80px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .banner .container {
      position: relative;
      z-index: 1;
    }

    .banner-content h1 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: white;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .banner-content p {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: 28px;
      line-height: 1.7;
      max-width: 520px;
    }

    .banner-image .image-wrapper {
      position: relative;
      display: inline-block;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.06);
      padding: 8px;
      box-shadow: var(--shadow-md);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .banner-image .image-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .banner-image .image-wrapper:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .banner {
        text-align: center;
        padding: 48px 0 56px;
      }

      .banner-content p {
        margin-left: auto;
        margin-right: auto;
      }

      .banner-image {
        margin-top: 36px;
      }
    }
    .footer {
      background-color: #0f172a;
      color: #cbd5e1;
      padding: 64px 0 0;
    }

    .footer a {
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer a:hover {
      color: #ffffff;
    }

    .footer-brand img {
      max-width: 150px;
      height: auto;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: #94a3b8;
      margin-bottom: 20px;
      max-width: 320px;
    }

    .footer-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--success-color);
      color: white !important;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .footer-cta:hover {
      background-color: #7da31c;
      color: white !important;
      transform: translateY(-1px);
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background-color: rgba(255, 255, 255, 0.08);
      color: #cbd5e1;
      border-radius: 50%;
      font-size: 0.95rem;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .footer-social a:hover {
      background-color: var(--primary-color);
      color: white;
    }

    .footer-links h5,
    .footer-contact h5 {
      color: #f8fafc;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 18px;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      font-size: 0.9375rem;
    }

    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 0.9375rem;
    }

    .footer-contact-list li i {
      width: 18px;
      margin-top: 3px;
      color: var(--success-color);
      flex-shrink: 0;
    }

    .footer-hours,
    .footer-ecosystem {
      font-size: 0.875rem;
      color: #64748b;
      margin-bottom: 8px;
    }

    .footer-hours i {
      margin-right: 8px;
      color: #64748b;
    }

    .footer-ecosystem a {
      color: #94a3b8;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 24px 0;
      margin-top: 48px;
      font-size: 0.8125rem;
      color: #64748b;
    }

    .footer-bottom-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 20px;
    }

    .footer-bottom-legal a {
      color: #64748b;
      font-size: 0.8125rem;
    }

    .footer-bottom-legal a:hover {
      color: #f8fafc;
    }

    .footer-top {
      margin-bottom: 8px;
    }

    .footer-sitemap {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 40px;
      margin-top: 40px;
    }

    .footer-sitemap .footer-links h5 {
      margin-bottom: 16px;
    }

    .footer-sitemap .footer-links ul li {
      margin-bottom: 8px;
    }

    .footer-sitemap .footer-links ul li a {
      font-size: 0.875rem;
      line-height: 1.45;
    }

    .footer-contact h5 {
      margin-bottom: 18px;
    }

    @media (min-width: 992px) {
      .footer-contact {
        padding-left: 24px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    .top-header .social-icons a {
      display: inline;
      width: auto;
      height: auto;
      background: none;
      border-radius: 0;
      line-height: inherit;
      margin: 0 8px;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .top-header .social-icons a:hover {
      background: none;
      color: var(--primary-color);
    }

    @media (max-width: 991px) {
      .footer-brand {
        text-align: center;
      }

      .footer-brand p {
        margin-left: auto;
        margin-right: auto;
      }

      .footer-cta,
      .footer-social {
        justify-content: center;
      }

      .footer-social {
        margin-bottom: 8px;
      }
    }

    @media (max-width: 768px) {
      .footer-top,
      .footer-sitemap {
        text-align: center;
      }

      .footer-links ul {
        margin-bottom: 16px;
      }

      .footer-contact-list li {
        justify-content: center;
      }

      .footer-contact {
        margin-top: 8px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-legal {
        justify-content: center;
      }
    }

    /* Páginas legais */
    .legal-page {
      background: var(--surface);
      padding: 48px 0 80px;
      min-height: 50vh;
    }

    .legal-page .legal-container {
      max-width: 720px;
      margin: 0 auto;
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 36px;
    }

    .legal-page h1 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .legal-page .legal-updated {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .legal-page h2 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      margin-top: 28px;
      margin-bottom: 12px;
    }

    .legal-page p,
    .legal-page li {
      font-size: 0.9375rem;
      color: #475569;
      line-height: 1.75;
    }

    .legal-page ul {
      padding-left: 1.25rem;
      margin-bottom: 16px;
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.875rem;
      margin-bottom: 24px;
      text-decoration: none;
    }

    .legal-back:hover {
      color: var(--primary-dark);
    }
	.section-about {
      background-color: #fff;
      padding: 80px 0;
    }

    .section-about h2 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 30px;
    }

    .section-about p {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
    }

    .features-icon {
      font-size: 2rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .feature-card {
      transition: transform 0.3s ease;
      border: none;
      padding: 20px;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .btn-cta,
    .btn-cta-primary {
      background-color: var(--success-color);
      color: white;
      padding: 0.75rem 1.75rem;
      font-size: 1rem;
      border-radius: 50px;
      transition: all 0.25s ease;
      display: inline-block;
      font-weight: 600;
      box-shadow: 0 4px 14px rgba(150, 195, 34, 0.35);
      border: none;
      text-decoration: none;
    }

    .btn-cta:hover,
    .btn-cta-primary:hover {
      background-color: #7da31c;
      color: white !important;
      box-shadow: 0 6px 18px rgba(150, 195, 34, 0.45);
      transform: translateY(-2px);
      text-decoration: none;
    }

    .btn-cta-outline {
      background-color: transparent;
      color: white;
      padding: 0.75rem 1.75rem;
      font-size: 1rem;
      border-radius: 50px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
      display: inline-block;
    }

    .btn-cta-outline:hover {
      background-color: rgba(255, 255, 255, 0.12);
      border-color: white;
      color: white;
      text-decoration: none;
    }

    .btn-cta-light {
      background-color: white;
      color: var(--primary-color);
      padding: 0.75rem 1.75rem;
      font-size: 1rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
      display: inline-block;
      box-shadow: var(--shadow-sm);
    }

    .btn-cta-light:hover {
      background-color: #f1f5f9;
      color: var(--primary-dark);
      transform: translateY(-2px);
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .section-about h2 {
        font-size: 1.8rem;
      }
    }
	   /* Namespace da Seção */
   /* Namespace da Seção */
    .estoque-section {
      background: var(--surface);
      padding: 80px 0;
    }

    .estoque-section .section-title {
      color: #0f172a;
    }

    /* Mapa Visual do Processo */
    .processo-mapa {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      margin-top: 40px;
      gap: 15px;
    }

    .processo-line {
      position: absolute;
      top: 50%;
      left: 0;
      height: 2px;
      width: 100%;
      background: var(--border);
      z-index: 0;
      transform: translateY(-50%);
    }

    .processo-step {
      flex: 1 1 calc(20% - 15px);
      min-width: 140px;
      max-width: 180px;
      text-align: center;
      padding: 20px 15px;
      border-radius: 12px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: var(--shadow-sm);
    }

    .processo-step:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .processo-step i {
      font-size: 1.5rem;
      color: white;
    }

    .processo-step h5 {
      font-size: 0.8125rem;
      color: white;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 0;
      text-align: center;
      line-height: 1.35;
    }

    .step-xml { background-color: #3a9bd9; }
    .step-custo { background-color: #4caf7d; }
    .step-preco { background-color: #e9a23b; }
    .step-contas { background-color: #e67e5f; }
    .step-final { background-color: var(--success-color); }

    /* Garantia de layout horizontal em desktop */
    @media (min-width: 992px) {
      .processo-mapa {
        flex-wrap: nowrap;
      }
    }

    /* Responsividade para telas menores */
    @media (max-width: 991px) {
      .processo-mapa {
        flex-wrap: wrap;
        justify-content: center;
      }

      .processo-step {
        flex: 1 1 calc(45% - 15px);
      }

      .processo-line {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .processo-step {
        flex: 1 1 100%;
      }
    }
	 .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    font-size: 2rem;
  }

  .whatsapp-button:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .whatsapp-button {
      width: 50px;
      height: 50px;
      font-size: 1.6rem;
    }
  }
      /* Namespace da Seção */
    .integracao-section {
      background-color: white;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .integracao-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    .integracao-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    .integracao-section .feature-icon {
      font-size: 2.5rem;
      color: #1071a1;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .integracao-section .feature-item:hover .feature-icon {
      transform: translateY(-3px);
      color: #0c5a80;
    }

    .integracao-section .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 15px;
      color: #000;
    }

    .integracao-section .feature-desc {
      font-size: 1rem;
      margin-top: 10px;
      color: #666;
    }

    @media (max-width: 768px) {
      .integracao-section h2 {
        font-size: 2rem;
      }

      .integracao-section .feature-icon {
        font-size: 2rem;
      }
    }
	 /* Namespace da Seção */
    .fiscal-section {
      background: white;
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .fiscal-section .section-title {
      color: #0f172a;
    }
	 /* Namespace da Seção */
    .sistema-section {
      background-color: #126ca2; /* Azul principal */
      color: white;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .sistema-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }

    .sistema-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
    }

    .feature-icon {
      font-size: 2.5rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .feature-item:hover .feature-icon {
      transform: translateY(-3px);
      color: #d6eaff;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 15px;
      color: white;
    }

    .feature-desc {
      font-size: 1rem;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.9);
    }

    @media (max-width: 768px) {
      .sistema-section h2 {
        font-size: 2rem;
      }

      .feature-icon {
        font-size: 2rem;
      }
    }
	   /* Namespace da Seção */
    .importancia-section {
      background-color: white;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .importancia-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    .importancia-section .section-title,
    .pdv-tef-section .section-title,
    .planos-section .section-title {
      color: #0f172a;
    }

    .importancia-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    .importancia-section .feature-icon {
      font-size: 2.5rem;
      color: #1071a1;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .importancia-section .feature-item:hover .feature-icon {
      transform: translateY(-3px);
      color: #0c5a80;
    }

    .importancia-section .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 15px;
      color: #000;
    }

    .importancia-section .feature-desc {
      font-size: 1rem;
      margin-top: 10px;
      color: #666;
    }

    /* Mapa Visual do Funcionamento */
    .importancia-section .funcionamento-mapa {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      margin-top: 40px;
    }

    .importancia-section .mapa-line {
      flex: 1 1 auto;
      height: 2px;
      background-color: #ddd;
      position: relative;
    }

    .importancia-section .mapa-step {
      flex: 1 1 180px;
      text-align: center;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 10px;
      margin: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .importancia-section .mapa-step:hover {
      transform: translateY(-5px);
    }

    /* Estilização dos ícones do mapa (CSS localizado) */
    .importancia-section .mapa-step i {
      font-size: 2.5rem;
      margin-bottom: 10px;
      border-radius: 50%;
      padding: 10px;
      transition: all 0.3s ease;
    }

    /* Cores personalizadas por passo - Dentro do namespace */
    .importancia-section .step-dados i {
      color: #3a9bd9;
      background-color: #e3f2fd;
    }

    .importancia-section .step-integracao i {
      color: #4caf7d;
      background-color: #e8f5e9;
    }

    .importancia-section .step-analise i {
      color: #f9b757;
      background-color: #fff8e1;
    }

    .importancia-section .step-decisao i {
      color: #28a745;
      background-color: #e6ffe6;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .importancia-section .funcionamento-mapa {
        flex-direction: column;
      }

      .importancia-section .mapa-line {
        display: none;
      }
    }
	/* Namespace da seção */
    .faq-section {
      background-color: white;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .faq-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    .faq-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    .faq-item {
      border: 1px solid #e9ecef;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
      transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .faq-header {
      background-color: #f8f9fa;
      padding: 18px 25px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      position: relative;
      color: #1071a1;
      transition: background-color 0.3s ease;
    }

    .faq-header::after {
      content: "+";
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      color: #1071a1;
      transition: transform 0.3s ease;
    }

    .faq-header.active::after {
      content: "-";
      transform: translateY(-50%) rotate(180deg);
    }

    .faq-body {
      padding: 20px 25px;
      background-color: white;
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      border-top: 1px solid #e9ecef;
    }

    @keyframes fadeIn {
      from { opacity: 0; max-height: 0; }
      to { opacity: 1; max-height: 500px; }
    }

    @media (max-width: 768px) {
      .faq-section h2 {
        font-size: 2rem;
      }

      .faq-header::after {
        font-size: 1rem;
      }
    }
	    /* Namespace da seção */
    .pdv-tef-section {
      background-color: white;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Título principal */
    .pdv-tef-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    /* Texto introdutório */
    .pdv-tef-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    /* Ícones dos recursos */
    .pdv-tef-section .feature-icon {
      font-size: 2.5rem;
      color: #1071a1;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Hover nos cards */
    .pdv-tef-section .feature-item:hover .feature-icon {
      transform: translateY(-3px);
      color: #0c5a80;
    }

    /* Títulos dos recursos */
    .pdv-tef-section .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 15px;
      color: #000;
    }

    /* Descrições dos recursos */
    .pdv-tef-section .feature-desc {
      font-size: 1rem;
      margin-top: 10px;
      color: #666;
    }

    /* Imagem do PDV */
    .pdv-tef-section .image-pdv {
      max-width: 400px;
      margin: auto;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    /* Efeito na imagem ao passar o mouse */
    .pdv-tef-section .image-pdv:hover {
      transform: translateY(-5px);
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .pdv-tef-section h2 {
        font-size: 2rem;
      }

      .pdv-tef-section .feature-icon {
        font-size: 2rem;
      }
    }
	 /* Namespace da Seção */
    .planos-section {
      background-color: #f9f9f9;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .planos-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    .planos-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    /* Card do plano */
    .planos-section .card-plano {
      border: none;
      border-radius: 15px;
/*      overflow: hidden;*/
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: white;
      height: 100%;
    }

    .planos-section .card-plano:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .planos-section .plano-header {
      padding: 25px;
      border-bottom: 1px solid #e9ecef;
      text-align: center;
      background-color: white;
    }

    .planos-section .plano-header h4 {
      color: #1071a1;
      font-weight: 700;
      margin: 0;
      font-size: 1.5rem;
    }

    .planos-section .plano-desc {
      font-size: 0.95rem;
      color: #6c757d;
    }

    .planos-section .plano-preco {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1071a1;
      text-align: center;
    }

    .planos-section .plano-extra-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #333;
      margin: 12px 0 8px;
      padding-top: 8px;
      border-top: 1px solid #e9ecef;
    }

    .planos-section .plano-body {
      padding: 20px;
    }

    .planos-section .plano-body ul {
      list-style: none;
      padding-left: 0;
    }

    .planos-section .plano-body ul li {
      padding: 8px 0;
      font-size: 0.95rem;
      color: #555;
      display: flex;
      align-items: center;
    }

    .planos-section .plano-body ul li i {
      width: 24px;
      text-align: center;
      margin-right: 8px;
      color: #28a745;
      transition: color 0.3s ease;
    }

    .planos-section .plano-body ul li.plano-li-marketplace {
      align-items: flex-start;
    }

    .planos-section .plano-li-marketplace-inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      width: 100%;
    }

    .planos-section .plano-li-marketplace-text {
      display: flex;
      align-items: flex-start;
    }

    .planos-section .plano-tag-preco-adicional {
      font-size: 0.7rem;
      line-height: 1.25;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 999px;
      background-color: #eef5e8;
      color: #4a6b2a;
      border: 1px solid #c5d9a8;
      margin-left: 32px;
    }

    .planos-section .plano-footer {
      padding: 20px;
      text-align: center;
      border-top: 1px solid #e9ecef;
    }

    .planos-section .btn-primary {
      background-color: #96c322;
      color: white;
      border: none;
      font-weight: bold;
    }

    .planos-section .btn-outline-primary {
      border-color: #8cb61f;
      color: #8cb61f;
      font-weight: bold;
    }

    .planos-section .btn-outline-primary:hover {
      background-color: #8cb61f;
      color: white;
    }

    /* Destaque Mais Vendido */
    .planos-section .destaque {
      position: relative;
	  border-bottom:1px solid #96c322;
	  border-left:1px solid #96c322;
	  border-right:1px solid #96c322;
	  border-radius:19px;
    }

    .planos-section .destaque::before {
      content: "Recomendado";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fd7e14;
      color: white;
      font-size: 0.9rem;
      padding: 5px 20px;
      border-radius: 30px;
      font-weight: bold;
      z-index: 2;
      white-space: nowrap;
    }

    /* Cores dos ícones por plano */
    .planos-section .plano-completo i { color: #1071a1; }
    .planos-section .plano-flex i { color: #28a745; }
    .planos-section .plano-producao i { color: #fd7e14; }
    .planos-section .plano-prime i { color: #6f42c1; }

    /* Responsividade */
    @media (max-width: 768px) {
      .planos-section .destaque::before {
        font-size: 0.75rem;
        padding: 5px 15px;
      }

      .planos-section .plano-header h4 {
        font-size: 1.3rem;
      }

      .planos-section .plano-desc {
        font-size: 0.85rem;
      }
    }
	   /* Namespace da seção */
    .contato-section {
      background-color: white;
      color: #333;
      padding: 80px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .contato-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #1071a1;
    }

    .contato-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 60px;
      color: #555;
    }

    .info-item {
      display: flex;
      align-items: start;
      margin-bottom: 20px;
    }

    .info-item i {
      font-size: 1.4rem;
      color: #1071a1;
      margin-right: 15px;
      min-width: 30px;
    }

    .info-item strong {
      display: block;
      font-weight: 600;
      margin-bottom: 5px;
      color: #000;
    }

    .info-item span {
      font-size: 1rem;
      color: #555;
    }

    .form-control {
      border-radius: 8px;
    }

    .form-select {
      border-radius: 8px;
    }

    .btn-enviar {
      background-color: #1071a1;
      color: white;
      border-radius: 30px;
      padding: 0.6rem 1.5rem;
      transition: background-color 0.3s ease;
    }

    .btn-enviar:hover {
      background-color: #0c5a80;
    }

    .mapa iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .info-item {
        flex-direction: row;
        align-items: center;
      }

      .info-item i {
        margin-top: 5px;
      }
    }
	/* Namespace da seção */
 /* Namespace da seção */
    .cta-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
      color: white;
      padding: 64px 0;
      text-align: center;
    }

    .cta-section a {
      color: #ffffff;
      text-decoration: none;
    }

    .cta-section h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.7;
    }

    .cta-section .info-contato {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-bottom: 32px;
      font-size: 0.95rem;
    }

    .cta-section .info-contato div {
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
    }

    .cta-section .cta-icons i {
      font-size: 1.1rem;
      color: var(--success-color);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cta-section .btn-cta,
    .cta-section .btn-cta-light {
      background-color: var(--success-color);
      color: white;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.85rem 2rem;
      font-size: 1.05rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .cta-section .btn-cta:hover,
    .cta-section .btn-cta-light:hover {
      background-color: #7da31c;
      color: white;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 48px 0;
      }

      .cta-section .info-contato {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }
    }

    .destacar {
      display: block;
      margin-top: 8px;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--primary-color);
    }

    /* ── Home: header sticky ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow 0.35s ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    }

    .site-header .top-header {
      background: linear-gradient(90deg, #f1f5f9 0%, var(--surface) 50%, #f1f5f9 100%);
      color: #475569;
      font-size: 0.8125rem;
      border-bottom: 1px solid var(--border);
      padding: 0.5rem 0;
      transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
      max-height: 80px;
      overflow: visible;
    }

    .site-header.is-scrolled .top-header {
      max-height: 0;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      opacity: 0;
      border: none;
      overflow: hidden;
      pointer-events: none;
    }

    .top-header-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem 1rem;
    }

    .top-header-contacts {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.35rem 1.25rem;
    }

    .site-header .top-header .top-header-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: #475569 !important;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .site-header .top-header .top-header-item span {
      color: inherit;
    }

    .site-header .top-header .top-header-item i {
      color: var(--primary-color);
      font-size: 0.75rem;
      opacity: 1;
    }

    .site-header .top-header .top-header-item:hover {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
      text-decoration: none;
    }

    .top-header-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .top-header-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--primary-color);
      background: rgba(16, 113, 161, 0.08);
      border: 1px solid rgba(16, 113, 161, 0.15);
      padding: 0.2rem 0.55rem;
      border-radius: 50px;
    }

    .site-header .top-header .social-icons a {
      color: var(--text-muted);
      margin: 0 0.35rem;
      font-size: 0.95rem;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .site-header .top-header .social-icons a:hover {
      color: var(--primary-color);
      transform: translateY(-2px);
    }

    .site-header .main-nav {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border) !important;
      padding: 0.85rem 0;
      transition: padding 0.35s ease, background 0.35s ease;
    }

    .site-header.is-scrolled .main-nav {
      padding: 0.55rem 0;
      background: rgba(255, 255, 255, 0.97);
    }

    .main-nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .site-header .main-nav .navbar-brand {
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }

    .site-header .main-nav .navbar-brand:hover {
      transform: scale(1.02);
    }

    .site-header .main-nav .navbar-brand .logo-dark {
      display: block;
      height: 44px;
      width: auto;
      transition: height 0.35s ease;
    }

    .site-header.is-scrolled .main-nav .navbar-brand .logo-dark {
      height: 38px;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 0.15rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .site-header .main-nav .nav-link {
      position: relative;
      display: inline-block;
      padding: 0.5rem 0.9rem !important;
      color: #475569 !important;
      font-weight: 500;
      font-size: 0.9375rem;
      letter-spacing: 0.01em;
      transition: color 0.25s ease;
    }

    .site-header .main-nav .nav-link::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0.2rem;
      width: calc(100% - 1.2rem);
      height: 2px;
      background: linear-gradient(90deg, var(--primary-color), var(--success-color));
      border-radius: 2px;
      transform: translateX(-50%) scaleX(0);
      transform-origin: center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-header .main-nav .nav-link:hover,
    .site-header .main-nav .nav-link.active {
      color: var(--primary-color) !important;
    }

    .site-header .main-nav .nav-link:hover::after,
    .site-header .main-nav .nav-link.active::after,
    .site-header .main-nav .nav-link:focus-visible::after {
      transform: translateX(-50%) scaleX(1);
    }

    .site-header .main-nav .nav-link:focus-visible {
      color: var(--primary-color) !important;
      outline: none;
      border-radius: 6px;
      box-shadow: 0 0 0 2px rgba(16, 113, 161, 0.25);
    }

    .hamburger-btn:focus-visible,
    .mobile-nav-close:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(16, 113, 161, 0.35);
    }

    .nav-actions .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      font-size: 0.875rem;
      padding: 0.55rem 1.25rem;
      border: none;
      box-shadow: 0 2px 8px rgba(150, 195, 34, 0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .nav-actions .btn-contact i {
      font-size: 1.1rem;
    }

    .nav-actions .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(150, 195, 34, 0.45);
      color: #fff;
    }

    /* Hamburger animado */
    .hamburger-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--surface);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .hamburger-btn:hover {
      border-color: var(--primary-color);
      box-shadow: var(--shadow-sm);
    }

    .hamburger-btn.is-active {
      background: var(--primary-color);
      border-color: var(--primary-color);
    }

    .hamburger-box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 20px;
      height: 16px;
    }

    .hamburger-line {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--primary-color);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
    }

    .hamburger-btn.is-active .hamburger-line {
      background: #fff;
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile: overlay + painel lateral */
    body.menu-open {
      overflow: hidden;
    }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 1001;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
    }

    .mobile-nav-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100dvh;
      background: #fff;
      z-index: 1002;
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav-panel.is-open {
      transform: translateX(0);
    }

    .mobile-nav-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.25rem;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav-title {
      font-weight: 700;
      font-size: 1rem;
      color: #1e293b;
      letter-spacing: 0.02em;
    }

    .mobile-nav-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 8px;
      background: var(--surface);
      color: #64748b;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-close:hover {
      background: #fee2e2;
      color: #dc2626;
    }

    .mobile-nav-links {
      flex: 1;
      overflow-y: auto;
      padding: 0.75rem 0;
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.95rem 1.25rem;
      color: #334155;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      border-left: 3px solid transparent;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
    }

    .mobile-nav-link i {
      font-size: 0.7rem;
      color: #cbd5e1;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      background: rgba(16, 113, 161, 0.06);
      color: var(--primary-color);
      border-left-color: var(--primary-color);
      padding-left: 1.4rem;
    }

    .mobile-nav-link:hover i,
    .mobile-nav-link.active i {
      color: var(--primary-color);
      transform: translateX(3px);
    }

    .mobile-nav-footer {
      padding: 1.25rem;
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    .btn-contact-block {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.75rem 1rem;
      font-weight: 600;
      border-radius: 10px;
      margin-bottom: 0.75rem;
    }

    .mobile-nav-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .mobile-nav-phone:hover {
      color: var(--primary-color);
    }

    @media (max-width: 575.98px) {
      .top-header-contacts {
        width: 100%;
        justify-content: center;
      }

      .top-header-meta {
        width: 100%;
        justify-content: center;
      }

      .top-header-item span {
        font-size: 0.75rem;
      }
    }

    /* ── Home: hero extras ── */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: white;
      font-size: 0.8125rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }

    .hero-badge i {
      color: var(--success-color);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-trust i {
      color: #fbbf24;
      font-size: 0.75rem;
    }

    @media (max-width: 768px) {
      .hero-actions {
        justify-content: center;
      }

      .hero-trust {
        justify-content: center;
      }
    }

    /* ── Home: stats bar ── */
    .stats-bar {
      background: white;
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
    }

    .stat-item {
      text-align: center;
      padding: 8px 16px;
    }

    .stat-item strong {
      display: block;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary-color);
      line-height: 1.2;
    }

    .stat-item span {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* ── Home: section labels ── */
    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--primary-color);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 16px;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin: 0 auto 48px;
    }

    /* ── Home: feature cards ── */
    .feature-card-modern {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .feature-card-modern:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #cbd5e1;
    }

    .feature-card-modern .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: #eff6ff;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 18px;
    }

    .feature-card-modern h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .feature-card-modern p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    .modulos-section {
      background: var(--surface);
      padding: 80px 0;
    }

    .pain-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      height: 100%;
      transition: box-shadow 0.25s ease;
    }

    .pain-card:hover {
      box-shadow: var(--shadow-md);
    }

    .pain-card .pain-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fef3c7;
      color: #d97706;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .pain-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .pain-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.65;
    }

    /* ── Home: integrations strip ── */
    .integrations-strip {
      background: white;
      padding: 48px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .integrations-strip p {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 24px;
    }

    .integration-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 32px 40px;
    }

    .integration-logos span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #94a3b8;
      transition: color 0.2s ease;
    }

    .integration-logos span i {
      font-size: 1.5rem;
    }

    .integration-logos span:hover {
      color: var(--primary-color);
    }

    /* ── Home: testimonials ── */
    .testimonials-section {
      background: var(--surface);
      padding: 80px 0;
    }

    .testimonial-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      height: 100%;
    }

    .testimonial-card .stars {
      color: #fbbf24;
      font-size: 0.875rem;
      margin-bottom: 14px;
    }

    .testimonial-card blockquote {
      font-size: 0.9375rem;
      color: #334155;
      line-height: 1.7;
      margin: 0 0 20px;
      font-style: normal;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-author .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary-color);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.875rem;
    }

    .testimonial-author strong {
      display: block;
      font-size: 0.875rem;
      color: #0f172a;
    }

    .testimonial-author span {
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    /* ── Home: FAQ refinado ── */
    .faq-section .accordion-wrapper {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-section .faq-header {
      border-radius: 0;
    }

    .faq-section .faq-item:first-child .faq-header {
      border-radius: 10px 10px 0 0;
    }

    .faq-section .faq-item:last-child {
      border-radius: 0 0 10px 10px;
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.9375rem;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .link-arrow:hover {
      gap: 10px;
      color: var(--primary-dark);
    }

    .section-cta-link {
      margin-top: 40px;
    }

    .planos-fallback-msg {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-bottom: 16px;
    }

    .planos-xml-fallback .btn-cta-primary {
      margin-top: 4px;
    }

    /* ── Páginas pilar / satélite ── */
    .pillar-hero {
      background: linear-gradient(160deg, #0c5a80 0%, #1071a1 55%, #1a8f7a 100%);
      color: white;
      padding: 48px 0 56px;
    }

    .pillar-hero--compact {
      padding: 40px 0 48px;
    }

    .pillar-hero h1 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .pillar-hero-lead {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      max-width: 720px;
      margin: 0;
    }

    .pillar-hero-cta {
      margin-top: 28px;
    }

    .pillar-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }

    .pillar-hero-actions .btn-cta-primary,
    .pillar-hero-actions .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .pillar-hero-actions .btn-cta-primary span,
    .pillar-hero-actions .btn-cta-outline span {
      position: relative;
      z-index: 1;
    }

    .btn-hero-pulse {
      box-shadow: 0 4px 18px rgba(150, 195, 34, 0.45);
      animation: hero-btn-glow 3s ease-in-out infinite;
    }

    @keyframes hero-btn-glow {
      0%, 100% {
        box-shadow: 0 4px 18px rgba(150, 195, 34, 0.4);
      }
      50% {
        box-shadow: 0 6px 28px rgba(150, 195, 34, 0.65);
      }
    }

    .pillar-hero-actions .btn-cta-outline:hover {
      background-color: rgba(255, 255, 255, 0.15);
      border-color: white;
      transform: translateY(-2px);
    }

    .pillar-hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.82);
    }

    .pillar-hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
      cursor: default;
    }

    .pillar-hero-trust span:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.14);
      color: white;
    }

    .pillar-hero-trust i {
      color: #fbbf24;
      font-size: 0.8rem;
    }

    .ripple-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      transform: scale(0);
      animation: ripple-anim 0.6s ease-out forwards;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes ripple-anim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    @media (max-width: 576px) {
      .pillar-hero-actions {
        flex-direction: column;
      }

      .pillar-hero-actions .btn-cta-primary,
      .pillar-hero-actions .btn-cta-outline {
        width: 100%;
        text-align: center;
      }

      .pillar-hero-trust {
        justify-content: center;
      }
    }

    .pillar-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.75);
    }

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

    .pillar-breadcrumb a:hover {
      color: white;
      text-decoration: underline;
    }

    .pillar-body {
      padding: 64px 0 80px;
      background: var(--surface);
    }

    .pillar-article {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 32px;
      margin-bottom: 28px;
    }

    .pillar-article h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f172a;
      margin-top: 28px;
      margin-bottom: 14px;
    }

    .pillar-article h2:first-child {
      margin-top: 0;
    }

    .pillar-article h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      margin-top: 22px;
      margin-bottom: 10px;
    }

    .pillar-article p,
    .pillar-article li {
      font-size: 0.975rem;
      color: #475569;
      line-height: 1.75;
    }

    .pillar-article ul,
    .pillar-article ol {
      padding-left: 1.25rem;
      margin-bottom: 16px;
    }

    .pillar-article a {
      color: var(--primary-color);
      font-weight: 500;
    }

    .pillar-article a:hover {
      color: var(--primary-dark);
    }

    .satellite-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
    }

    .satellite-card {
      display: block;
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      height: 100%;
    }

    .satellite-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #cbd5e1;
      text-decoration: none;
      color: inherit;
    }

    .satellite-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #eff6ff;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 14px;
    }

    .satellite-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .satellite-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .satellite-card-link {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
    }

    .pillar-sidebar-inner {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      position: sticky;
      top: 96px;
    }

    .pillar-sidebar h3 {
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .pillar-sidebar-home {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #334155;
      text-decoration: none;
      margin-bottom: 12px;
      background: var(--surface);
    }

    .pillar-sidebar-home:hover,
    .pillar-sidebar-home.is-active {
      background: #eff6ff;
      color: var(--primary-color);
    }

    .pillar-sidebar-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .pillar-sidebar-list li {
      margin-bottom: 4px;
    }

    .pillar-sidebar-list a {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 0.875rem;
      color: #475569;
      text-decoration: none;
      line-height: 1.4;
    }

    .pillar-sidebar-list a i {
      margin-top: 2px;
      color: var(--primary-color);
      width: 16px;
      flex-shrink: 0;
    }

    .pillar-sidebar-list a:hover,
    .pillar-sidebar-list a.is-active {
      background: #eff6ff;
      color: var(--primary-color);
      font-weight: 600;
    }

    .pillar-sidebar-cta {
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .pillar-sidebar-cta p {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .btn-sm-pillar {
      display: inline-block;
      padding: 0.55rem 1.25rem;
      font-size: 0.875rem;
    }

    .pillar-cta-box {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 32px;
      text-align: center;
    }

    .pillar-cta-box h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .pillar-cta-box p {
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .pillar-article-nav {
      margin-bottom: 24px;
    }

    .pillar-meta {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 12px;
      margin-bottom: 0;
    }

    .pillar-meta i {
      margin-right: 6px;
    }

    .pillar-meta .reading-time {
      margin-left: 12px;
      padding-left: 12px;
      border-left: 1px solid rgba(255, 255, 255, 0.25);
    }

    .pillar-summary {
      background: var(--surface);
      border-left: 4px solid var(--primary-color);
      padding: 1rem 1.25rem;
      margin-bottom: 1.5rem;
      border-radius: 0 8px 8px 0;
    }

    .pillar-summary-title {
      font-weight: 600;
      font-size: 0.9375rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .pillar-summary-title i {
      color: var(--primary-color);
      margin-right: 6px;
    }

    .pillar-summary-list {
      margin: 0;
      padding-left: 1.25rem;
      font-size: 0.9375rem;
      color: var(--text-secondary);
    }

    .pillar-summary-list li {
      margin-bottom: 0.35rem;
    }

    .pillar-summary-list li:last-child {
      margin-bottom: 0;
    }

    .pillar-faq {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .pillar-faq h2 {
      margin-top: 0;
    }

    .pillar-faq .accordion-wrapper {
      margin-top: 16px;
    }

    .pillar-table-wrap {
      margin: 20px 0;
    }

    .pillar-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    .pillar-table th,
    .pillar-table td {
      border: 1px solid var(--border);
      padding: 10px 12px;
      text-align: left;
    }

    .pillar-table th {
      background: var(--surface);
      font-weight: 600;
      color: #0f172a;
    }

    .pillar-prev-next {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .pillar-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary-color);
      text-decoration: none;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: white;
      max-width: 48%;
    }

    .pillar-nav-link:hover {
      background: #eff6ff;
      color: var(--primary-dark);
    }

    .pillar-nav-link--next {
      margin-left: auto;
    }

    @media (max-width: 991px) {
      .pillar-sidebar-inner {
        position: static;
      }

      .pillar-nav-link {
        max-width: 100%;
      }
    }

    /* ── FASE C: autor, métricas, figuras, fluxo, blog ── */
    .pillar-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      background: var(--surface);
      border-radius: 12px;
      margin-bottom: 24px;
    }

    .pillar-author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary-color);
      color: white;
      font-weight: 700;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .pillar-author strong {
      display: block;
      font-size: 0.9375rem;
      color: #0f172a;
    }

    .pillar-author span {
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .pillar-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pillar-metrics-item {
      background: white;
      text-align: center;
      padding: 20px 12px;
    }

    .pillar-metrics-item strong {
      display: block;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    .pillar-metrics-item span {
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    .pillar-figure {
      margin: 24px 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .pillar-figure img {
      width: 100%;
      height: auto;
      display: block;
    }

    .pillar-figure figcaption {
      padding: 12px 16px;
      font-size: 0.875rem;
      color: var(--text-muted);
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .pillar-flow {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 24px 0;
      padding: 20px;
      background: var(--surface);
      border-radius: 12px;
      border: 1px solid var(--border);
    }

    .pillar-flow-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-width: 72px;
    }

    .pillar-flow-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary-color);
      color: white;
      font-size: 0.8125rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
    }

    .pillar-flow-step strong {
      font-size: 0.75rem;
      color: #334155;
      font-weight: 600;
    }

    .pillar-flow-arrow {
      color: #94a3b8;
      font-size: 0.875rem;
      padding: 0 2px;
    }

    .pillar-blog-related {
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 20px;
    }

    .pillar-blog-related h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .pillar-blog-related h3 i {
      color: var(--primary-color);
      margin-right: 8px;
    }

    .pillar-blog-related ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pillar-blog-related li {
      margin-bottom: 8px;
    }

    .pillar-blog-related a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--primary-color);
      text-decoration: none;
    }

    .pillar-blog-related a:hover {
      text-decoration: underline;
    }

    .pillar-testimonials {
      padding: 56px 0 64px;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .pillar-testimonials-title {
      font-size: 1.35rem;
      font-weight: 700;
      text-align: center;
      color: #0f172a;
      margin-bottom: 32px;
    }

    @media (max-width: 767px) {
      .pillar-metrics {
        grid-template-columns: repeat(2, 1fr);
      }

      .pillar-flow {
        flex-direction: column;
        align-items: stretch;
      }

      .pillar-flow-arrow {
        transform: rotate(90deg);
        align-self: center;
      }

      .pillar-flow-step {
        flex-direction: row;
        gap: 10px;
        min-width: 100%;
        text-align: left;
      }

      .pillar-flow-num {
        margin-bottom: 0;
      }
    }

    /* ── FASE D: TOC, cases, lead magnet ── */
    .pillar-toc {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 20px;
      margin-bottom: 24px;
    }

    .pillar-toc-title {
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .pillar-toc ol {
      margin: 0;
      padding-left: 1.2rem;
    }

    .pillar-toc li {
      margin-bottom: 6px;
    }

    .pillar-toc a {
      font-size: 0.9rem;
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
    }

    .pillar-toc a:hover {
      text-decoration: underline;
    }

    .pillar-case {
      margin-top: 28px;
      padding: 22px 24px;
      background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
      border: 1px solid #bfdbfe;
      border-radius: 12px;
    }

    .pillar-case-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--primary-color);
      margin-bottom: 8px;
    }

    .pillar-case h3 {
      font-size: 1.1rem;
      margin-top: 0;
      margin-bottom: 10px;
      color: #0f172a;
    }

    .pillar-case p,
    .pillar-case li {
      font-size: 0.9rem;
      color: #475569;
    }

    .pillar-magnet {
      margin: 24px 0;
      padding: 22px 24px;
      background: white;
      border: 2px dashed var(--primary-color);
      border-radius: 12px;
    }

    .pillar-magnet-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .pillar-magnet-title i {
      color: var(--primary-color);
      margin-right: 8px;
    }

    .pillar-magnet-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .pillar-magnet-list {
      padding-left: 1.25rem;
      margin-bottom: 16px;
    }

    .pillar-magnet-list li {
      margin-bottom: 6px;
      font-size: 0.9rem;
      color: #475569;
    }

    .pillar-magnet-print {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      border-radius: 8px;
      cursor: pointer;
    }

    .pillar-magnet-print:hover {
      background: #dbeafe;
    }

    @media print {
      .site-header,
      .pillar-sidebar,
      .pillar-cta-box,
      .pillar-blog-related,
      .pillar-prev-next,
      .pillar-article-nav,
      .footer,
      .whatsapp-button,
      .pillar-testimonials,
      .pillar-metrics,
      .pillar-magnet-print {
        display: none !important;
      }

      .pillar-magnet,
      .pillar-article {
        border: none;
        box-shadow: none;
      }

      .pillar-body {
        padding: 0;
      }
    }

    /* Guia Distribuidora — sidebar blog */
    .guia-promo-card {
      background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
      border-left: 4px solid var(--primary-color, #0d6efd) !important;
    }

    .guia-promo-card .card-title {
      font-size: 1.05rem;
      font-weight: 700;
    }

    .guia-promo-links li {
      margin-bottom: 0.35rem;
    }

    .guia-promo-links a {
      color: var(--primary-color, #0d6efd);
      text-decoration: none;
      font-size: 0.875rem;
    }

    .guia-promo-links a:hover {
      text-decoration: underline;
    }

    /* ── Landing ERP Distribuidora ── */
    .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; }
    }
