/* Layout da seção */
.car-solution-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

/* Informações à esquerda */
.car-solution-info {
  flex: 1;
  margin-right: 30px;
  max-width: 50%;
}

.car-solution-info p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.car-solution-info span {
  font-size: 16px;
  color: #ffffff;
}

/* Mapa interativo ao lado */
.interactive-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 20px;
}

/* Estilo dos itens (carros) */
.item {
  background: #1800387a;
  height: 200px;
  width: 300px;
  padding: 20px;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Estilo para item selecionado */
.item.selected {
  background-color: #00aaff;
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.item h5 {
  font-size: 22px;
  font-weight: bold;
}

.item p {
  font-size: 14px;
  color: #ffffff;
}

/ .connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connection-line {
  position: absolute;
  background-color: #00aaff;
  width: 5px;
  border-radius: 5px;
  transform: rotate(45deg);
  z-index: -1;
}

.connection-line:nth-child(1) {
  left: 30%;
  top: 20%;
  height: 100px;
}

.connection-line:nth-child(2) {
  left: 50%;
  top: 50%;
  height: 60px;
}

.connection-line:nth-child(3) {
  left: 20%;
  top: 70%;
  height: 120px;
}
