/* ===== DESCRIÇÃO DO PRODUTO ===== */

.product-description-banner {
  background: #1a1a1a;
  color: white;
  padding: 30px 20px;
  margin: 10px 0;
  border-radius: 8px;
  text-align: left;
}

.product-description-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 40px 0;
  letter-spacing: 1px;
  text-align: center;
}

.product-cards-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 0;
}

.product-card-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.product-card-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: white;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.product-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-label {
  display: inline-block;
  background: #0099ff;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.product-card-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .product-description-banner {
    padding: 30px 15px;
  }

  .product-description-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .product-cards-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card-wrapper {
    gap: 15px;
  }

  .product-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .product-card-title {
    font-size: 13px;
  }
}


/* ===== DETALHES DO PRODUTO ===== */

.product-details-section {
  margin: 40px 0;
  padding: 0;
}

.product-details-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-details-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  text-align: justify;
}

.product-technical-info {
  margin-top: 30px;
}

.product-technical-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
}

.technical-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.technical-table td {
  padding: 15px 0;
  font-size: 14px;
}

.technical-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  width: 40%;
}

.technical-table td:last-child {
  color: #333;
}

@media (max-width: 768px) {
  .product-details-title {
    font-size: 16px;
  }

  .product-details-description {
    font-size: 13px;
  }

  .product-technical-title {
    font-size: 14px;
  }

  .technical-table td {
    padding: 12px 0;
    font-size: 13px;
  }

  .technical-table td:first-child {
    width: 35%;
  }
}
