/* PÁGINA TECNOLOGIA */

.pagina-tecnologia {
  min-height: calc(100vh - 64px);
  background: #f8f7ff;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px);
}

.tecnologia-inner {
  max-width: 960px;
  margin: 0 auto;
}

.tecnologia-hero {
  text-align: center;
  margin-bottom: 64px;
}

.tecnologia-hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: #0f0e17;
}

.tecnologia-hero p {
  color: #6b7280;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pipeline horizontal */
.pipeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0;
  flex-wrap: wrap;
}

.motor-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  max-width: 240px;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(91,79,232,0.08);
}

.motor-numero {
  width: 36px;
  height: 36px;
  background: #5b4fe8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.motor-icone {
  font-size: 2rem;
  margin-bottom: 12px;
}

.motor-nome {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #5b4fe8;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.motor-funcao {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.motor-lista {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: left;
  line-height: 1.7;
}

.motor-lista li {
  margin-bottom: 8px;
}

.motor-lista li::before {
  content: "• ";
  color: #5b4fe8;
  font-weight: 700;
}

.pipeline-seta {
  color: #5b4fe8;
  font-size: 1.5rem;
  padding: 0 12px;
  flex-shrink: 0;
}

/* Card Verificador CDC */
.verificador-card {
  background: linear-gradient(135deg, #5b4fe8 0%, #7c3aed 100%);
  color: white;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  box-shadow: 0 12px 40px rgba(91,79,232,0.3);
}

.verificador-card h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.verificador-subtitulo {
  opacity: 0.85;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.verificador-lista {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}

.verificador-lista li {
  padding: 6px 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Grid de infraestrutura */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.infra-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.infra-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #0f0e17;
}

.infra-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.8;
}

.infra-card ul li {
  margin-bottom: 8px;
}

/* Disclaimer */
.tecnologia-disclaimer {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.83rem;
  color: #92400e;
  line-height: 1.6;
  margin-top: 48px;
}

/* Mobile */
@media (max-width: 768px) {
  .pipeline-row {
    flex-direction: column;
    gap: 0;
  }
  
  .motor-card { 
    max-width: 100%; 
    width: 100%; 
  }
  
  .pipeline-seta { 
    transform: rotate(90deg); 
    padding: 12px 0;
  }
  
  .infra-grid { 
    grid-template-columns: 1fr; 
  }
}
