/* MOD CIMADIGITAL PEDIDOS */

.cd-pedidos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #f7f7f7;
  padding: 50px 5%;
}

.cd-pedidos__row {
  display: flex;
  gap: 50px;
}

.cd-pedidos__col {
  flex: 1;
}

.cd-pedidos img {
  width: 100%;
}

.cd-pedidos h1 {
  color: #a91f46;
}

.cd-pedidos__form label,
.cd-pedidos__form input,
.cd-pedidos__form input::placeholder,
.cd-pedidos__form textarea,
.cd-pedidos__form textarea::placeholder {
  color: #263a7e;
}

.cd-pedidos__form a {
  color: #a91f46;
}

.cd-pedidos__form .cd-pedidos-action__label {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  color: #a91f46;
}

.cd-pedidos__form button[type="submit"] {
  color: #ffffff;
  background-color: #a91f46;
  padding: 5px 15px;
  text-transform: uppercase;
  border: 1px solid #a91f46;
}

.cd-pedidos__form button[type="submit"]:hover {
  background-color: #ffffff;
  color: #a91f46;
}

.cd-pedidos__form input,
.cd-pedidos__form textarea {
  background-color: #263a7e18;
  border-radius: 5px;
}

.cd-pedidos-product__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  row-gap: 15px;
}

.cd-pedidos-product__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-pedidos-product__item img {
  width: 100%;
}

.cd-pedidos-product__item p {
  font-size: 16px;
  font-weight: bold;
  color: #263a7e;
  text-align: center;
}

.cd-pedidos-product__item a {
  text-decoration: none;
}

.cd-pedidos-product__qty {
  display: flex;
  border: 1px solid #666666;
  border-radius: 5px;
}

.cd-pedidos-product__qty a,
.cd-pedidos-product__qty p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 30px;
  height: 40px;
  color: #000000;
}

.cd-pedidos-familias {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 100px 5%;
}

.cd-pedidos-familias h2 {
  color: #263a7e;
}

.cd-pedidos-familias__row {
  display: flex;
  justify-content: center;
}

.cd-pedidos-familias__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 25px;
  row-gap: 50px;
}

.cd-pedidos-familias__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cd-pedidos-familias__item img {
  width: 100%;
}

.cd-pedidos-familias__item h3 {
  font-size: 16px;
  font-weight: bold;
  color: #263a7e;
}

.cd-pedidos-familias__item a {
  background-color: #a91f46;
  color: #ffffff;
  border: 1px solid #a91f46;
  border-radius: 5px;
  padding: 5px 10px;
}

.cd-pedidos-familias__item a:hover {
  background-color: #ffffff;
  color: #a91f46;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cd-pedidos__row {
    flex-direction: column;
  }

  .cd-pedidos-product__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .cd-pedidos-familias__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* END MOD CIMADIGITAL PEDIDOS */
