/* Texto de descripción general */
.texto-descripcion {
  color: rgb(7, 7, 7);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  text-align: center;
  padding: 5px;
  border: 1px solid #808080;
  max-width: 300px;
  margin: 1 auto;
  transition: 0.3s ease;
}

.texto-descripcion:hover {
  color: #f07f1a;
  border: 2px solid #f07f1a;
}

.texto-descripcion a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.texto-descripcion a:focus,
.texto-descripcion a:active {
  outline: none;
  box-shadow: none;
}

.texto-sistema {
  color: #fff;
  background-color: #383838;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  max-width: 300px;
  margin: 1 auto;
}

/* Bloque superior con logo y descripción */
.bloque-partes-starmix {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contenedor-partes-starmix {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 20px;
}

.parte-logo-texto {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
}

.titulo-partes {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 10px;
  color: #1c1c1c;
}

.barra-naranja-partes {
  width: 6px;
  height: 100px;
  background-color: #f1861b;
}

.descripcion-partes {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  font-family: 'Montserrat', sans-serif;
  color: #1c1c1c;
}

/* Botón amplio general */
.btn-amplio {
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 15px;
  text-align: center;
  letter-spacing: 2.5px;
  margin-left: 10px;
  text-decoration: none;
  background-color: var(--color-grisOscuro);
  border-radius: 10px;
}

/* Galería de piezas */
.seccion-galeria-piezas {
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.contenedor-galeria-piezas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tarjeta-pieza {
  background-color: white;
  border-radius: 15px;
  max-width: 220px;
  width: 100%;
  text-align: center;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tarjeta-pieza:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.imagen-pieza {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}

.descripcion-pieza {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  min-height: 40px;
  font-weight: 600;
}

/* Botón de cotización de pieza */
.btn-cotizar-pieza {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  background-color: #383838;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: skew(-10deg);
  margin-top: auto;
}

.btn-cotizar-pieza:hover {
  background-color: #f07f1a;
  transform: skew(-10deg) scale(1.05);
}

/* Botón "More Parts" */
.contenedor-mas-piezas {
  text-align: center;
  margin-top: 40px;
}

.btn-mas-piezas {
  padding: 12px 24px;
  background-color: #383838;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: skew(-10deg);
  display: inline-block;
}

.btn-mas-piezas:hover {
  background-color: #f07f1a;
  transform: skew(-10deg) scale(1.05);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .texto-sistema {
    font-size: 10px;
    padding: 5px;
  }

  .texto-descripcion {
    font-size: 12px;
    padding: 4px;
  }

  .contenedor-galeria-piezas {
    gap: 20px;
  }

  .tarjeta-pieza {
    max-width: 160px;
    padding: 14px;
  }

  .descripcion-pieza {
    font-size: 12px;
  }

  .btn-cotizar-pieza {
    font-size: 12px;
    padding: 8px 12px;
  }

  .btn-mas-piezas {
    font-size: 13px;
  }

  .descripcion-partes {
    font-size: 14px;
  }

  .titulo-partes {
    font-size: 18px;
  }

  .parte-logo-texto img {
    width: 120px;
    height: auto;
  }
}