/* Estilos para a seção de pacotes */
.pricing {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 151, 230, 0.05) 0%, transparent 70%);
  z-index: 1;
}

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

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: rgba(10, 61, 98, 0.3);
  border: 1px solid rgba(0, 151, 230, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 1px solid var(--blue-light);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::after {
  content: 'Mais Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--blue-light);
  color: var(--light);
  font-size: 0.8rem;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
  font-weight: 600;
}

.pricing-card.custom {
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.6), rgba(0, 151, 230, 0.3));
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--blue-light);
}

.pricing-description {
  font-style: italic;
  opacity: 0.8;
  font-size: 0.9rem;
}

.pricing-price {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--light);
}

.pricing-price span {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}

.pricing-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: auto;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

.pricing-btn.custom {
  background: transparent;
  border: 2px solid var(--blue-light);
}

.pricing-btn.custom:hover {
  background: var(--blue-light);
}

.implementation {
  margin-top: 5rem;
}

.implementation-title {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  counter-reset: step;
}

.implementation-step {
  flex: 1;
  min-width: 250px;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.implementation-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tech);
  font-weight: 700;
  box-shadow: var(--glow-blue);
}

.implementation-step h3 {
  margin-bottom: 1rem;
}

.differentials {
  margin-top: 4rem;
  text-align: center;
}

.differentials-title {
  margin-bottom: 2rem;
}

.differentials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.differential-item {
  background: rgba(10, 61, 98, 0.3);
  border: 1px solid rgba(0, 151, 230, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.differential-item i {
  color: var(--blue-light);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(10, 61, 98, 0.3);
  border: 1px solid rgba(0, 151, 230, 0.2);
  border-radius: 8px;
}

.pricing-note p {
  margin-bottom: 0.5rem;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

/* Animações */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 151, 230, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 151, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 151, 230, 0);
  }
}

.pricing-card.featured {
  animation: pulse-border 2s infinite;
}

/* Responsividade */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .implementation-steps {
    flex-direction: column;
  }
}
