.container-solucoes-charging {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.textos-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.title-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cards-container {
  display: flex;
  flex-direction: row;
  gap: 64px;
  width: 100%;
}

.card {
  height: 350px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card h2 {
  text-decoration: none;
  color: var(--text-default);
}

.aluguer {
  background-image: url('../assets/images/solucoesaluguer.png');
  background-color: rgba(0, 0, 0, 0.5);
  /* Fallback green */
}

.compra {
  background-image: url('../assets/images/solucoescompra.png');
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  /* Slight darkening */
}

.card-image {
  display: flex;
  height: 300px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 39px;
  color: #fff;
  letter-spacing: -0.4px;
  text-align: center;
}

.charging-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
  background: var(--surface-secondary);
}

.charging-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.charging-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.charging-title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.charging-main-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 39px;
  color: #333;
  letter-spacing: -0.4px;
}

.charging-accent-bar {
  width: 160px;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #16fd2d 0%, #008d0d 100%);
}

.charging-description {
  color: var(--text-inverted);
}

.charging-grid {
  display: flex;
  flex-direction: row;
  gap: 64px;
  width: 100%;
}

.charging-option-card {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  background: var(--surface-primary);
}

.charging-option-header {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.charging-icon-container {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--color-green-80);
}

.charging-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.charging-option-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}

.charging-feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.charging-feature-item {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  display: flex;
  padding: 4px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-primary-default);
}

@media (max-width: 1280px) {
  .container-solucoes-charging {
    padding: 24px;
    gap: 24px;
  }

  .cards-container {
    gap: 24px;
  }

  .textos-container {
    gap: 24px;
  }

  .card {
    height: 200px;
  }


  .charging-wrapper {
    padding: 24px;
    gap: 24px;
    margin: 0;
    width: 100%;
  }

  .charging-grid {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    gap: 16px;
  }

  .card {
    width: 100%;
  }

  .textos-container {
    gap: 16px;
  }

  .charging-wrapper {
    gap: 16px;
  }

  .charging-grid {
    gap: 16px;
  }
}

