@charset "utf-8";
/* CSS Document */
 /* Título principal */
    .solutions-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .solutions-section p.lead {
      font-size: 1.2rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de soluções */
    .solution-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
    }
    .solution-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Ícones dos cartões */
    .solution-card i {
      font-size: 3rem;
      color: #eb6a1d;
      margin-bottom: 20px;
    }

    /* Títulos dos cartões */
    .solution-card h5 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    /* Textos dos cartões */
    .solution-card p {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
    }
/* Estilo geral da seção */
    .pcp-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .pcp-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .pcp-section p.lead {
      font-size: 1.2rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
/* Estilo geral da seção */
    .production-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .production-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .production-section p.lead {
      font-size: 1.2rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
	/* Estilo geral da seção */
    .external-service-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }

    /* Título principal */
    .external-service-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .external-service-section p.lead {
      font-size: 1.2rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }


    /* Estilo do texto complementar */
    .complement-text {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      height: 100%;
    }

    .complement-text i {
      font-size: 3rem;
      color: #eb6a1d;
      margin-bottom: 20px;
      display: block;
    }

    .complement-text h5 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .complement-text p {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
    }

    /* Estilo dos itens do accordion */
    .accordion-item {
      border: none;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .accordion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Cabeçalho do accordion */
    .accordion-button {
      font-size: 1.2rem;
      font-weight: bold;
      color: #2c3e50;
      background-color: #ffffff;
      border: none;
      border-radius: 10px;
      padding: 15px 20px;
      transition: background-color 0.3s ease;
    }
    .accordion-button:not(.collapsed) {
      background-color: #eb6a1d;
      color: #ffffff;
    }

    /* Ícone do botão */
    .accordion-button::after {
      content: "\f107"; /* Ícone de seta para baixo */
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      float: right;
      transition: transform 0.3s ease;
    }
    .accordion-button.collapsed::after {
      content: "\f105"; /* Ícone de seta para direita */
      transform: rotate(90deg);
    }

    /* Corpo do accordion */
    .accordion-body {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
      padding: 15px 20px;
      background-color: #f9f9f9;
      border-radius: 0 0 10px 10px;
    }
	/* Estilo geral da seção */
    .erp-section {
      background-color: #2c3e50; /* Azul claro */
      color: #ffffff;
      padding: 60px 0;
    }

    /* Título principal */
    .erp-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .erp-section p.lead {
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de vantagens */
    .erp-card {
      background-color: rgba(255, 255, 255, 0.1); /* Fundo transparente com brilho leve */
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
    }
    .erp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Ícones dos cartões */
    .erp-card i {
      font-size: 3rem;
      color: #ffffff;
      margin-bottom: 20px;
    }

    /* Títulos dos cartões */
    .erp-card h5 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    /* Textos dos cartões */
    .erp-card p {
      font-size: 1rem;
      line-height: 1.6;
    }
	/* Estilo geral da seção */
    .integration-section {
      background-color: #2c3e50; /* Azul claro */
      color: #ffffff;
      padding: 60px 0;
    }

    /* Título principal */
    .integration-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .integration-section p.lead {
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de integrações */
    .integration-card {
      background-color: rgba(255, 255, 255, 0.1); /* Fundo transparente com brilho leve */
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
    }
    .integration-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Ícones dos cartões */
    .integration-card i {
      font-size: 3rem;
      color: #ffffff;
      margin-bottom: 20px;
    }

    /* Títulos dos cartões */
    .integration-card h5 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    /* Textos dos cartões */
    .integration-card p {
      font-size: 1rem;
      line-height: 1.6;
    }

/* Estilo geral da seção */
    .migration-section {
      background-color: #ffffff;
      padding: 60px 0;
    }

    /* Título principal */
    .migration-section h2 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Subtítulo */
    .migration-section p.lead {
      font-size: 1.2rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Cartões de etapas */
    .migration-card {
      background-color: #f9f9f9;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px;
      text-align: center;
    }
    .migration-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Ícones dos cartões */
    .migration-card i {
      font-size: 3rem;
      color: #eb6a1d;
      margin-bottom: 20px;
    }

    /* Títulos dos cartões */
    .migration-card h5 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    /* Textos dos cartões */
    .migration-card p {
      font-size: 1rem;
      color: #6c757d;
      line-height: 1.6;
    }
	
