html {
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: 100px; /* Compensar menu fixo */
}

/* Ajustar padding-top do body para diferentes tamanhos de tela */
@media (max-width: 992px) {
  body {
    padding-top: 90px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
}

/* ===== SISTEMA DE TIPOGRAFIA PADRONIZADO ===== */

/* Tipografia base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  p {
    text-align: justify !important;
  }
}

/* Hierarquia de títulos padronizada */
.typography-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.typography-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.typography-h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.typography-h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.875rem;
}

.typography-h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.typography-h6 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

/* Textos descritivos padronizados */
.typography-lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.typography-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.typography-small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

/* Responsividade para tipografia */
@media (max-width: 992px) {
  .typography-h1 {
    font-size: 3rem;
  }
  
  .typography-h2 {
    font-size: 2.25rem;
  }
  
  .typography-h3 {
    font-size: 1.625rem;
  }
  
  .typography-lead {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .typography-h1 {
    font-size: 2.5rem;
  }
  
  .typography-h2 {
    font-size: 2rem;
  }
  
  .typography-h3 {
    font-size: 1.5rem;
  }
  
  .typography-h4 {
    font-size: 1.375rem;
  }
  
  .typography-lead {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .typography-h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .typography-h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .typography-h3 {
    font-size: 1.375rem;
  }
  
  .typography-h4 {
    font-size: 1.25rem;
  }
}

nav {
  width: 100%;
  background-color: white;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Garantir que o navbar não interfira com o offcanvas */
.navbar {
  z-index: 1000 !important;
}

/* ===== MENU DESKTOP ===== */
.nav-link-custom {
  color: #6478d3;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover::after {
  width: 80%;
}

.nav-link-custom:hover {
  color: #4e57c4;
  background: rgba(100, 120, 211, 0.1);
  transform: translateY(-1px);
}

.nav-link-custom.active {
  color: #4e57c4;
  font-weight: 600;
}

.nav-link-custom.active::after {
  width: 80%;
}

/* Botões: */

.contact-button {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #6478d3;
  border-radius: 25px;
  color: #6478d3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-button:hover::before {
  left: 0;
}

.contact-button:hover {
  color: #fff;
  border-color: #6478d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 120, 211, 0.3);
}

.btn-start {
  background-color: #646fd4;
  color: #081638;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.5s ease;
  text-decoration: none;
}

.btn-start:hover {
  background-color: #4e57c4;
  color: #ffffff;
}

/* Estilos duplicados removidos - usando apenas a definição completa abaixo */

.link {
  border-radius: 20px;
  background-color: #ffffff;
  border: solid 1px #555555;
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
  font-size: 13px;
  transition: 0.3s;
}

.link:hover {
  color: #646fd4;
  border: solid 1px #646fd4;
}

.btn-cta {
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(100, 120, 211, 0.3);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 120, 211, 0.4);
  color: white;
  text-decoration: none;
}

.btn-submit {
  display: inline-block;
  padding: 8px 20px;
  width: 100px;
  border: 2px solid #2e4b99;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  background-color: #2e4b99;
  font-weight: 500;
  transition: 0.5s;
}

.btn-submit:hover {
  background-color: #002ba0;
}

/* ===== MENU MOBILE (OFFCANVAS) ===== */
.custom-offcanvas {
  width: 280px !important;
  max-width: 85vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(100, 120, 211, 0.1);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
}

/* Garantir que o offcanvas funcione corretamente */
.offcanvas {
  z-index: 9999 !important;
}

.offcanvas-backdrop {
  z-index: 9998 !important;
}

/* Forçar visibilidade do offcanvas */
.offcanvas.show {
  transform: translateX(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Garantir que o offcanvas seja visível quando aberto */
.offcanvas-start {
  left: 0 !important;
  transform: translateX(-100%) !important;
}

.offcanvas-start.show {
  transform: translateX(0) !important;
}

/* Forçar posicionamento correto */
.offcanvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  max-height: 100vh !important;
  visibility: hidden !important;
  background-color: #fff !important;
  background-clip: padding-box !important;
  outline: 0 !important;
  transition: transform 0.3s ease-in-out !important;
}

.offcanvas.show {
  visibility: visible !important;
}

.custom-offcanvas .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(100, 120, 211, 0.1);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.custom-offcanvas .offcanvas-header img {
  max-width: 120px;
  height: auto;
}

.custom-offcanvas .btn-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  padding: 0.5rem;
  color: #6478d3;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.custom-offcanvas .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.offcanvas-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  color: #495057;
  overflow-y: auto;
}

/* Links do menu mobile */
.custom-offcanvas .navbar-nav {
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.custom-offcanvas .nav-link-custom {
  display: block;
  padding: 1rem 1.5rem;
  color: #495057;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.custom-offcanvas .nav-link-custom:hover {
  background: rgba(100, 120, 211, 0.1);
  color: #6478d3;
  border-left-color: #6478d3;
  transform: translateX(4px);
}

/* Botão de contato no menu mobile */
.custom-offcanvas .contact-button {
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  margin-top: auto;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-offcanvas .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 120, 211, 0.4);
  color: white;
}

/* ===== BOTÃO HAMBURGER ===== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1051;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(100, 120, 211, 0.25);
  outline: none;
}

.navbar-toggler:hover {
  background: rgba(100, 120, 211, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28100, 120, 211, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  transform: scale(1.1);
}

/* Garantir que o botão hamburger seja visível apenas em mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .navbar-collapse {
    display: none !important;
  }
}

/* Esconder botão hamburger em desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* Forçar visibilidade do botão hamburger apenas em mobile */
.navbar-toggler.d-block.d-lg-none {
  display: none !important;
}

@media (max-width: 991.98px) {
  .navbar-toggler.d-block.d-lg-none {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Botão hamburger visível apenas em mobile */
.navbar-toggler {
  display: none !important;
}

/* Garantir que o botão seja visível apenas em telas pequenas */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: rgba(100, 120, 211, 0.1) !important;
    border: 2px solid #6478d3 !important;
    border-radius: 8px !important;
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .navbar-brand img {
    max-width: 120px;
  }
  
  .nav-link-custom {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .contact-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* ===== PADRONIZAÇÃO DE HEADERS ===== */

/* Animação para elementos do header */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Section - Padrão para todas as páginas */
.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
  padding: 120px 0 80px 0;
  margin-top: -100px; /* Compensar padding-top do body */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-header-white {
  background: #ffffff;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(100, 120, 211, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(78, 87, 196, 0.05) 0%, transparent 50%);
  backdrop-filter: blur(0.5px);
}

.header-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1140px; /* Mesma largura do container Bootstrap */
  margin: 0 auto;
  padding: 0 15px; /* Mesmo padding do container Bootstrap */
}

.header-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.header-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.header-description {
  font-size: 1.25rem;
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.header-description:last-child {
  margin-bottom: 0;
}

/* Responsividade para headers */
@media (max-width: 1200px) {
  .header-content {
    max-width: 960px; /* Container Bootstrap lg */
  }
  
  .header-title {
    font-size: 3rem;
  }
  
  .header-subtitle {
    font-size: 1.3rem;
  }
  
  .header-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .page-header {
    padding: 100px 0 60px 0;
    margin-top: -90px;
  }
  
  .header-content {
    max-width: 720px; /* Container Bootstrap md */
  }
  
  .header-title {
    font-size: 2.5rem;
  }
  
  .header-subtitle {
    font-size: 1.2rem;
  }
  
  .header-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 50px 0;
    margin-top: -80px;
  }
  
  .header-content {
    max-width: 540px; /* Container Bootstrap sm */
    padding: 0 15px;
  }
  
  .header-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .header-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .header-description {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 70px 0 40px 0;
    margin-top: -70px;
  }
  
  .header-content {
    max-width: 100%; /* Container Bootstrap xs - largura total */
    padding: 0 15px;
  }
  
  .header-title {
    font-size: 1.75rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
  }
  
  .header-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Pag - início */

/* Carrousel*/
.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.carousel-inner {
  padding-bottom: 50px;
}

.slide-content h2 {
  margin-bottom: 30px;
  font-size: 40px;
}

.slide-content p {
  margin-bottom: 40px;
  font-size: 15px;
}

@media (max-width: 576px) {
  .slide-content p {
    margin-bottom: 0;
  }
}

/* ===== SEÇÃO NOSSOS IMPACTOS ===== */

.impact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.btn-explore {
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(100, 120, 211, 0.3);
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 120, 211, 0.4);
  color: white;
}

.impact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f3f4;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.25rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.card-content {
  padding-top: 0.5rem;
}

.card-intro {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Lista de Valores */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.value-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.value-content {
  display: flex;
  flex-direction: column;
}

.value-content strong {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.value-content span {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Lista de Benefícios */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-left: 4px solid #6478d3;
  background: #f8f9fa;
  border-radius: 0 12px 12px 0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  border-left-color: #4e57c4;
  transform: translateX(5px);
}

.benefit-item.highlight {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left-color: #ffc107;
  border-radius: 12px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-content {
  display: flex;
  flex-direction: column;
}

.benefit-content strong {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.benefit-content span {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
  .impact-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .impact-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .card-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .value-item,
  .benefit-item {
    padding: 0.75rem;
  }
}

/* ===== SEÇÃO DESAFIOS DOS CLIENTES ===== */

.challenges-section {
  padding: 80px 0;
  background-color: white;
}

/* Reutiliza estilos da seção anterior para consistência */
.challenges-section .section-header {
  margin-bottom: 60px;
}

.challenges-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.challenges-section .section-description {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.challenge-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reutiliza estilos do card-header da seção anterior */
.challenges-section .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f3f4;
}

.challenges-section .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.25rem;
}

.challenges-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.challenges-section .card-content {
  padding-top: 0.5rem;
}

.challenges-section .card-intro {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Lista de Soluções */
.solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #28a745;
}

.solution-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
  border-left-color: #20c997;
}

.solution-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.solution-content {
  display: flex;
  flex-direction: column;
}

.solution-content strong {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.solution-content span {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Lista de Oportunidades */
.opportunities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #007bff;
}

.opportunity-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
  border-left-color: #0056b3;
}

.opportunity-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.opportunity-content {
  display: flex;
  flex-direction: column;
}

.opportunity-content strong {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.opportunity-content span {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
  .challenges-section {
    padding: 60px 0;
  }
  
  .challenges-section .section-title {
    font-size: 2rem;
  }
  
  .challenges-section .section-description {
    font-size: 1.1rem;
  }
  
  .challenge-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .challenges-section .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .challenges-section .card-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .solution-item,
  .opportunity-item {
    padding: 0.75rem;
  }
}

/* Estilos antigos removidos - agora usando .challenge-card */

/* ===== SEÇÃO TECNOLOGIAS EM MOSAICO ===== */

.tech-mosaic-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Reutiliza estilos da seção anterior para consistência */
.tech-mosaic-section .section-header {
  margin-bottom: 60px;
}

.tech-mosaic-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.tech-mosaic-section .section-description {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Container do mosaico */
.tech-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cards do mosaico */
.tech-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Posicionamento dos cards */
.tech-card-left {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
}

.tech-card-center {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  color: white;
}

.tech-card-center::before {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
}

.tech-card-small {
  grid-column: 3;
  padding: 1.5rem;
}

.tech-card-vr {
  grid-column: 1 / 4;
  grid-row: 3;
  padding: 2rem;
}

.tech-card-right {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
}

/* Conteúdo dos cards */
.tech-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
}

.tech-icon-primary {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
  color: white;
}

.tech-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tech-card-center .tech-title {
  color: white;
}

.tech-title-small {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tech-description {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tech-card-center .tech-description {
  color: rgba(255, 255, 255, 0.9);
}

.tech-description-small {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Features dos cards */
.tech-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-feature {
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 20px;
  border-left: 3px solid #6478d3;
  transition: all 0.3s ease;
}

.tech-card-center .tech-feature {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-left-color: #ffc107;
}

.tech-feature:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.tech-card-center .tech-feature:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
  .tech-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  
  .tech-card-left,
  .tech-card-center,
  .tech-card-small,
  .tech-card-right,
  .tech-card-vr {
    grid-column: 1;
    grid-row: auto;
  }
  
  .tech-card {
    padding: 1.5rem;
  }
  
  .tech-mosaic-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .tech-mosaic-section .section-title {
    font-size: 2rem;
  }
  
  .tech-mosaic-section .section-description {
    font-size: 1.1rem;
  }
  
  .tech-card {
    padding: 1.25rem;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .tech-title {
    font-size: 1.25rem;
  }
  
  .tech-title-small {
    font-size: 1.1rem;
  }
}

/* ===== SEÇÃO PERGUNTAS FREQUENTES ===== */

.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Reutiliza estilos da seção anterior para consistência */
.faq-section .section-header {
  margin-bottom: 60px;
}

.faq-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.faq-section .section-description {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Container da imagem */
.faq-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 500px;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  background-image: url('../image/digitando_computador.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Garantir que a coluna da imagem não tenha padding */
.faq-section .col-lg-6:first-child {
  padding-left: 0;
  padding-right: 15px;
}

.faq-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}


.faq-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.faq-image-container:hover .faq-image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.faq-image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
}

.faq-image-container:hover .overlay-content i {
  transform: scale(1.1);
}

.overlay-content span {
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Container do accordion */
.faq-accordion-container {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Accordion moderno */
.modern-accordion {
  border: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.faq-accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #1a1a1a;
  border-left: 4px solid #6478d3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(100, 120, 211, 0.15);
}

.faq-accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236478d3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

/* Conteúdo da pergunta */
.faq-question-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.faq-question-icon {
  width: 40px;
  height: 40px;
  background: #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #6c757d;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) .faq-question-icon {
  background: #6478d3;
  color: white;
}

.faq-question-text {
  flex: 1;
  text-align: left;
}

.faq-question-text strong {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Corpo da resposta */
.faq-accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

.faq-answer-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.faq-answer-content strong {
  color: #6478d3;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 992px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .faq-section .section-description {
    font-size: 1.1rem;
  }
  
  .faq-accordion-container {
    padding: 1.5rem;
    height: auto;
  }
  
  .faq-accordion-button {
    padding: 1.25rem;
  }
  
  .faq-image-container {
    height: 350px;
    margin-bottom: 2rem;
  }
  
  
  .faq-section .col-lg-6:first-child {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .faq-accordion-button {
    padding: 1rem;
  }
  
  .faq-question-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .faq-question-text strong {
    font-size: 1rem;
  }
  
  .faq-accordion-body {
    padding: 0 1rem 1rem 1rem;
  }
  
  .overlay-content i {
    font-size: 2rem;
  }
  
  .overlay-content span {
    font-size: 1rem;
  }
  
  .faq-image-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .faq-image-container {
    height: 250px;
  }
}

/* Estilos antigos removidos - agora usando .faq-accordion-item */

/* Container com os cards sobre nossos serviços */
.sidebar-left {
  background-color: #6478d3;
  border-radius: 10px;
  height: 400px;
}

.content-main {
  background-color: #213465;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-center;
  padding: 20px;
}

.content-main h3 {
  font-size: 40px;
}

.sidebar-right {
  background-color: #6478d3;
  border-radius: 10px;
  height: 400px;
}

.content-box-1 {
  background-color: #1556c5;
  border-radius: 10px;
  color: #ffffff;
  width: 300px;
  height: 168px;
}

.content-box-2 {
  background-color: #f1f3f8;
  border-radius: 10px;
  width: 300px;
  height: 168px;
}

.sidebar-left,
.sidebar-right,
.content-main,
.content-box-1,
.content-box-2 {
  transition: all 0.5s ease;
}

.sidebar-left:hover,
.sidebar-right:hover,
.content-main:hover,
.content-box-1:hover,
.content-box-2:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sidebar-left h3,
.sidebar-right h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

@media (max-width: 991px) {
  .sidebar-left,
  .sidebar-right {
    height: 470px;
  }
}

@media (max-width: 576px) {
  .sidebar-left,
  .sidebar-right {
    flex: none !important;
    width: 100%;
    height: 400px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    border-radius: 55px;
    padding: 20px;
  }

  .content-main,
  .content-box-1,
  .content-box-2 {
    flex: none !important;
    width: 100%;
    height: 400px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    border-radius: 55px !important;
    padding: 20px;
  }
}

/* Perguntas frequentes */
.faq-section {
  background-color: #fff;
}

.faq-image {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion .faq-button {
  border-radius: 12px;
  font-weight: bold;
  background-color: #f8f9fa;
}

.faq-accordion .faq-body {
  font-size: 18px;
  color: #333;
}

/* Pag - Nosso Impacto */
.about-team {
  margin-top: 50px;
}

.about-team h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

/* Contagem de números */
.statistics-grid {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 20px;
  background-color: #d9d9d9;
}

.statistics-cards {
  color: #2e4b99;
}

.statistics-cards h2 {
  font-size: 80px;
}

.statistics-cards p {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .statistics-cards {
    margin-bottom: 1.5rem;
  }

  .statistics-cards p {
    text-align: center !important;
  }
}

.border-top-white {
  border-top: 2px solid white;
}

.border-left {
  border-left: 2px solid white !important;
}

/* Pag - Para Empresas */
.img-effect {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-effect:hover{
  transform: scale(1.03); 
  box-shadow: 0 10px 25px #606b86; 
}

/* Estilos antigos removidos - agora usando .page-header padronizado */

.company-services h3 {
  font-size: 40px;
}

.company-services img {
  width: 100%;
  height: auto;
  max-width: 506px;
  opacity: 50%;
  transition: 0.5s ease;
  object-fit: cover;
  object-position: center;
}

.company-services img:hover {
  opacity: 100%;
}

/* Responsividade para imagens da seção company-services */
@media (max-width: 768px) {
  .company-services img {
    max-width: 100%;
    height: auto;
  }
}

/* Correção geral para todas as imagens da página para-empresas */
.para-empresas-page img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Media queries antigas removidas - responsividade agora no .page-header */

/* ===== FORMULÁRIOS SIMPLIFICADOS ===== */
.form-section {
  padding: 60px 0;
  background: #f8f9fa;
  min-height: 100vh;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: #6478d3;
  box-shadow: 0 0 0 0.2rem rgba(100, 120, 211, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #adb5bd;
}

/* Checkbox simplificado */
.form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #6478d3;
  border-color: #6478d3;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(100, 120, 211, 0.15);
}

.form-check-label {
  color: #495057;
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}

.skill-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(100, 120, 211, 0.05);
  border-radius: 6px;
  padding: 0.5rem;
}

.skill-item .form-check-input {
  margin-right: 0.75rem;
}

.skill-item .form-check-label {
  margin-left: 0;
  flex: 1;
}

/* Headers das seções do formulário */
.form-section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.form-section-header .section-title {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.form-section-header .section-title i {
  color: #6478d3;
  font-size: 1.125rem;
}

.form-section-header .section-description {
  color: #6c757d;
  margin: 0;
  font-style: italic;
  font-size: 0.95rem;
}

/* Estilos para seção de habilidades melhorada */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.skills-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.skills-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 120, 211, 0.1);
}

.skills-category {
  height: 100%;
}

.category-title {
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #6478d3;
  font-size: 1rem;
  font-weight: 600;
}

.category-title i {
  color: #6478d3;
  font-size: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.skill-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
}

.skill-item:hover {
  background: rgba(100, 120, 211, 0.08);
  border-color: rgba(100, 120, 211, 0.2);
  transform: translateX(4px);
}

.skill-item .form-check-input {
  margin-right: 0.75rem;
  margin-top: 0;
}

.skill-item .form-check-label {
  margin-left: 0;
  flex: 1;
  font-size: 0.9rem;
  color: #495057;
  cursor: pointer;
}

/* Botão de ação */
.form-actions {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.form-actions .btn-cta {
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
}

/* Validação */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #28a745;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

/* Responsividade simplificada */
@media (max-width: 992px) {
  .form-container {
    padding: 2rem;
    margin: 0 1rem;
    max-width: 100%;
  }
  
  .skills-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 40px 0;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 0 0.5rem;
    border-radius: 15px;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-actions .btn-cta {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 1rem;
    border-radius: 12px;
  }
}

/* ===== PARTICLES.JS EFFECT ===== */
/* Reset para particles.js */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #6478d3 0%, #4e57c4 100%);
  z-index: 1;
  pointer-events: auto; /* Permite interação com o mouse */
  overflow: hidden;
}

/* Efeitos adicionais para as partículas */
#particles-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.5px); /* Efeito sutil de blur para suavizar */
}

/* Animação pulsante para o fundo */
#particles-js::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: particleGlow 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes particleGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Garantir que o conteúdo fique acima das partículas */
.container-fluid {
  position: relative;
  z-index: 10;
  background: transparent;
}

/* Ajustes específicos para a seção do carousel com partículas */
.carousel-section {
  background: transparent;
  position: relative;
}

/* Contraste melhorado para textos na seção de partículas */
.carousel-section .slide-content h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-section .slide-content p {
  color: #f8f9fa !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Sombra destacada para botões na seção de partículas */
.carousel-section .btn-cta {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  color: #6478d3;
  font-weight: 700;
}

.carousel-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 
              0 0 30px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.95) 100%);
  color: #4e57c4;
}


.carousel {
  position: relative;
  z-index: 10;
}

.carousel-inner {
  position: relative;
  z-index: 10;
}

.carousel-item {
  position: relative;
  z-index: 10;
}

/* Garantir que os controles do carousel funcionem */
.carousel-indicators {
  position: relative;
  z-index: 15;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Estilos simplificados para botões de controle do carousel */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin: 0 6px;
  opacity: 1;
  
  /* Reset Bootstrap */
  flex: none;
  text-indent: 0;
  clip: auto;
  background-clip: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.carousel-indicators button.active {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}

.carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Garantir que botões e links funcionem */
.btn-cta {
  position: relative;
  z-index: 15;
}

.slide-content {
  position: relative;
  z-index: 15;
}

/* Efeito de cursor personalizado para a área de partículas */
#particles-js {
  cursor: crosshair;
}

/* Animação de hover para o container de partículas */
#particles-js:hover {
  animation: particleHover 0.3s ease-in-out;
}

@keyframes particleHover {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
  100% {
    filter: brightness(1);
  }
}

/* Efeito de ripple quando clica */
#particles-js::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
  pointer-events: none;
  z-index: 5;
}

#particles-js.clicked::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

/* Stats counter (opcional - pode ser removido se não quiser mostrar) */
.count-particles {
  background: rgba(26, 26, 46, 0.8);
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  color: #6478d3;
  font-size: 0.8em;
  text-align: center;
  line-height: 14px;
  padding: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: 10;
  display: none; /* Oculto por padrão */
}

.js-count-particles {
  font-size: 1.1em;
  color: #ffffff;
}

/* Cards sobre projetos reais */
.real-projects-title h3 {
  font-size: 40px;
  text-align: center;
}

.real-projects-title button {
  border-radius: 20px;
  background-color: #ffffff;
  border: solid 1px #555555;
  width: 90px;
  font-size: 13px;
  transition: 0.3s;
}

.real-projects-title button:hover {
  color: #646fd4;
  border: solid 1px #646fd4;
}

.real-projects {
  background-color: #0b233f;
  padding: 50px;

  color: #ffffff;
  border-radius: 20px;
}

.icons img {
  width: 20px;
}

.icons svg {
  width: 35px;
}

.icons i {
  font-size: 20px;
}

@media (max-width: 767px) {
  .icons img {
    width: 12px;
  }
  .icons svg {
    width: 23px;
  }
  .icons i {
    font-size: 12px;
    justify-content: center;
  }

  .icons {
    padding-left: 20px !important;
  }
}

.real-projects h5 {
  margin-bottom: 20px;
  font-size: 25px;
}

.bordas {
  border-right: solid 3px black;
}

.real-projects p {
  line-height: 2.2;
  text-align: start;
}

.real-projects a {
  margin-top: 20px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s ease;
}

.real-projects a:hover {
  color: #646fd4;
}

@media (max-width: 767px) {
  .bordas {
    border-right: none;
  }

  .real-projects {
    width: 100%;
    margin: 0%;
    padding: 20px;
  }

  .real-projects h3 {
    padding: 2px;
    font-size: 25px;
    text-align: center;
  }

  .real-projects h5 {
    padding-top: 30px;
    font-size: 20px;
    padding: 20px 20px 0px 20px;
  }

  .real-projects p {
    line-height: 1.4;
    text-align: start;
    padding: 0px 20px 10px 20px;
  }

  .real-projects a {
    color: #646fd4;
    padding: 0px 20px 10px 20px;
  }
}

/* Pag - desenvolvimento de mvps */
/* Estilos antigos removidos - agora usando .page-header padronizado */

/* Media queries antigas removidas - responsividade agora no .page-header */

.mvp-introduction {
  background-color: #d9d9d9;
  padding: 20px;
}

.mvp-introduction h2 {
  font-size: 40px;
  text-align: center;
  padding: 20px;
}

.mvp-introduction-parallax {
  background-image: url("../image/equipe-ti-focada-eficiente\ .jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  color: #000;
  position: relative;
  height: 400px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .mvp-introduction-parallax {
    background-attachment: scroll;
    background-size: cover;
    padding: 80px 0;
  }
}

.mvp-introduction p {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .mvp-introduction {
    padding: 15px;
  }

  .mvp-introduction h2 {
    font-size: 28px;
    padding: 15px 10px;
  }

  .mvp-introduction p {
    padding-top: 20px;
    font-size: 16px;
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.mvp-importance {
  margin-top: 60px;
}

.mvp-importance img {
  width: 500px;
}

.mvp-importance h3 {
  font-size: 40px;
}

.show-on-desktop {
  display: block;
}

.show-on-tablet {
  display: none;
}

.show-on-desktops {
  display: block;
}

.show-on-tablets {
  display: none;
}

@media (max-width: 912px) {
  .mvp-importance img {
    width: 90%;
  }

  .show-on-desktops {
    display: none;
  }

  .show-on-tablets {
    display: block;
  }
}

@media (max-width: 1024px) {
  .mvp-importance img {
    width: 90%;
  }

  .show-on-desktop {
    display: none;
  }

  .show-on-tablet {
    display: block;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mvp-importance {
    margin-top: 40px;
  }

  .mvp-importance h3 {
    font-size: 40px;
    text-align: center;
    padding: 10px;
  }

  .mvp-importance p {
    font-size: 16px;
    padding: 10px 15px;
    text-align: justify;
  }

  .mvp-importance .col-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.mvp-advantages {
  background-color: #d9d9d9;
  border-radius: 10px;
  padding: 50px;
}

.mvp-advantages h5 {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .mvp-advantages {
    padding: 20px;
    background-color: #0b233f;
    color: #ffffff;
  }

  .mvp-advantages img {
    width: 90%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .mvp-advantages h5 {
    font-size: 20px;
    text-align: center;

    margin-top: 10px;
  }

  .mvp-advantages p {
    line-height: 1.5;
    text-align: start;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }
}

.with-border {
  border-right: solid 3px rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .with-border {
    border-right: solid 3px rgb(255, 255, 255);
  }
}

.idea-projects-title h3 {
  font-size: 40px;
  text-align: center;
}

.idea-projects-title p {
  text-align: justify;
  padding: 10px 300px 10px 300px;
}

@media (max-width: 1024px) {
  .idea-projects-title p {
    padding: 0;
    margin-top: 10px;
  }
}

.idea-projects-title button {
  border-radius: 20px;
  background-color: #ffffff;
  border: solid 1px #555555;
  width: 90px;
  font-size: 13px;
  transition: 0.3s;
}

.idea-projects-title button:hover {
  color: #646fd4;
  border: solid 1px #646fd4;
}

.why-choose-us {
  margin-top: 60px;
  margin-bottom: 60px;
}

.why-choose-us h3 {
  padding-top: 30px;
  font-size: 40px;
}

.why-choose-us p {
  padding-top: 30px;
  line-height: 1.8;
}

.why-choose-us img {
  width: 540px;
}

@media (max-width: 1024px) {
  .why-choose-us {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .why-choose-us img {
    width: 440px;
  }

  .why-choose-us .col-6 {
    width: 50% !important;
    flex: none !important;
  }

  .why-choose-us h3 {
    font-size: 40px;
    padding-top: 20px;
    text-align: center;
  }

  .why-choose-us p {
    padding-top: 30px;
    line-height: 1.9;
    text-align: justify;
  }
}

@media (max-width: 912px) {
  .why-choose-us {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .why-choose-us img {
    width: 340px;
  }

  .why-choose-us .col-6 {
    width: 50% !important;
    flex: none !important;
  }

  .why-choose-us h3 {
    font-size: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .why-choose-us p {
    padding-top: 0px;
    line-height: 1.3;
    text-align: justify;
  }
}

@media (max-width: 820px) {
  .why-choose-us {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .why-choose-us img {
    width: 340px;
  }

  .why-choose-us .col-6 {
    width: 50% !important;
    flex: none !important;
  }

  .why-choose-us h3 {
    font-size: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .why-choose-us p {
    padding-top: 0px;
    line-height: 1.3;
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .why-choose-us img {
    width: 340px;
  }

  .why-choose-us .row {
    width: 100% !important;
  }

  .why-choose-us h3 {
    font-size: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .why-choose-us p {
    padding-top: 0px;
    line-height: 1.3;
    text-align: justify;
  }
}

/* Pag - formulário */

@media (max-width: 768px) {
  .text-mobile {
    text-align: justify;
  }
}

.company-form {
  margin: 20px;
  padding: 10px;
}

/* Estilos antigos removidos - agora usando .page-header padronizado */

.impact-section p {
  padding: 10px;
}

@media (max-width: 768px) {
  .impact-section p {
    text-align: justify;
  }
}

/* Estilos antigos removidos - agora usando .impact-card */

/* ===== SEÇÃO VISÃO E COMUNIDADE ===== */
.vision-community-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #213465 0%, #1a2a4a 100%);
  position: relative;
  overflow: hidden;
}

.vision-content {
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #213465;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.vision-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-content strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.feature-content span {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

.vision-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1;
  aspect-ratio: 4/3;
  min-height: 400px;
}

.vision-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
}

.vision-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
  object-fit: cover;
  object-position: center;
}

.vision-image-container:hover .vision-image {
  transform: scale(1.01);
}

/* Correção para imagens do carrossel */
.carousel img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .vision-community-section {
    padding: 60px 0;
  }
  
  .vision-content {
    padding: 2rem;
  }
  
  .vision-title {
    font-size: 2rem;
  }
  
  .vision-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .vision-content {
    padding: 1.5rem;
  }
  
  .vision-title {
    font-size: 1.75rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .vision-image-container {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    min-height: 300px;
  }
}

/* ===== SEÇÃO MISSÃO E VISÃO ===== */
.mission-vision-section {
  padding: 80px 0;
  background: #ffffff;
}

.mission-vision-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e9ecef;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.mission-vision-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-vision-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.mission-vision-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.mission-vision-card .card-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mission-vision-card .card-description:last-child {
  margin-bottom: 0;
}

/* ===== SEÇÃO DE ESTATÍSTICAS ===== */
.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.statistics-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.statistics-grid .row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.statistics-grid .col-6 {
  flex: 0 0 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
  margin-bottom: 2rem;
}

.statistic-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
    width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statistic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.statistic-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.statistic-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.statistic-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin: 0;
}

/* ===== SEÇÃO SOBRE ===== */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-description p:last-child {
  margin-bottom: 2rem;
}

.cta-box {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: inline-block;
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* ===== SEÇÃO CTA FINAL ===== */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #213465 0%, #1a2a4a 100%);
  color: white;
}

.cta-content {
  padding: 2rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-button-container {
  margin-top: 2rem;
}


.cta-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.cta-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsividade */
@media (max-width: 992px) {
  .mission-vision-section,
  .statistics-section,
  .about-section,
  .final-cta-section {
    padding: 60px 0;
  }
  
  .mission-vision-card {
    padding: 2rem;
  }
  
  .about-title,
  .cta-title {
    font-size: 2rem;
  }
  
  .statistic-number {
    font-size: 2rem;
  }
  
  .statistics-grid {
    padding: 0 1.5rem;
  }
  
  .statistics-grid .col-6 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
  
  .statistics-grid .row {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mission-vision-card {
    padding: 1.5rem;
  }
  
  .mission-vision-card .card-icon,
  .statistic-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .about-title,
  .cta-title {
    font-size: 1.75rem;
  }
  
  .statistic-number {
    font-size: 1.75rem;
  }
  
  .statistics-grid {
    padding: 0 1rem;
  }
  
  .statistics-grid .col-6 {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    margin-bottom: 1.5rem;
  }
  
  .statistics-grid .row {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .statistics-grid .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .statistics-grid .row {
    gap: 1rem;
  }
  
  .statistic-card {
    padding: 1.5rem;
  }
}

.final-section {
  margin-top: 0 !important;
  padding-top: 20px;
}

.final-content {
  background-image: url("../image/image_fundo_bolhas_coloridas.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  height: 500px;
  text-align: center;
}

.title-final {
  font-size: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: 10px;
  margin-right: 10px;
}

.final-content p {
  font-weight: bold;
}

@media (max-width: 768px) {
  .final-section {
    padding-inline: 10px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .final-content {
    background-size: contain;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .title-final {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .final-content p {
    font-size: 8px;
  }

  .final-content button {
    width: 100px;
    font-size: 12px;
    padding: 8px;
    margin-bottom: 0;
  }
}

/* Rodapé */
.footer-link {
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: none;
}

.social-icons a {
  font-size: 16px;
  margin: 0 6px;
  padding: 15px;
}

.fa-facebook-f {
  transition: 0.5s ease;
}

.fa-facebook-f:hover {
  color: blue;
  transform: scale(1.1);
}

.fa-facebook-f {
  transition: 0.5s ease;
}

.fa-facebook-f:hover {
  color: blue;
  transform: scale(1.1);
}

.fa-linkedin-in {
  transition: 0.5s ease;
}

.fa-linkedin-in:hover {
  color: #2e4b99;
  transform: scale(1.1);
}

.fa-rss {
  transition: 0.5s ease;
}

.fa-rss:hover {
  color: darkgrey;
  transform: scale(1.1);
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.footer-link {
  transition: all 0.3s ease;
  color: #000;
}

.footer-link:hover {
  color: #646fd4;
}

@media (max-width: 768px) {
  .footer-right {
    align-items: center;
    justify-content: center !important;
  }

  .footer-bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  width: 100%;
  border: 2px solid #5c6bc0;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: 0.3s ease;
  word-break: break-word;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #5c6bc0;
  color: #fff;
  transform: scale(1.02);
}

.custom-list li {
  list-style: none; /* Remove o marcador padrão */
  padding-left: 0; /* Remove o recuo padrão */
  text-align: left;
}

.custom-list li::before {
  content: "✔️";
  margin-right: 10px;
  color: green;
}

/* Estilos antigos removidos - agora usando .page-header padronizado */

.invite-box {
  font-size: 40px;
}

.logo-header, .logo-footer {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .text-banner-header {
    position: static;
  }

  .image-banner-header {
    position: static;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .text-mobile {
    text-align: justify;
  }
}

@media (max-width: 375px) {
  .text-justify-mobile {
    text-align: justify;
  }
  .invite-box {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

/* ===== SEÇÃO PROJETOS RECENTES ===== */
.projects-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

/* Particles.js para seção de projetos */
#particles-js-projects {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  z-index: 1;
  pointer-events: auto;
  overflow: hidden;
}

#particles-js-projects canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.5px);
}

#particles-js-projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: particleGlow 8s ease-in-out infinite alternate;
  z-index: -1;
}

#particles-js-projects {
  cursor: crosshair;
}

#particles-js-projects:hover {
  animation: particleHover 0.3s ease-in-out;
}

#particles-js-projects::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
  pointer-events: none;
  z-index: 5;
}

#particles-js-projects.clicked::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(100, 120, 211, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(78, 87, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.projects-section .section-title {
  color: #ffffff;
}

.projects-section .section-description {
  color: #e9ecef;
}

.projects-section .section-header {
  position: relative;
  z-index: 10; /* Ensure header is above particles */
}

.projects-section .container {
  position: relative;
  z-index: 10; /* Ensure container is above particles */
}

.project-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 120, 211, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 10; /* Ensure cards are above particles */
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(100, 120, 211, 0.3);
}

.project-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.project-title {
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.project-content {
  flex: 1;
}

.project-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #495057;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: linear-gradient(135deg, #6478d3, #4e57c4);
  color: white;
  transform: translateY(-2px);
}

.tech-badge i {
  font-size: 1rem;
}

.project-footer {
  margin-top: auto;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6478d3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: #4e57c4;
  transform: translateX(4px);
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-link:hover i {
  transform: translateX(4px);
}

/* Responsividade para projetos */
@media (max-width: 992px) {
  .projects-section {
    padding: 60px 0;
  }
  
  .project-card {
    padding: 1.5rem;
  }
  
  .project-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 40px 0;
  }
  
  .project-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .project-technologies {
    justify-content: center;
  }
}
