/* Estilos para a nova seção de credibilidade */
.credibility-section {
  background: linear-gradient(135deg, var(--black-primary) 0%, var(--purple-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.credibility-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.credibility-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  position: relative;
  z-index: 2;
}

.credibility-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.credibility-highlight {
  color: var(--gold-primary);
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

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

.client-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.client-logo {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.client-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.client-project {
  font-size: 0.9rem;
  color: var(--gold-primary);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--white);
}

/* Estilos para a seção de processo */
.process-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a4a 100%);
  padding: 4rem 0;
  position: relative;
}

.process-container {
  position: relative;
  z-index: 2;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 4rem 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold-primary), var(--purple-primary));
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 22%;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 195, 0, 0.5);
}

.step-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.step-description {
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 3rem;
  }
  
  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 4px;
    height: auto;
  }
  
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding-left: 60px;
  }
  
  .step-icon {
    margin-bottom: 0;
    margin-right: 1rem;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step-title, .step-description {
    text-align: left;
  }
}

/* Estilos para a seção de dados */
.data-section {
  background: linear-gradient(135deg, #2d1a4a 0%, #1a1a1a 100%);
  padding: 4rem 0;
  position: relative;
}

.data-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .data-categories {
    grid-template-columns: 1fr;
  }
}

.data-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.data-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.category-icon svg {
  width: 25px;
  height: 25px;
  color: var(--black-primary);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.data-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.data-item-text {
  color: var(--white);
}

.data-validity {
  margin-top: 3rem;
  background: rgba(255, 195, 0, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.validity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.validity-text {
  color: var(--white);
}

/* Estilos para a seção de resultados */
.results-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a4a 100%);
  padding: 4rem 0;
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.result-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.result-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.result-icon svg {
  width: 25px;
  height: 25px;
  color: var(--black-primary);
}

.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.result-description {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.result-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-comparison {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-value.market {
  color: #ff6b6b;
}

.stat-value.leadbet {
  color: #4ade80;
}

.stat-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.stat-bar-fill.market {
  background-color: #ff6b6b;
  width: 10%;
}

.stat-bar-fill.leadbet {
  background-color: #4ade80;
  width: 25%;
}

/* Estilos para a seção de CTA aprimorada */
.enhanced-cta-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black-primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.enhanced-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.3);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 195, 0, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--gold-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.cta-secondary:hover {
  background: rgba(255, 195, 0, 0.1);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--white);
  font-weight: 500;
}

.steps-container {
  margin-top: 4rem;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.steps-list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 22%;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--black-primary);
  font-size: 1.25rem;
}

.step-name {
  color: var(--white);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .steps-list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .steps-list::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
  }
  
  .step-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-left: 60px;
  }
  
  .step-number {
    margin-bottom: 0;
    margin-right: 1rem;
    position: absolute;
    left: 0;
  }
  
  .step-name {
    text-align: left;
  }
}
